diff options
| author | bwarsaw | 2006-07-08 17:58:13 +0000 |
|---|---|---|
| committer | bwarsaw | 2006-07-08 17:58:13 +0000 |
| commit | f321ff8f419284c32f7eea4e06c83212bccef6b0 (patch) | |
| tree | 7e1d1e1a1b8b81a48d86afb5c47eb039529993ac /Mailman/Commands/cmd_lists.py | |
| parent | 7a94dcd001240e0c06cc4b50017b8bfd097d9ff4 (diff) | |
| download | mailman-f321ff8f419284c32f7eea4e06c83212bccef6b0.tar.gz mailman-f321ff8f419284c32f7eea4e06c83212bccef6b0.tar.zst mailman-f321ff8f419284c32f7eea4e06c83212bccef6b0.zip | |
Diffstat (limited to 'Mailman/Commands/cmd_lists.py')
| -rw-r--r-- | Mailman/Commands/cmd_lists.py | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/Mailman/Commands/cmd_lists.py b/Mailman/Commands/cmd_lists.py index ff5dd355a..b137efc57 100644 --- a/Mailman/Commands/cmd_lists.py +++ b/Mailman/Commands/cmd_lists.py @@ -1,4 +1,4 @@ -# Copyright (C) 2002 by the Free Software Foundation, Inc. +# Copyright (C) 2002-2006 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 @@ -12,7 +12,8 @@ # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software -# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, +# USA. """ lists @@ -53,10 +54,8 @@ def process(res, args): # We can mention this list if you already know about it if not xlist.advertised and xlist is not mlist: continue - # Skip the list if it isn't in the same virtual domain. BAW: should a - # message to the site list include everything regardless of domain? - if mm_cfg.VIRTUAL_HOST_OVERVIEW and \ - xlist.host_name <> mlist.host_name: + # Skip the list if it isn't in the same virtual domain. + if xlist.host_name <> mlist.host_name: continue realname = xlist.real_name description = xlist.description or _('n/a') |
