Apuntes Mailman
Apuntes varios, unsorted
Crear nueva lista
./newlist --urlhost=listas.dominio.com.uy --emailhost=dominio.com.uy mailman
(configurado correctamente el archivo /etc/mailman/mm_cfg.py
no necesita estos parámetros de host.
Migración
en server origen:
rsync -az -e ssh /var/lib/mailman/lists /var/lib/mailman/data /var/lib/mailman/archives root@192.168.10.18:/var/lib/mailman/
en server destino:
- configurar correctamente apache
- configurar correctamente /etc/mailman/mm_cfg.py
- correr estos comandos:
cd /usr/lib/mailman/bin ./check_perms -f ./genaliases ./withlist -l -r fix_url --all
En caso de tener más de un dominio, el
withlist
va a cambiar al dominio por defecto, para otros dominios se debe ejecutar para cada lista:
./withlist -l -r fix_url lista --urlhost=dominio
Documentos migración
- Ruteo local para mailman y dovecot-lmtp para usuarios: http://wiki.list.org/DOC/Mailman%20-%20Postfix%20integration%20with%20Mailman%20generated%20transport%20or%20other%20maps
virtual_transport = lmtp:unix:private/dovecot-lmtp
transport_maps = hash:/etc/postfix/transport, hash:/var/lib/mailman/data/transport-mailman
Colores para interfaz
Se modifica mm_cfg.py con los siguientes parámetros:
WEB_BG_COLOR = 'white' # Page background WEB_HEADER_COLOR = '#99ccff' # Major section headers WEB_SUBHEADER_COLOR = '#fff0d0' # Minor section headers WEB_ADMINITEM_COLOR = '#dddddd' # Option field background WEB_ADMINPW_COLOR = '#99cccc' # Password box color WEB_ERROR_COLOR = 'red' # Error message foreground WEB_LINK_COLOR = '' # If true, forces LINK= WEB_ALINK_COLOR = '' # If true, forces ALINK= WEB_VLINK_COLOR = '' # If true, forces VLINK= WEB_HIGHLIGHT_COLOR = '#dddddd' # If true, alternating rows # in listinfo & admin # display
— Rodolfo Pilas 2013/07/16 14:48