diff options
| -rwxr-xr-x | bin/newlist | 12 | ||||
| -rwxr-xr-x | bin/subscribe_enmasse | 14 |
2 files changed, 22 insertions, 4 deletions
diff --git a/bin/newlist b/bin/newlist index 92804cf56..c5b0c825f 100755 --- a/bin/newlist +++ b/bin/newlist @@ -1,5 +1,17 @@ #!/usr/local/bin/python +"""Create a new, unpopulated maillist. + + newlist <list-name> <list-admin's-address> <admin-password> <immediate> + +You can specify as many of the arguments as you want on the command line. +The optional <immediate> argument, if present, means to send out the notice +immediately. Otherwise, the script hangs pending input, to give time for +the person creating the list to customize it before sending the admin an +email notice about the existence of the new list.""" + +__version__ = "$Revision: 382 $" +# $Source$ ADDALIASES_CMD = '/home/mailman/mailman/bin/addaliases' diff --git a/bin/subscribe_enmasse b/bin/subscribe_enmasse index 0e1d11f21..509f7f0d2 100755 --- a/bin/subscribe_enmasse +++ b/bin/subscribe_enmasse @@ -1,8 +1,14 @@ #!/usr/local/bin/python -# This program gets called when the list admin posts a list of names -# to be subscribed on the admin page. This is here because mailman -# needs to fork this off and make it do the work for the following -# reasons: + +"""This program gets called when the list admin posts a list of names +to be subscribed on the admin page.""" + +__version__ = "$Revision: 382 $" +# $Source$ + + +# This is here because mailman # needs to fork this off and make it do the +# work for the following # reasons: # # 1) We need to fork so the web browser can return in a reasonable time # 2) We need to run a ton of mailman processes to avoid holding the |
