(04-01-2009 05:06 PM)rbtux Wrote: poste mal deine mm_cfg.py
Die Mailinglists funktionieren ja. Ich glaub die mailman einträge in der virtual fangen irgendwie die einträge in der mysql db von ispcp ab und rejecten schon dort bevor geprüft wird ob nicht in der mysql noch irgendwas steht.
Code:
"""This is the module which takes your site-specific settings.
From a raw distribution it should be copied to mm_cfg.py. If you
already have an mm_cfg.py, be careful to add in only the new settings
you want. The complete set of distributed defaults, with annotation,
are in ./Defaults. In mm_cfg, override only those you want to
change, after the
from Defaults import *
line (see below).
Note that these are just default settings - many can be overridden via the
admin and user interfaces on a per-list or per-user basis.
Note also that some of the settings are resolved against the active list
setting by using the value as a format string against the
list-instance-object's dictionary - see the distributed value of
DEFAULT_MSG_FOOTER for an example."""
from Defaults import *
MAILMAN_SITE_LIST = 'mailman'
DEFAULT_URL_PATTERN = 'http://%s/cgi-bin/mailman/'
PRIVATE_ARCHIVE_URL = '/cgi-bin/mailman/private'
IMAGE_LOGOS = '/images/mailman/'
DEFAULT_EMAIL_HOST = 'domain1.de'
DEFAULT_URL_HOST = 'lists.domain1.de'
add_virtualhost(DEFAULT_URL_HOST, DEFAULT_EMAIL_HOST)
DEFAULT_SERVER_LANGUAGE = 'de'
USE_ENVELOPE_SENDER = 0 # Still used?
DEFAULT_SEND_REMINDERS = 0
MTA='Postfix'
POSTFIX_STYLE_VIRTUAL_DOMAINS = ['domain1.de','domain2.com','domain3.info','domain4.de',
'domain5.info','domain6.de','domain7.org','domain8.info',
'domain9.de','domain10.org','domain11.de','domain12.de',
'domain13.com']
add_virtualhost('lists.domain4.de', 'domain4.de')
add_virtualhost('lists.domain5.info', 'domain5.info')
add_virtualhost('lists.domain6.de', 'domain6.de')