diff options
-rw-r--r-- | Mailman/MailList.py | 2 | ||||
-rw-r--r-- | NEWS | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/Mailman/MailList.py b/Mailman/MailList.py index ac2d1baf..674017d1 100644 --- a/Mailman/MailList.py +++ b/Mailman/MailList.py @@ -491,7 +491,7 @@ class MailList(HTMLFormatter, Deliverer, ListAdmin, postingaddr = '%s@%s' % (name, emailhost) try: Utils.ValidateEmail(postingaddr) - except Errors.MMBadEmailError: + except Errors.EmailAddressError: raise Errors.BadListNameError, postingaddr # Validate the admin's email address Utils.ValidateEmail(admin) @@ -50,6 +50,10 @@ Here is a history of user visible changes to Mailman. to unicode of a header/footer that was already unicode because of interpolating a unicode value. + - Fixed an issue where list creation would report bad owner email + instead of bad listname when the list name had non-ascii characters. + SF Bug #2126489. + 2.1.11 (30-Jun-2008) New Features |