~barry/mailman/events-and-web

« back to all changes in this revision

Viewing changes to cron/crontab.in.in

  • Committer: klm
  • Date: 1998-01-07 21:21:35 UTC
  • Revision ID: vcs-imports@canonical.com-19980107212135-sv0y521ps0xye37r
Initial revision

Show diffs side-by-side

added added

removed removed

Lines of Context:
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.
8
 
0 9 * * * @PYTHON@ -S @prefix@/cron/disabled
9
 
#
10
 
# Noon, mail digests for lists that do periodic as well as threshhold delivery.
11
 
0 12 * * * @PYTHON@ -S @prefix@/cron/senddigests
12
 
#
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.
16
 
0,5,10,15,20,25,30,35,40,45,50,55 * * * * @PYTHON@ -S @prefix@/cron/gate_news
17
 
#
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
21
 
27 3 * * * @PYTHON@ -S @prefix@/cron/nightly_gzip
 
1
# At 5PM every day, mail reminders to admins as to pending requests
 
2
0 17 * * * exec /usr/local/bin/python /home/mailman/mailman/cron/checkdbs
 
3
 
 
4
# At 5 AM on the first of each month, mail out password reminders.
 
5
0 5 1 * * exec /usr/local/bin/python /home/mailman/mailman/cron/mailpasswds
 
6
 
 
7
# At 12 on the first of each month, bump the volume for large lists.
 
8
0 0 1 * * exec /usr/local/bin/python /home/mailman/mailman/cron/upvolumes_monthly
 
9
 
 
10
# Near years second, bump volume numbers for most lists archives/digests
 
11
0 0 1 1 * exec /usr/local/bin/python /home/mailman/mailman/cron/upvolumes_yearly
 
12
 
 
13
######## Do not make changes from this line on.  Autogenerated by mailman.
 
14
# Once a day, update the mail archives.
 
15
27 5 * * * exec /usr/local/bin/python /home/mailman/mailman/cron/archive yep
 
16
27 5 * * * exec /usr/local/bin/python /home/mailman/mailman/cron/archive if
 
17
27 5 * * * exec /usr/local/bin/python /home/mailman/mailman/cron/archive tmi-2
 
18
 
 
19