diff options
author | Tomás Touceda <chiiph@leap.se> | 2014-09-26 10:21:00 -0300 |
---|---|---|
committer | Tomás Touceda <chiiph@leap.se> | 2014-09-26 10:21:00 -0300 |
commit | d8893584886a593dd6ddcfa1a6930288c7fd8ecc (patch) | |
tree | ea78d499b35991a7e1e51ebbb8aee6fea6286ff1 /pkg/mx.tac | |
parent | 2b6ed340fd0f2f84431082890857dd5e7de63831 (diff) | |
parent | 78e8f04076c4f915b8fbdad037a863487580da5a (diff) |
Merge branch 'release-0.6.0'0.6.0
Diffstat (limited to 'pkg/mx.tac')
-rwxr-xr-x | pkg/mx.tac | 14 |
1 files changed, 12 insertions, 2 deletions
@@ -46,6 +46,15 @@ password = config.get("couchdb", "password") server = config.get("couchdb", "server") port = config.get("couchdb", "port") +bounce_from = "bounce" +bounce_subject = "Delivery failure" + +try: + bounce_from = config.get("bounce", "from") + bounce_subject = config.get("bounce", "subject") +except ConfigParser.NoSectionError: + pass # we use the defaults above + alias_port = config.getint("alias map", "port") check_recipient_port = config.getint("check recipient", "port") @@ -74,11 +83,12 @@ mail_couch_url_prefix = "http://%s:%s@%s:%s" % (user, port) directories = [] for section in config.sections(): - if section in ("couchdb", "alias map", "check recipient"): + if section in ("couchdb", "alias map", "check recipient", "bounce"): continue to_watch = config.get(section, "path") recursive = config.getboolean(section, "recursive") directories.append([to_watch, recursive]) -mr = MailReceiver(mail_couch_url_prefix, cdb, directories) +mr = MailReceiver(mail_couch_url_prefix, cdb, directories, bounce_from, + bounce_subject) mr.setServiceParent(application) |