diff options
| -rwxr-xr-x | cron/checkdbs | 8 | ||||
| -rwxr-xr-x | cron/senddigests | 10 |
2 files changed, 10 insertions, 8 deletions
diff --git a/cron/checkdbs b/cron/checkdbs index 9772ad3bc..b9297a312 100755 --- a/cron/checkdbs +++ b/cron/checkdbs @@ -1,8 +1,8 @@ #!/usr/local/bin/python -# -# This script gets called by cron. -# It checks each list for pending requests, and mails the admin -# of that list if something needs his or her attention. + +"Invoked by cron, checks for pending list requests and mails the admin if any." + +__version__ = "$Revision: 389 $" import sys, os diff --git a/cron/senddigests b/cron/senddigests index 4acc7db98..700dd0b6e 100755 --- a/cron/senddigests +++ b/cron/senddigests @@ -1,8 +1,10 @@ #!/usr/local/bin/python -# -# This script gets called by cron. -# It goes through all the lists, dispatching the digests for those that have -# digest_send_periodic set. + +"""Dispatch digests for lists w/pending messages and digest_send_periodic set. + +Typically it's invoked via cron.""" + +__version__ = "$Revision: 389 $" import sys, os |
