From b646eaa10995f71469f5fb18c432d13bf3f884ac Mon Sep 17 00:00:00 2001 From: jgg <> Date: Sun, 30 Apr 2000 20:27:39 +0000 Subject: [PATCH] Locked account bugfix --- ud-mailgate | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.20.1