Service/lists: Difference between revisions
Remove obsolete ole domain, replace inactive admin lfaraone with ignacio (who doesn't know he's being volunteered :-), and various cleanups Tag: visualeditor |
Change information to reflect move to mailman3. |
||
| Line 17: | Line 17: | ||
* [[User:bernie|Bernie Innocenti]] | * [[User:bernie|Bernie Innocenti]] | ||
* [[User: | * [[User:Chimosky|Chihurumnaya Ibiam]] | ||
== Requesting a new mailing list == | == Requesting a new mailing list == | ||
| Line 33: | Line 33: | ||
It may take up to 48h to hear a response back, so please be patient! | It may take up to 48h to hear a response back, so please be patient! | ||
== Notes == | |||
{| class="wikitable" | |||
|- | |||
!scope="row" | User | |||
|{{Code|mailman}} | |||
|- | |||
|- | |||
!scope="row" | Home | |||
|{{Code|/opt/mailman}} | |||
|- | |||
!scope="row" | Daemon | |||
| | |||
{{Code|/etc/systemd/system/mailman3.service}}<br> | |||
{{Code|/etc/systemd/system/mailmanweb.service}}<br> | |||
{{Code|/etc/systemd/system/uwsgi.service}}<br> | |||
|- | |||
!scope="row" | Logs | |||
| | |||
{{Code|/var/log/nginx}}<br> | |||
{{Code|/opt/mailman/web/logs/*}}<br> | |||
{{Code|/opt/mailman/mm/var/logs/*}}<br> | |||
|- | |||
!scope="row" | Config | |||
| | |||
{{Code|/etc/nginx/sites-available/mailman.sugarlabs.org}}<br> | |||
{{Code|/etc/mailman3/*}}<br> | |||
|- | |||
!scope="row" | Ports | |||
| | |||
{{Code|443}} HTTP server<br> | |||
{{Code|ss -tnlp}} View service ports<br> | |||
|- | |||
!scope="row" | Admin scripts | |||
| | |||
{{Code|/opt/mailman/mm/bin/}}<br> | |||
|- | |||
|} | |||
== Sysadmin Recipes == | == Sysadmin Recipes == | ||
=== Adding a new a mailing list === | === Adding a new a mailing list === | ||
* Login to mailman user. | |||
* Create the list: | * Create the list: | ||
python3 create-list.py --list LISTNAME | |||
Mailman3 has separate parts and the core communicates with a [https://docs.mailman3.org/projects/mailman/en/latest/src/mailman/rest/docs/rest.html REST API], | |||
the script is aimed to make it easier to create a list, and can be viewed | |||
to see how to authenticate to the API. | |||
* Send additional instructions to list administrator | * Send additional instructions to list administrator | ||
| Line 53: | Line 102: | ||
list is about. Please, notify systems@ if you change security or privacy | list is about. Please, notify systems@ if you change security or privacy | ||
related settings. | related settings. | ||
== See Also == | == See Also == | ||