diff options
| author | bwarsaw | 2002-04-05 18:56:38 +0000 |
|---|---|---|
| committer | bwarsaw | 2002-04-05 18:56:38 +0000 |
| commit | c0c5049bb392254a41e29d4904e378065d825ea3 (patch) | |
| tree | 504c8639856c64f4a246eadfcaa5ab79971c2b43 | |
| parent | ee7f6fefa38906e72cdcf1864a3648f72d24e266 (diff) | |
| download | mailman-c0c5049bb392254a41e29d4904e378065d825ea3.tar.gz mailman-c0c5049bb392254a41e29d4904e378065d825ea3.tar.zst mailman-c0c5049bb392254a41e29d4904e378065d825ea3.zip | |
| -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): |
