=== modified file 'Mailman/Cgi/admin.py' --- Mailman/Cgi/admin.py 2010-03-29 20:48:11 +0000 +++ Mailman/Cgi/admin.py 2010-06-23 15:07:39 +0000 @@ -233,8 +233,9 @@ for name in listnames: mlist = MailList.MailList(name, lock=0) if mlist.advertised: - if mm_cfg.VIRTUAL_HOST_OVERVIEW and \ - mlist.web_page_url.find('/%s/' % hostname) == -1: + if mm_cfg.VIRTUAL_HOST_OVERVIEW and ( + mlist.web_page_url.find('/%s/' % hostname) == -1 and + mlist.web_page_url.find('/%s:' % hostname) == -1: # List is for different identity of this host - skip it. continue else: === modified file 'Mailman/Cgi/listinfo.py' --- Mailman/Cgi/listinfo.py 2010-03-29 20:48:11 +0000 +++ Mailman/Cgi/listinfo.py 2010-06-23 15:04:41 +0000 @@ -89,8 +89,9 @@ for name in listnames: mlist = MailList.MailList(name, lock=0) if mlist.advertised: - if mm_cfg.VIRTUAL_HOST_OVERVIEW and \ - mlist.web_page_url.find('/%s/' % hostname) == -1: + if mm_cfg.VIRTUAL_HOST_OVERVIEW and ( + mlist.web_page_url.find('/%s/' % hostname) == -1 and + mlist.web_page_url.find('/%s:' % hostname) == -1): # List is for different identity of this host - skip it. continue else: