Size: 2647
Comment: Fixed the FAQ link and some formatting. Will try to make this less wide next.
|
Size: 2712
Comment: Trying it with noformat blocks to encourage more sane width
|
Deletions are marked like this. | Additions are marked like this. |
Line 1: | Line 1: |
#pragma page-filename DOC/versions/4030741 | #pragma page-filename DOC/versions/4030742 |
Line 3: | Line 3: |
Mailman provides a web interface for administering mailing lists, creating new ones, etc.... For many things, this is sufficient. However, not all of the information or tools are made available by Mailman through the web interface. For these things, site administrators would normally look at the command-line tools (see <[[../Summary of the mailman bin commands|Summary of the mailman bin commands]]>). | Mailman provides a web interface for administering mailing lists, creating new ones, etc.... For many things, this is sufficient. However, not all of the information or tools are made available by Mailman through the web interface. For these things, site administrators would normally look at the command-line tools (see <[[../Summary of the mailman bin commands|Summary of the mailman bin commands]]>). |
Line 13: | Line 13: |
List lists: http://<domain.com>/mailman/admin | List lists: |
Line 15: | Line 15: |
List a member: http://<domain.com>/mailman/admin/<listname>/members?findmember=<email-address>&setmemberopts_btn&adminpw=<adminpassword> |
{{{ http://<domain.com>/mailman/admin }}} |
Line 18: | Line 19: |
Unsubscribe: http://<domain.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> | List a member: |
Line 20: | Line 21: |
Subscribe: http://<domain.com>/mailman/admin/<listname>/members/add?subscribe_or_invite=0&send_welcome_msg_to_this_batch=0¬ification_to_list_owner=0&subscribees_upload=<email-address>&adminpw=<adminpassword> | {{{ http://<domain.com>/mailman/admin/<listname>/members?findmember=<email-address>&setmemberopts_btn&adminpw=<adminpassword>{panel} }}} |
Line 22: | Line 25: |
Set digest (you have to first subscribe them using URL above, then set digest): http://<domain.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> | Unsubscribe: |
Line 24: | Line 27: |
If you are using the Joomla! Content Management System, there is add-on component that uses all of these URLs, parsing as necessary: <[[http://extensions.joomla.org/component/option,com_mtree/task,search/Itemid,35/searchword,mailman/cat_id,0/]]>. | {{{ http://<domain.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> }}} |
Line 26: | Line 31: |
Also note http://heim.ifi.uio.no/kjetilho/hacks/#listadmin . | Subscribe: {{{ http://<domain.com>/mailman/admin/<listname>/members/add?subscribe_or_invite=0&send_welcome_msg_to_this_batch=0¬ification_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://<domain.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> }}} If you are using the Joomla! Content Management System, there is add-on component that uses all of these URLs, parsing as necessary: <[[http://extensions.joomla.org/component/option,com_mtree/task,search/Itemid,35/searchword,mailman/cat_id,0/]]>. Also note [[http://heim.ifi.uio.no/kjetilho/hacks/#listadmin]] . |
3.53. Additional web administration tools?
Mailman provides a web interface for administering mailing lists, creating new ones, etc.... For many things, this is sufficient. However, not all of the information or tools are made available by Mailman through the web interface. For these things, site administrators would normally look at the command-line tools (see <Summary of the mailman bin commands>).
However, some of this information can also be made available by scripting the web interface. For example, there are some sample tools available that do this sort of thing at http://starship.python.net/crew/jwt/mailman/#throughtheweb.
Mailman can also be managed via PHP or other scripting languages by using the appropriate URL and passing it to wget or php's file_get_contents call. For example: $list-lists-url="http://<domain.com>/mailman/admin"; $content=file_get_contents("$list-lists-url","FALSE");
(Depending on what you want to do, you may then need to parse the contents of $content to get what you want.)
Here are some example URLs to do important things:
List lists:
http://<domain.com>/mailman/admin
List a member:
http://<domain.com>/mailman/admin/<listname>/members?findmember=<email-address>&setmemberopts_btn&adminpw=<adminpassword>{panel}
Unsubscribe:
http://<domain.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://<domain.com>/mailman/admin/<listname>/members/add?subscribe_or_invite=0&send_welcome_msg_to_this_batch=0¬ification_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://<domain.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>
If you are using the Joomla! Content Management System, there is add-on component that uses all of these URLs, parsing as necessary: <http://extensions.joomla.org/component/option,com_mtree/task,search/Itemid,35/searchword,mailman/cat_id,0/>.
Also note http://heim.ifi.uio.no/kjetilho/hacks/#listadmin .
Last changed on Tue Feb 12 06:03:30 2008 by jidanni Converted from the Mailman FAQ Wizard
This is one of many Frequently Asked Questions.