summaryrefslogtreecommitdiff
path: root/Mailman/MailCommandHandler.py
diff options
context:
space:
mode:
authorklm1998-04-02 03:56:53 +0000
committerklm1998-04-02 03:56:53 +0000
commit4c333496ec69df4e1345dccd315952137ce2e880 (patch)
treef21072819a53cca8de4edf12afca9f19ed1558a0 /Mailman/MailCommandHandler.py
parentd9b3efcbb113d2f6e3d486aeb24694b2829151eb (diff)
downloadmailman-4c333496ec69df4e1345dccd315952137ce2e880.tar.gz
mailman-4c333496ec69df4e1345dccd315952137ce2e880.tar.zst
mailman-4c333496ec69df4e1345dccd315952137ce2e880.zip
Diffstat (limited to 'Mailman/MailCommandHandler.py')
-rw-r--r--Mailman/MailCommandHandler.py13
1 files changed, 10 insertions, 3 deletions
diff --git a/Mailman/MailCommandHandler.py b/Mailman/MailCommandHandler.py
index 947e4df96..1b255da5b 100644
--- a/Mailman/MailCommandHandler.py
+++ b/Mailman/MailCommandHandler.py
@@ -409,12 +409,16 @@ Any questions about the list owner's policy should be directed to:
def ProcessHelpCmd(self, args, cmd, mail):
- self.AddToResponse("**** Help for %s:" % self.real_name)
+ self.AddToResponse("**** Help for %s maillist:" % self.real_name)
self.AddToResponse("""
This is email command help for version %s of the "Mailman" list manager.
The following describes commands you can send to get information about and
control your subscription to mailman lists at this site. A command can
-be in the subject line and many can be in the body of the message.
+be the subject line or in the body of the message.
+
+(Note that much of the following can also be accomplished via the web, at:
+
+ %s )
List specific commands (subscribe, who, etc) should be sent to the
*-request address for the particular list, e.g. for the 'mailman' list,
@@ -492,5 +496,8 @@ Commands should be sent to %s
Questions and concerns for the attention of a person should be sent to
%s
-""" % (mm_cfg.VERSION, self.GetRequestEmail(), self.GetAdminEmail()))
+""" % (mm_cfg.VERSION,
+ self.GetScriptURL('listinfo'),
+ self.GetRequestEmail(),
+ self.GetAdminEmail()))