diff options
| author | bwarsaw | 2001-03-02 06:43:51 +0000 |
|---|---|---|
| committer | bwarsaw | 2001-03-02 06:43:51 +0000 |
| commit | 637fac2a674525562b09b6984673deebcfe37603 (patch) | |
| tree | 52ce9c9556aeb46a2aea71ff22b9ac1fa3ac725b | |
| parent | 68c049b84379ba5e6ff2f497a25e0055100eae15 (diff) | |
| download | mailman-637fac2a674525562b09b6984673deebcfe37603.tar.gz mailman-637fac2a674525562b09b6984673deebcfe37603.tar.zst mailman-637fac2a674525562b09b6984673deebcfe37603.zip | |
GetConfigInfo(): Elaborate slightly about the `host_name' attribute.
Also, comment out `web_page_url' -- it's probably just too dangerous
to allow list admins to change this via the web. Making a mistake
breaks the list (for the rare situation where the base url needs
changing, it's up to the site admin to effect).
| -rw-r--r-- | Mailman/MailList.py | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/Mailman/MailList.py b/Mailman/MailList.py index 179932630..53e98b7d7 100644 --- a/Mailman/MailList.py +++ b/Mailman/MailList.py @@ -576,7 +576,7 @@ class MailList(MailCommandHandler, HTMLFormatter, Deliverer, ListAdmin, limit.''')), ('host_name', mm_cfg.Host, WIDTH, 0, - _('Host name this list prefers.'), + _('Host name this list prefers for email.'), _("""The "host_name" is the preferred name for email to mailman-related addresses on this host, and generally should be @@ -584,24 +584,24 @@ class MailList(MailCommandHandler, HTMLFormatter, Deliverer, ListAdmin, useful for selecting among alternative names of a host that has multiple addresses.""")), - ('web_page_url', mm_cfg.String, WIDTH, 0, - _('''Base URL for Mailman web interface. The URL must end in a - single "/". See also the details for an important warning when - changing this value.'''), +## ('web_page_url', mm_cfg.String, WIDTH, 0, +## _('''Base URL for Mailman web interface. The URL must end in a +## single "/". See also the details for an important warning when +## changing this value.'''), - _("""This is the common root for all Mailman URLs referencing - this mailing list. It is also used in the listinfo overview of - mailing lists to identify whether or not this list resides on the - virtual host identified by the overview URL; i.e. if this value - is found (anywhere) in the URL, then this list is considered to - be on that virtual host. If not, then it is excluded from the - listing. +## _("""This is the common root for all Mailman URLs referencing +## this mailing list. It is also used in the listinfo overview of +## mailing lists to identify whether or not this list resides on the +## virtual host identified by the overview URL; i.e. if this value +## is found (anywhere) in the URL, then this list is considered to +## be on that virtual host. If not, then it is excluded from the +## listing. - <p><b><font size="+1">Warning:</font></b> setting this value to - an invalid base URL will render the mailing list unusable. You - will also not be able to fix this from the web interface! In - that case, the site administrator will have to fix the mailing - list from the command line.""")), +## <p><b><font size="+1">Warning:</font></b> setting this value to +## an invalid base URL will render the mailing list unusable. You +## will also not be able to fix this from the web interface! In +## that case, the site administrator will have to fix the mailing +## list from the command line.""")), ] if mm_cfg.ALLOW_OPEN_SUBSCRIBE: sub_cfentry = ('subscribe_policy', mm_cfg.Radio, |
