diff options
| author | bwarsaw | 2002-03-12 07:33:58 +0000 |
|---|---|---|
| committer | bwarsaw | 2002-03-12 07:33:58 +0000 |
| commit | bb4afbfb57890e3aa556019c20dacee9781e0893 (patch) | |
| tree | 0f775826512410645a9cb3c6f5597ffc7b42cbed | |
| parent | f6ff16dcfc7a92dbb79e3caee1f2abadc1c00e93 (diff) | |
| download | mailman-bb4afbfb57890e3aa556019c20dacee9781e0893.tar.gz mailman-bb4afbfb57890e3aa556019c20dacee9781e0893.tar.zst mailman-bb4afbfb57890e3aa556019c20dacee9781e0893.zip | |
Dan Mick's patch (with mods ;) for disabling list owner notification
on disabled-due-to-bounces and removal-due-to-bounces. Specifically,
DEFAULT_BOUNCE_NOTIFY_OWNER_ON_DISABLE,
DEFAULT_BOUNCE_NOTIFY_OWNER_ON_REMOVAL: Default values for the list
config attributes of the similar name.
| -rw-r--r-- | Mailman/Defaults.py.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Mailman/Defaults.py.in b/Mailman/Defaults.py.in index b530b6cc8..ba8f54ee2 100644 --- a/Mailman/Defaults.py.in +++ b/Mailman/Defaults.py.in @@ -884,6 +884,13 @@ DEFAULT_BOUNCE_YOU_ARE_DISABLED_WARNINGS_INTERVAL = days(7) # failed to match by the bounce detector? DEFAULT_BOUNCE_UNRECOGNIZED_GOES_TO_LIST_OWNER = 1 +# Notifications on bounce actions. The first specifies whether the list owner +# should get a notification when a member is disabled due to bouncing, while +# the second specifies whether the owner should get one when the member is +# removed due to bouncing. +DEFAULT_BOUNCE_NOTIFY_OWNER_ON_DISABLE = 1 +DEFAULT_BOUNCE_NOTIFY_OWNER_ON_REMOVAL = 1 + # List of addresses (lhs of the @) that likely come only from MTAs bouncing # messages. This is used in the bounce detector and MailCommandHandler.py to # stop processing or forwarding such messages. |
