diff options
| author | klm | 1998-04-27 23:13:56 +0000 |
|---|---|---|
| committer | klm | 1998-04-27 23:13:56 +0000 |
| commit | 3738d3280a37742cd813fd86395c14d0a81bafab (patch) | |
| tree | bceb2989da093776982e1fb7f1332d297c97d291 | |
| parent | 1dbd0901caa5023bea33928485bcade974abdae3 (diff) | |
| download | mailman-3738d3280a37742cd813fd86395c14d0a81bafab.tar.gz mailman-3738d3280a37742cd813fd86395c14d0a81bafab.tar.zst mailman-3738d3280a37742cd813fd86395c14d0a81bafab.zip | |
Trying admin email as the sender of the confirmation notice, in order
to have bounced emails go there instead of the -request address.
(Also, fixed a small typo in the confirmation notice text.)
| -rwxr-xr-x | cgi/subscribe | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cgi/subscribe b/cgi/subscribe index 960e807b3..9eadfacf6 100755 --- a/cgi/subscribe +++ b/cgi/subscribe @@ -2,7 +2,7 @@ """Process listinfo form submission, ie subscriptions or roster requests.""" -__version__ = "$Revision: 388 $" +__version__ = "$Revision: 481 $" import sys sys.path.append('/home/mailman/mailman/modules') @@ -24,7 +24,7 @@ mailing list has been received via the web%s This is a confirmation request, to prevent anyone from subscribing you against your wishes. In order to complete this subscription you must send a confirming email, to %s, by -repling to this mail, and including just the line: +replying to this mail, and including just the line: subscribe %s%s @@ -169,7 +169,7 @@ else: digesting = "" list.SendTextToUser(subject = 'Subscribing to %s' % list.real_name, recipient = email, - sender = list.GetRequestEmail(), + sender = list.GetAdminEmail(), text = (NEED_CONFIRM_NOTICE % (list.real_name, list.host_name, |
