diff options
author | Mark Sapiro <mark@msapiro.net> | 2013-05-30 19:29:33 -0700 |
---|---|---|
committer | Mark Sapiro <mark@msapiro.net> | 2013-05-30 19:29:33 -0700 |
commit | 41072c693aa53a0072963119c8cf7919096eaad5 (patch) | |
tree | 7b3eb38d7a88ca62fd231e8ae18294e0cc14bd47 /tests/test_bounces.py | |
parent | f79f7cfd78e421c27771291c2bd2ecee6fc1d90c (diff) | |
download | mailman2-41072c693aa53a0072963119c8cf7919096eaad5.tar.gz mailman2-41072c693aa53a0072963119c8cf7919096eaad5.tar.xz mailman2-41072c693aa53a0072963119c8cf7919096eaad5.zip |
Backported fixes for lp:1074592, lp:1079249 and lp:1079254 from
lp:flufl.bounce. Actually, lp:1074592 doesn't affect MM 2, but I
included the test case.
Diffstat (limited to 'tests/test_bounces.py')
-rwxr-xr-x | tests/test_bounces.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/test_bounces.py b/tests/test_bounces.py index bb20578c..731f3bbe 100755 --- a/tests/test_bounces.py +++ b/tests/test_bounces.py @@ -41,7 +41,8 @@ class BounceTest(unittest.TestCase): # Exim bounces ('Exim', 'exim_01.txt', ['delangen@its.tudelft.nl']), # SimpleMatch bounces - ('SimpleMatch', 'sendmail_01.txt', ['zzzzz@nfg.nl']), + ('SimpleMatch', 'sendmail_01.txt', ['zzzzz@shaft.coal.nl', + 'zzzzz@nfg.nl']), ('SimpleMatch', 'simple_01.txt', ['bbbsss@turbosport.com']), ('SimpleMatch', 'simple_02.txt', ['chris.ggggmmmm@usa.net']), ('SimpleMatch', 'simple_04.txt', ['claird@starbase.neosoft.com']), @@ -79,6 +80,7 @@ class BounceTest(unittest.TestCase): ('SimpleMatch', 'simple_36.txt', ['garyt@xxx.com']), ('SimpleMatch', 'simple_37.txt', ['user@uci.edu']), ('SimpleMatch', 'simple_38.txt', ['prueba@domain.com']), + ('SimpleMatch', 'simple_39.txt', [b'foo@mail.ru']), ('SimpleMatch', 'bounce_02.txt', ['acinsp1@midsouth.rr.com']), ('SimpleMatch', 'bounce_03.txt', ['james@jeborall.demon.co.uk']), # SimpleWarning @@ -136,6 +138,7 @@ class BounceTest(unittest.TestCase): ('Qmail', 'qmail_05.txt', ['ivokggrrdvc@caixaforte.freeservers.com']), ('Qmail', 'qmail_06.txt', ['ntl@xxx.com']), ('Qmail', 'qmail_07.txt', ['user@example.net']), + ('Qmail', 'qmail_08.txt', []), # LLNL's custom Sendmail ('LLNL', 'llnl_01.txt', ['trotts1@llnl.gov']), # Netscape's server... |