Unterschiede
Hier werden die Unterschiede zwischen zwei Versionen angezeigt.
| Nächste Überarbeitung | Vorhergehende Überarbeitung | ||
| software:mailman [2008/02/26 23:49] – angelegt st | software:mailman [2012/06/26 14:28] (aktuell) – [Links] st | ||
|---|---|---|---|
| Zeile 1: | Zeile 1: | ||
| + | ====== mailman ====== | ||
| + | Mailman ist in [[programmiersprachen: | ||
| + | |||
| + | ===== Vorraussetzungen ===== | ||
| + | * Webserver | ||
| + | * [[server: | ||
| + | * [[programmiersprachen: | ||
| + | |||
| + | siehe [[http:// | ||
| + | |||
| + | ===== Links ===== | ||
| + | * [[http:// | ||
| + | * [[http:// | ||
| + | |||
| + | * [[http:// | ||
| + | * [[http:// | ||
| + | * [[http:// | ||
| + | |||
| + | |||
| + | |||
| + | ===== Installation ===== | ||
| + | |||
| + | aptitude install mailman | ||
| + | |||
| + | |||
| + | ===== neue Mailingliste ===== | ||
| + | - newlist Name der Mailingliste | ||
| + | - die ''/ | ||
| + | |||
| + | |||
| + | ===== Konfiguration ===== | ||
| + | |||
| + | Grundsätzlich muss | ||
| + | * ein [[server: | ||
| + | * der [[wpde> | ||
| + | * und mailman selbst | ||
| + | konfiguriert werden. | ||
| + | |||
| + | |||
| + | ==== Apache konfigurieren (Debian Lenny) ==== | ||
| + | |||
| + | Die Datei ''/ | ||
| + | |||
| + | < | ||
| + | # Sample configuration for Debian mailman with Apache | ||
| + | |||
| + | # We can find mailman here: | ||
| + | ScriptAlias / | ||
| + | # And the public archives: | ||
| + | Alias /pipermail/ / | ||
| + | # Logos: | ||
| + | Alias / | ||
| + | |||
| + | # Use this if you don't want the " | ||
| + | # In case you want to access mailman through a shorter URL you should enable | ||
| + | # this: | ||
| + | # | ||
| + | # In this case you need to set the DEFAULT_URL_PATTERN in | ||
| + | # / | ||
| + | # authentication code to work. Note that you need to change the base | ||
| + | # URL for all the already-created lists as well. | ||
| + | |||
| + | < | ||
| + | AllowOverride None | ||
| + | Options ExecCGI | ||
| + | AddHandler cgi-script .cgi | ||
| + | Order allow,deny | ||
| + | Allow from all | ||
| + | </ | ||
| + | < | ||
| + | Options Indexes FollowSymlinks | ||
| + | AllowOverride None | ||
| + | Order allow,deny | ||
| + | Allow from all | ||
| + | </ | ||
| + | < | ||
| + | AllowOverride None | ||
| + | Order allow,deny | ||
| + | Allow from all | ||
| + | </ | ||
| + | |||
| + | |||
| + | ## The following describes how to configure mailman on | ||
| + | ## a dedicated virtual host, courtesy Marco d' | ||
| + | |||
| + | # Add these lines in / | ||
| + | # | ||
| + | # | ||
| + | # | ||
| + | |||
| + | #< | ||
| + | #ServerName lists.example.net | ||
| + | # | ||
| + | #ErrorLog / | ||
| + | #CustomLog / | ||
| + | # | ||
| + | #< | ||
| + | # Options Indexes FollowSymLinks | ||
| + | # AllowOverride None | ||
| + | #</ | ||
| + | # | ||
| + | #Alias /pipermail/ / | ||
| + | #Alias / | ||
| + | # | ||
| + | # | ||
| + | # | ||
| + | # | ||
| + | # | ||
| + | # | ||
| + | # | ||
| + | # | ||
| + | # | ||
| + | # | ||
| + | # | ||
| + | # | ||
| + | #</ | ||
| + | </ | ||
| + | |||
| + | |||
| + | ==== Einrichtung mit Postfix (Debian Lenny) ==== | ||
| + | |||
| + | Die Datei ''/ | ||
| + | |||
| + | |||
| + | Dateien in / | ||
| + | |||
| + | In der '' | ||
| + | |||
| + | < | ||
| + | # mailman | ||
| + | relay_domains = lists.domain.tld | ||
| + | # external domains | ||
| + | transport_maps = hash:/ | ||
| + | mailman_destination_recipient_limit = 1 | ||
| + | </ | ||
| + | |||
| + | die Datei '' | ||
| + | < | ||
| + | test.stefanux.de | ||
| + | </ | ||
| + | |||
| + | Anschließend mit < | ||
| + | |||
| + | die master.cfg: | ||
| + | |||
| + | < | ||
| + | mailman | ||
| + | flags=FR user=list argv=/ | ||
| + | ${nexthop} ${user} | ||
| + | </ | ||
| + | |||
| + | |||
| + | Die Datei ''/ | ||
| + | |||
| + | < | ||
| + | MTA = None # No MTA alias processing required | ||
| + | # alias for postmaster, abuse and mailer-daemon | ||
| + | DEB_LISTMASTER = ' | ||
| + | </ | ||
| + | |||
| + | ==== Mailman eindeutschen ==== | ||
| + | |||
| + | Mailman ist in den aktuellen 2.1.x-Versionen komplett eingedeutscht. | ||
| + | |||
| + | FIXME | ||
| + | |||