diff options
| author | mailman | 1998-04-09 23:12:20 +0000 |
|---|---|---|
| committer | mailman | 1998-04-09 23:12:20 +0000 |
| commit | 58ed995408f7e465e05bc3f9b2915f5b8dbdab49 (patch) | |
| tree | 2bc02cd9745b240525f7f755639aadc9fe1ef337 /cron | |
| parent | 653be2d8e312e9482aeb7ea0f0f1e3b736d34d05 (diff) | |
| download | mailman-58ed995408f7e465e05bc3f9b2915f5b8dbdab49.tar.gz mailman-58ed995408f7e465e05bc3f9b2915f5b8dbdab49.tar.zst mailman-58ed995408f7e465e05bc3f9b2915f5b8dbdab49.zip | |
Preparing to package a distribution - add a module docstring and
__version__ info.
Diffstat (limited to 'cron')
| -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 |
