4156
by bwarsaw
Add calls for cron/disabled to send out the you-are-disabled notices. |
1 |
# At 8AM every day, mail reminders to admins as to pending requests.
|
2 |
# They are less likely to ignore these reminders if they're mailed
|
|
3 |
# early in the morning, but of course, this is local time... ;)
|
|
4 |
0 8 * * * @PYTHON@ -S @prefix@/cron/checkdbs
|
|
5 |
#
|
|
6 |
# At 9AM, send notifications to disabled members that are due to be
|
|
7 |
# reminded to re-enable their accounts.
|
|
4235
by bwarsaw
Fix typo in autoconf substitution. Found by Dan Ohnesorg. |
8 |
0 9 * * * @PYTHON@ -S @prefix@/cron/disabled
|
98
by mailman
Make whitespace lines into comments - sol 2.6 at least whinces at |
9 |
#
|
170
by mailman
Add entry for noon-time dispatch of digests that do periodic delivery. |
10 |
# Noon, mail digests for lists that do periodic as well as threshhold delivery.
|
2159
by bwarsaw
Run qrunner every minute; making the system much more responsive, |
11 |
0 12 * * * @PYTHON@ -S @prefix@/cron/senddigests
|
170
by mailman
Add entry for noon-time dispatch of digests that do periodic delivery. |
12 |
#
|
614
by viega
Add an entry to call gate_news every 5 minutes. |
13 |
# Every 5 mins, try to gate news to mail. You can comment this one out
|
14 |
# if you don't want to allow gating, or don't have any going on right now,
|
|
15 |
# or want to exclusively use a callback strategy instead of polling.
|
|
2159
by bwarsaw
Run qrunner every minute; making the system much more responsive, |
16 |
0,5,10,15,20,25,30,35,40,45,50,55 * * * * @PYTHON@ -S @prefix@/cron/gate_news
|
844
by bwarsaw
George Bush sez: "blank lines... bad!" |
17 |
#
|
1686
by bwarsaw
Add an entry to run the nightly gzip at 3:27am |
18 |
# At 3:27am every night, regenerate the gzip'd archive file. Only
|
19 |
# turn this on if the internal archiver is used and
|
|
20 |
# GZIP_ARCHIVE_TXT_FILES is false in mm_cfg.py
|
|
2159
by bwarsaw
Run qrunner every minute; making the system much more responsive, |
21 |
27 3 * * * @PYTHON@ -S @prefix@/cron/nightly_gzip
|