------------------------------------------------------------ revno: 1256 committer: Mark Sapiro <m...@msapiro.net> branch nick: 2.2 timestamp: Fri 2013-07-12 14:07:29 -0700 message: - Added more explanation to the bad owner address message from bin/newlist. (LP: #1200763) modified: NEWS bin/newlist
-- lp:mailman/2.2 https://code.launchpad.net/~mailman-coders/mailman/2.2 Your team Mailman Checkins is subscribed to branch lp:mailman/2.2. To unsubscribe from this branch go to https://code.launchpad.net/~mailman-coders/mailman/2.2/+edit-subscription
=== modified file 'NEWS' --- NEWS 2013-06-14 00:51:39 +0000 +++ NEWS 2013-07-12 21:07:29 +0000 @@ -105,6 +105,9 @@ Bug Fixes and other patches + - Added more explanation to the bad owner address message from + bin/newlist. (LP: #1200763) + - Fixed a bug causing the admin web interface to fail CSRF checking if the list name contains a '+' character. (LP: #1190802) === modified file 'bin/newlist' --- bin/newlist 2010-02-27 18:48:20 +0000 +++ bin/newlist 2013-07-12 21:07:29 +0000 @@ -215,7 +215,9 @@ except Errors.BadListNameError, s: usage(1, _('Illegal list name: %(s)s')) except Errors.EmailAddressError, s: - usage(1, _('Bad owner email address: %(s)s')) + usage(1, _('Bad owner email address: %(s)s') + + _(' - owner addresses need to be fully-qualified names' + ' like "ow...@example.com", not just "owner".')) except Errors.MMListAlreadyExistsError: usage(1, _('List already exists: %(listname)s'))
_______________________________________________ Mailman-checkins mailing list Mailman-checkins@python.org Unsubscribe: http://mail.python.org/mailman/options/mailman-checkins/archive%40jab.org