use "db" alias for where to rsync from, rather than a hostname
[mirror/userdir-ldap.git] / ud-mailgate
index f8a814b..7c62c88 100755 (executable)
@@ -45,6 +45,7 @@ DelItems = {"c": 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;