diff options
| author | bwarsaw | 2000-05-31 18:19:25 +0000 |
|---|---|---|
| committer | bwarsaw | 2000-05-31 18:19:25 +0000 |
| commit | 726dbb05614b76ba541ef57de842d403c0efff57 (patch) | |
| tree | f0e08f2577dbb987753712e08e1cf768beae2592 | |
| parent | 5c85697f9cd4e2aa2bbf4526f5b68489c6530304 (diff) | |
| download | mailman-726dbb05614b76ba541ef57de842d403c0efff57.tar.gz mailman-726dbb05614b76ba541ef57de842d403c0efff57.tar.zst mailman-726dbb05614b76ba541ef57de842d403c0efff57.zip | |
DELIVERY_RETRY_PERIOD: How long should we re-try deliveries for which
at least one recipient failed. Used in Handlers/HandlerAPI.py.
| -rw-r--r-- | Mailman/Defaults.py.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Mailman/Defaults.py.in b/Mailman/Defaults.py.in index 5a486a213..623ad3bd8 100644 --- a/Mailman/Defaults.py.in +++ b/Mailman/Defaults.py.in @@ -280,6 +280,11 @@ ADMIN_COOKIE_LIFE = 60 * 60 * 3 # 3 hours # dropped. PENDING_REQUEST_LIFE = 60 * 60 * 24 * 3 # 3 days +# How long should messages which have delivery failures continue to be +# retried? After this period of time, a message that has failed recipients +# will be dequeued and those recipients will never receive the message. +DELIVERY_RETRY_PERIOD = 60 * 60 * 24 * 5 # 5 days + # These variables control certain aspects of MailList lock acquisition and # retention. They should be tuned as appropriate for your environment. All |
