diff options
Diffstat (limited to 'pkg')
-rwxr-xr-x | pkg/mx.tac | 7 | ||||
-rw-r--r-- | pkg/requirements-testing.pip | 1 |
2 files changed, 2 insertions, 6 deletions
@@ -80,10 +80,6 @@ check_recipient = internet.TCPServer( check_recipient.setServiceParent(application) # Mail receiver -mail_couch_url_prefix = "http://%s:%s@%s:%s" % (user, - password, - server, - port) directories = [] for section in config.sections(): if section in ("couchdb", "alias map", "check recipient", "bounce"): @@ -92,6 +88,5 @@ for section in config.sections(): recursive = config.getboolean(section, "recursive") directories.append([to_watch, recursive]) -mr = MailReceiver(mail_couch_url_prefix, cdb, directories, bounce_from, - bounce_subject) +mr = MailReceiver(cdb, directories, bounce_from, bounce_subject) mr.setServiceParent(application) diff --git a/pkg/requirements-testing.pip b/pkg/requirements-testing.pip index 94ab6e8..94b8e9c 100644 --- a/pkg/requirements-testing.pip +++ b/pkg/requirements-testing.pip @@ -1 +1,2 @@ pep8 +setuptools-trial |