Removed the build dependency to WML since the WML part has been split off
[mirror/userdir-ldap.git] / ud-mailgate
index bea4372..7c62c88 100755 (executable)
@@ -30,7 +30,7 @@ ArbChanges = {"c": "..",
               "ircNick": ".*",
               "icqUin": "^[0-9]*$",
               "onVacation": ".*",
-              "labledURI": ".*"};
+              "labeledURI": ".*"};
 
 DelItems = {"c": None,
             "l": None,
@@ -41,10 +41,11 @@ DelItems = {"c": None,
             "emailForward": None,
             "ircNick": None,
             "onVacation": None,
-            "labledURI": None,
+            "labeledURI": None,
            "latitude": None,
            "longitude": None,
             "icqUin": None,
+            "dnsZoneEntry": None,
            "sshRSAAuthKey": None,
            "sshDSAAuthKey": None};
 
@@ -173,6 +174,9 @@ def DoPosition(Str,Attrs):
 def DoSSH(Str,Attrs):
    Match = SSH2AuthSplit.match(Str);
    if Match == None:
+      Match = re.compile('^1024 (\d+) ').match(Str)
+      if Match is not None:
+         return "SSH1 keys not supported anymore"
       return None;
    
    global SeenKey;