diff options
| author | bwarsaw | 2002-10-25 20:30:08 +0000 |
|---|---|---|
| committer | bwarsaw | 2002-10-25 20:30:08 +0000 |
| commit | 2c1bbd726bb91d47ccaa2f89130bf35a976b99c9 (patch) | |
| tree | c58d825e50b6f5477b5aa74e142cb17c77ddb3cd | |
| parent | 0612003f309394789ec11a65580374866f74076c (diff) | |
| download | mailman-2c1bbd726bb91d47ccaa2f89130bf35a976b99c9.tar.gz mailman-2c1bbd726bb91d47ccaa2f89130bf35a976b99c9.tar.zst mailman-2c1bbd726bb91d47ccaa2f89130bf35a976b99c9.zip | |
maybe_forward(): Add a useful URL as suggested by Fil.
| -rw-r--r-- | Mailman/Queue/BounceRunner.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Mailman/Queue/BounceRunner.py b/Mailman/Queue/BounceRunner.py index 0ba597c0a..ddfadad76 100644 --- a/Mailman/Queue/BounceRunner.py +++ b/Mailman/Queue/BounceRunner.py @@ -169,6 +169,7 @@ def maybe_forward(mlist, msg): # Does the list owner want to get non-matching bounce messages? # If not, simply discard it. if mlist.bounce_unrecognized_goes_to_list_owner: + adminurl = mlist.GetScriptURL('admin', absolute=1) + '/bounce' mlist.ForwardMessage(msg, text=_("""\ The attached message was received as a bounce, but either the bounce format @@ -176,6 +177,9 @@ was not recognized, or no member addresses could be extracted from it. This mailing list has been configured to send all unrecognized bounce messages to the list administrator(s). +For more information see: +%(adminurl)s + """), subject=_('Uncaught bounce notification'), tomoderators=0) |
