ud-mailgate: a bug in DoSSH caused all changes to fail that came after DoSSH in
authorPeter Palfrader <peter@palfrader.org>
Sun, 18 May 2008 12:26:33 +0000 (14:26 +0200)
committerPeter Palfrader <peter@palfrader.org>
Sun, 18 May 2008 12:26:33 +0000 (14:26 +0200)
HandleChange.  Now DoSSH properly returns without raising an exception if the
line to handle is not an ssh public key.

debian/changelog
ud-mailgate

index 765fe93..d5ca5f8 100644 (file)
@@ -3,8 +3,11 @@ userdir-ldap (0.3.XX) Xnstable; urgency=low
   * ud-replicate: sgran pointed out that if all we care about ignoring is
     EEXIST then we should use mkdir -p instead of [ -d userkeys ] || mkdir
     userkeys.
+  * ud-mailgate: a bug in DoSSH caused all changes to fail that came after
+    DoSSH in HandleChange.  Now DoSSH properly returns without raising an
+    exception if the line to handle is not an ssh public key.
 
- -- Peter Palfrader <weasel@debian.org>  Sun, 18 May 2008 13:40:04 +0200
+ -- Peter Palfrader <weasel@debian.org>  Sun, 18 May 2008 14:25:26 +0200
 
 userdir-ldap (0.3.25) unstable; urgency=low
 
index 4da4382..69707f8 100755 (executable)
@@ -239,6 +239,8 @@ def LoadBadSSH():
 #  [options] 1024 35 13188913666680[..] [comment]
 def DoSSH(Str, Attrs, badkeys, uid):
    Match = SSH2AuthSplit.match(Str);
+   if Match == None:
+      return None;
    g = Match.groups()
    typekey = g[1]
    if Match == None: