From 4e230924621654116d727972924a9e8ce297be6c Mon Sep 17 00:00:00 2001 From: Peter Palfrader Date: Mon, 9 Jun 2008 22:59:39 +0200 Subject: [PATCH] Allow setting of gender in ud-mailgate. Based on patch by Bernhard R. Link. --- debian/changelog | 4 +++- ud-mailgate | 19 +++++++++++++++++-- 2 files changed, 20 insertions(+), 3 deletions(-) diff --git a/debian/changelog b/debian/changelog index 74fff58..7511528 100644 --- a/debian/changelog +++ b/debian/changelog @@ -11,8 +11,10 @@ userdir-ldap (0.3.3X) Xnstable; urgency=low a few months they should move on to retired, with their mail also disabled. accountStatus is just a freeform text, but these 4 options should be the only ones that exist. + * Allow setting of gender in ud-mailgate. Based on patch by Bernhard + R. Link. - -- Peter Palfrader Mon, 26 May 2008 01:27:11 +0200 + -- Peter Palfrader Mon, 09 Jun 2008 22:59:06 +0200 userdir-ldap (0.3.32) unstable; urgency=low diff --git a/ud-mailgate b/ud-mailgate index 6341130..16f6a59 100755 --- a/ud-mailgate +++ b/ud-mailgate @@ -32,6 +32,14 @@ DNS = {} SSHFingerprint = re.compile('^(\d+) ([0-9a-f\:]{47}) (.+)$') SSHRSA1Match = re.compile('^^(.* )?\d+ \d+ \d+') +GenderTable = {"male": 1, + "1": 1, + "female": 2, + "2": 2, + "unspecified": 9, + "9": 9, +}; + ArbChanges = {"c": "..", "l": ".*", "facsimileTelephoneNumber": ".*", @@ -50,6 +58,7 @@ ArbChanges = {"c": "..", "mailGreylisting": "^(TRUE|FALSE)$", "mailCallout": "^(TRUE|FALSE)$", "VoIP": ".*", + "gender": "^(1|2|9|male|female|unspecified)$", }; DelItems = {"c": None, @@ -158,6 +167,12 @@ def DoArbChange(Str,Attrs): if re.match(ArbChanges[attrName],G[1]) == None: raise Error, "Item does not match the required format"+ArbChanges[attrName]; + value = G[1]; + if attrName == 'gender': + if G[1] not in GenderTable: + raise Error, "Gender not found in table" + value = GenderTable[G[1]] + # if attrName == 'birthDate': # (re.match("^([0-9]{4})([01][0-9])([0-3][0-9])$",G[1]) { # $bd_yr = $1; $bd_mo = $2; $bd_day = $3; @@ -181,8 +196,8 @@ def DoArbChange(Str,Attrs): # } elsif (not defined($query->param('birthdate')) or $query->param('birthdate') =~ /^\s*$/) { # $bd_ok = 1; # } - Attrs.append((ldap.MOD_REPLACE,attrName,G[1])); - return "Changed entry %s to %s"%(attrName,G[1]); + Attrs.append((ldap.MOD_REPLACE,attrName,value)); + return "Changed entry %s to %s"%(attrName,value); # Handle changing a set of arbitary fields # : value -- 2.20.1