------------------------------------------------------------
revno: 1393
fixes bug: https://launchpad.net/bugs/1200763
committer: Mark Sapiro <m...@msapiro.net>
branch nick: 2.1
timestamp: Fri 2013-07-12 14:03:26 -0700
message:
  - Added more explanation to the bad owner address message from
    bin/newlist.  (LP: #1200763)
modified:
  NEWS
  bin/newlist


--
lp:mailman/2.1
https://code.launchpad.net/~mailman-coders/mailman/2.1

Your team Mailman Checkins is subscribed to branch lp:mailman/2.1.
To unsubscribe from this branch go to 
https://code.launchpad.net/~mailman-coders/mailman/2.1/+edit-subscription
=== modified file 'NEWS'
--- NEWS	2013-06-14 00:48:43 +0000
+++ NEWS	2013-07-12 21:03:26 +0000
@@ -61,6 +61,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 17:57:24 +0000
+++ bin/newlist	2013-07-12 21:03:26 +0000
@@ -204,7 +204,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

Reply via email to