diff options
| -rw-r--r-- | contrib/qmail-to-mailman.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/contrib/qmail-to-mailman.py b/contrib/qmail-to-mailman.py index ae248d6cc..4b2ac9cd1 100644 --- a/contrib/qmail-to-mailman.py +++ b/contrib/qmail-to-mailman.py @@ -74,9 +74,12 @@ def main(): sys.exit(0) type = "post" - types = (("-admin$", "mailowner"), - ("-owner$", "mailowner"), - ("-request$", "mailcmd")) + types = (("-admin$", "bounces"), + ("-bounces$", "bounces"), + ("-join$", "join"), + ("-leave$", "leave"), + ("-owner$", "owner"), + ("-request$", "request")) for i in types: if re.search(i[0],local): |
