diff options
| author | bwarsaw | 2001-08-04 02:02:58 +0000 |
|---|---|---|
| committer | bwarsaw | 2001-08-04 02:02:58 +0000 |
| commit | 9fe86babf1dd1ac2ff0329144122f1844d63a516 (patch) | |
| tree | 8ac7c50b6239bbd2670e01d99c475d1a5a8ee3fa | |
| parent | ab12d8e130635890926fb7d07752dcea7e4282d5 (diff) | |
| download | mailman-9fe86babf1dd1ac2ff0329144122f1844d63a516.tar.gz mailman-9fe86babf1dd1ac2ff0329144122f1844d63a516.tar.zst mailman-9fe86babf1dd1ac2ff0329144122f1844d63a516.zip | |
listinfo_overview(): Instead of using MAILMAN_OWNER, use
Utils.get_site_email(). The former config variable is going away.
| -rw-r--r-- | Mailman/Cgi/listinfo.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mailman/Cgi/listinfo.py b/Mailman/Cgi/listinfo.py index 0282fcb2b..5087d23c9 100644 --- a/Mailman/Cgi/listinfo.py +++ b/Mailman/Cgi/listinfo.py @@ -111,6 +111,7 @@ def listinfo_overview(msg=''): # set up some local variables adj = msg and _('right') or '' + siteowner = Utils.get_site_email() welcome.extend( (_(''' To visit the info page for an unadvertised list, a URL similar to this one, but with a '/' and the %(adj)s @@ -120,8 +121,7 @@ def listinfo_overview(msg=''): _('the list admin overview page')), _(''' to find the management interface for your list. <p>Send questions or comments to '''), - Link('mailto:' + mm_cfg.MAILMAN_OWNER, - mm_cfg.MAILMAN_OWNER), + Link('mailto:' + siteowner, siteowner), '.<p>')) table.AddRow([apply(Container, welcome)]) |
