diff options
| author | klm | 1998-10-22 00:29:37 +0000 |
|---|---|---|
| committer | klm | 1998-10-22 00:29:37 +0000 |
| commit | cf3105606e565e7cf6313b0eb53732a0ee1b34ba (patch) | |
| tree | bd59fd4066cf10e10490b091049a629d78a4d3ce | |
| parent | ab216c4287d0317a94587372661fc5a6fbf48171 (diff) | |
| download | mailman-cf3105606e565e7cf6313b0eb53732a0ee1b34ba.tar.gz mailman-cf3105606e565e7cf6313b0eb53732a0ee1b34ba.tar.zst mailman-cf3105606e565e7cf6313b0eb53732a0ee1b34ba.zip | |
| -rw-r--r-- | Mailman/Defaults.py.in | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Mailman/Defaults.py.in b/Mailman/Defaults.py.in index 8d8d3cf74..7056cdbf9 100644 --- a/Mailman/Defaults.py.in +++ b/Mailman/Defaults.py.in @@ -210,7 +210,11 @@ DEFAULT_ADMINISTRIVIA = 1 # how long the cookie authorizing administrative # changes via the admin cgi lasts # -ADMIN_COOKIE_LIFE = 60 * 60 * 3 # 3 hours +ADMIN_COOKIE_LIFE = 60 * 60 * 3 # 3 hours + +# How long subscriptions request should await confirmation before being +# dropped. +PENDING_REQUEST_LIFE = 60 * 60 * 24 * 3 # 3 days # how many members to display at a time # on the admin cgi to unsubscribe them or change their options |
