diff options
Diffstat (limited to 'Mailman/Commands/cmd_subscribe.py')
| -rw-r--r-- | Mailman/Commands/cmd_subscribe.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Mailman/Commands/cmd_subscribe.py b/Mailman/Commands/cmd_subscribe.py index de5ba73f8..1a5048d69 100644 --- a/Mailman/Commands/cmd_subscribe.py +++ b/Mailman/Commands/cmd_subscribe.py @@ -125,7 +125,8 @@ the email address you gave is insecure.""")) res.results.append(_('This list only supports digest subscriptions!')) return STOP except Errors.MMSubscribeNeedsConfirmation: - res.results.append(_('A confirmation email has been sent separately.')) + # We don't need to respond /and/ send a confirmation message. + res.respond = 0 except Errors.MMNeedApproval: res.results.append(_("""\ Your subscription request has been forwarded to the list administrator |
