Revision 1 as of 2011-09-15 06:15:08

Clear message

3.53. Additional web administration tools

Much of the Mailman can be administered through the command-line tools (see <4.09 Summary of the mailman bin commands>), however the web interface also provides access to some information and functions of the tools.

By writing a script to call the web interface, actions can be submitted and information can be parsed.

Using PHP

Mailman can also be administered using PHP or any other scripting languages by using the appropriate URL and passing it to an fopen wrapper function (such as file_get_contents) or using a third party library such as CURL.

For example:

In this example, the list of lists should be returned as HTML and put into $content as a string. You can then parse the list to display or use how you desire.

Other available functions via the web interface:

List lists:
http://example.com/mailman/admin

List a member:
http://example.com/mailman/admin/<listname>/members?findmember=<email-address>&setmemberopts_btn&adminpw=<adminpassword>

Unsubscribe:
http://example.com/mailman/admin/<listname>/members/remove?send_unsub_ack_to_this_batch=0&send_unsub_notifications_to_list_owner=0&unsubscribees_upload=<email-address>&adminpw=<adminpassword>

Subscribe:
http://example.com/mailman/admin/<listname>/members/add?subscribe_or_invite=0&send_welcome_msg_to_this_batch=0&notification_to_list_owner=0&subscribees_upload=<email-address>&adminpw=<adminpassword>

Set digest (you have to first subscribe them using URL above, then set digest):
http://example.com/mailman/admin/<listname>/members?user=<email-address>&<email-address>_digest=1&setmemberopts_btn=Submit%20Your%20Changes&allmodbit_val=0&<email-address>_language=en&<email-address>_nodupes=1&adminpw=<adminpassword>

Also see