X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=ud-mailgate;h=7c62c8886b223eea35f4a207d9826713e9b9c762;hb=914750f1d2d72894f27a313bcc0afab99b918d02;hp=f8a814b982fb4214fcb50b300e67aecca1b12fd0;hpb=b5fb9ea2f797cc33f179e66050553560433f7a81;p=mirror%2Fuserdir-ldap.git diff --git a/ud-mailgate b/ud-mailgate index f8a814b..7c62c88 100755 --- a/ud-mailgate +++ b/ud-mailgate @@ -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;