From: jgg <> Date: Sun, 30 Apr 2000 20:27:39 +0000 (+0000) Subject: Locked account bugfix X-Git-Tag: debian_userdir-ldap_0-3-7~156 X-Git-Url: https://git.adam-barratt.org.uk/?p=mirror%2Fuserdir-ldap.git;a=commitdiff_plain;h=b646eaa10995f71469f5fb18c432d13bf3f884ac Locked account bugfix --- diff --git a/ud-mailgate b/ud-mailgate index 8cf64c0..4e3b39d 100755 --- a/ud-mailgate +++ b/ud-mailgate @@ -310,7 +310,7 @@ def HandleChPass(Reply,DnRecord,Key): # Check for a locked account Attrs = l.search_s(BaseDn,ldap.SCOPE_ONELEVEL,"uid="+GetAttr(DnRecord,"uid")); - if (string.find(GetAttr(Attrs[0],"userPassword"),"*LK*") != -1): + if (string.find(GetAttr(Attrs[0],"userpassword"),"*LK*") != -1): raise Error, "This account is locked"; # Modify the password @@ -397,7 +397,7 @@ try: if Sender == None: raise Error, "Unable to determine the sender's address"; - if (string.find(GetAttr(Attrs[0],"userPassword"),"*LK*") != -1): + if (string.find(GetAttr(Attrs[0],"userpassword"),"*LK*") != -1): raise Error, "This account is locked"; # Formulate a reply