diff options
author | Mark Sapiro <msapiro@value.net> | 2014-03-14 10:00:20 -0700 |
---|---|---|
committer | Mark Sapiro <msapiro@value.net> | 2014-03-14 10:00:20 -0700 |
commit | 9e1368ae5e7454b54b075ba14baec1bb0671b0fc (patch) | |
tree | fc95f2154cb5ab91c2ac62e2c064ed000adfb8a6 | |
parent | 179b5035ddfaa2a53e37b93b6571e2917e41b19a (diff) | |
download | mailman2-9e1368ae5e7454b54b075ba14baec1bb0671b0fc.tar.gz mailman2-9e1368ae5e7454b54b075ba14baec1bb0671b0fc.tar.xz mailman2-9e1368ae5e7454b54b075ba14baec1bb0671b0fc.zip |
Cleaned up a couple of comments missed in the author_is_list to
from_is_list change.
-rwxr-xr-x | Mailman/Defaults.py.in | 4 | ||||
-rwxr-xr-x | Mailman/Handlers/CookHeaders.py | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Mailman/Defaults.py.in b/Mailman/Defaults.py.in index a7bf31e5..bdcad63f 100755 --- a/Mailman/Defaults.py.in +++ b/Mailman/Defaults.py.in @@ -1,6 +1,6 @@ # -*- python -*- -# Copyright (C) 1998-2013 by the Free Software Foundation, Inc. +# Copyright (C) 1998-2014 by the Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License @@ -108,7 +108,7 @@ ALLOW_SITE_ADMIN_COOKIES = No # expire that many seconds following their last use. AUTHENTICATION_COOKIE_LIFETIME = 0 -# The following must be set to Yes to enable the 'author is list' feature. +# The following must be set to Yes to enable the 'from is list' feature. # See DEFAULT_FROM_IS_LIST below. ALLOW_FROM_IS_LIST = No diff --git a/Mailman/Handlers/CookHeaders.py b/Mailman/Handlers/CookHeaders.py index 991c5004..804c5a9f 100755 --- a/Mailman/Handlers/CookHeaders.py +++ b/Mailman/Handlers/CookHeaders.py @@ -191,7 +191,7 @@ def process(mlist, msg, msgdata): # above code? # Also skip Cc if this is an anonymous list as list posting address # is already in From and Reply-To in this case and similarly for - # an 'author is list' list. + # a 'from is list' list. if mlist.personalize == 2 and mlist.reply_goes_to_list <> 1 \ and not mlist.anonymous_list and not (mlist.from_is_list and mm_cfg.ALLOW_FROM_IS_LIST): |