diff options
| author | bwarsaw | 2003-03-16 07:07:57 +0000 |
|---|---|---|
| committer | bwarsaw | 2003-03-16 07:07:57 +0000 |
| commit | 8879ec2a9d05fbe243abe5545bcb136187d8d49b (patch) | |
| tree | d50cbf7a1fa4a9a1dac3e86fd69701177c1ab00f | |
| parent | db790006d9dafc1278392e39e4de65739bac3784 (diff) | |
| download | mailman-8879ec2a9d05fbe243abe5545bcb136187d8d49b.tar.gz mailman-8879ec2a9d05fbe243abe5545bcb136187d8d49b.tar.zst mailman-8879ec2a9d05fbe243abe5545bcb136187d8d49b.zip | |
| -rw-r--r-- | Mailman/Commands/cmd_confirm.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Mailman/Commands/cmd_confirm.py b/Mailman/Commands/cmd_confirm.py index 3fdd3af6a..f93e7b9b2 100644 --- a/Mailman/Commands/cmd_confirm.py +++ b/Mailman/Commands/cmd_confirm.py @@ -63,6 +63,10 @@ Your request has been forwarded to the list moderator for approval.""")) res.results.append(_("""\ You are not current a member. Have you already unsubscribed or changed your email address?""")) + except Errors.HostileSubscriptionError: + res.results.append(_("""\ +You were not invited to this mailing list. The invitation has been discarded, +and both list administrators have been alerted.""")) else: if ((results[0] == Pending.SUBSCRIPTION and mlist.send_welcome_msg) or |
