diff options
| author | bwarsaw | 2001-12-27 07:09:29 +0000 |
|---|---|---|
| committer | bwarsaw | 2001-12-27 07:09:29 +0000 |
| commit | 6426d48024b7174f5eea4e79212a10b4b17df82f (patch) | |
| tree | 70691600db2deff04bf46e2dc8e37d8171b585f8 | |
| parent | 85bba3ff001ed86d4f037de1b32ff902bdcbd7f2 (diff) | |
| download | mailman-6426d48024b7174f5eea4e79212a10b4b17df82f.tar.gz mailman-6426d48024b7174f5eea4e79212a10b4b17df82f.tar.zst mailman-6426d48024b7174f5eea4e79212a10b4b17df82f.zip | |
Add calls for cron/disabled to send out the you-are-disabled notices.
Send these out at 9am localtime.
Also, change the admin reminders to run at 8am local time instead of
10pm local time.
| -rw-r--r-- | cron/Makefile.in | 2 | ||||
| -rwxr-xr-x | cron/crontab.in.in | 10 |
2 files changed, 9 insertions, 3 deletions
diff --git a/cron/Makefile.in b/cron/Makefile.in index 9d90164ea..3369691d5 100644 --- a/cron/Makefile.in +++ b/cron/Makefile.in @@ -41,7 +41,7 @@ CRONDIR= $(prefix)/cron SHELL= /bin/sh PROGRAMS= checkdbs mailpasswds senddigests gate_news \ - nightly_gzip bumpdigests + nightly_gzip bumpdigests disabled FILES= crontab.in BUILDDIR= ../build/cron diff --git a/cron/crontab.in.in b/cron/crontab.in.in index ff1dda958..cfa70317d 100755 --- a/cron/crontab.in.in +++ b/cron/crontab.in.in @@ -1,5 +1,11 @@ -# At 5PM every day, mail reminders to admins as to pending requests -0 17 * * * @PYTHON@ -S @prefix@/cron/checkdbs +# At 8AM every day, mail reminders to admins as to pending requests. +# They are less likely to ignore these reminders if they're mailed +# early in the morning, but of course, this is local time... ;) +0 8 * * * @PYTHON@ -S @prefix@/cron/checkdbs +# +# At 9AM, send notifications to disabled members that are due to be +# reminded to re-enable their accounts. +0 9 * * * @PYTHON@ -S @prefix/cron/disabled # # Noon, mail digests for lists that do periodic as well as threshhold delivery. 0 12 * * * @PYTHON@ -S @prefix@/cron/senddigests |
