diff options
author | Mark Sapiro <mark@msapiro.net> | 2013-11-01 09:50:24 -0700 |
---|---|---|
committer | Mark Sapiro <mark@msapiro.net> | 2013-11-01 09:50:24 -0700 |
commit | 27f70ecc8aca813cf6724a54422746bbcdc0556e (patch) | |
tree | 8db9fc34294023aae2da7a512a5f5ebc001bc689 /contrib/qmail-to-mailman.py | |
parent | 2be3678296dfe921fc9cf4a2cd3a8ed71fdd4232 (diff) | |
download | mailman2-27f70ecc8aca813cf6724a54422746bbcdc0556e.tar.gz mailman2-27f70ecc8aca813cf6724a54422746bbcdc0556e.tar.xz mailman2-27f70ecc8aca813cf6724a54422746bbcdc0556e.zip |
Fixed contrib/qmail-to-mailman.py to work with a user other than
'mailman' and to recognize more listname-* addresses. (LP: #412293)
Diffstat (limited to 'contrib/qmail-to-mailman.py')
-rw-r--r-- | contrib/qmail-to-mailman.py | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/contrib/qmail-to-mailman.py b/contrib/qmail-to-mailman.py index 3e4e19d5..8c95a1d3 100644 --- a/contrib/qmail-to-mailman.py +++ b/contrib/qmail-to-mailman.py @@ -64,7 +64,8 @@ def main(): sys.exit(100) local = string.lower(local) - local = re.sub("^mailman-","",local) + user = os.environ.get('USER', 'mailman') + local = re.sub('^%s-' % user, '', local) names = ("root", "postmaster", "mailer-daemon", "mailman-owner", "owner", "abuse") @@ -77,10 +78,15 @@ def main(): type = "post" types = (("-admin$", "bounces"), ("-bounces$", "bounces"), + ("-bounces[-+].*$", "bounces"), + ("-confirm$", "confirm"), + ("-confirm[-+].*$", "confirm"), ("-join$", "join"), ("-leave$", "leave"), ("-owner$", "owner"), - ("-request$", "request")) + ("-request$", "request"), + ("-subscribe$", "subscribe"), + ("-unsubscribe$", "unsubscribe")) for i in types: if re.search(i[0],local): |