diff options
author | Tomás Touceda <chiiph@leap.se> | 2013-12-10 10:07:51 -0300 |
---|---|---|
committer | Tomás Touceda <chiiph@leap.se> | 2013-12-10 10:07:51 -0300 |
commit | 6cde754952d6c2abf877c6216c9b4b6675209d3c (patch) | |
tree | 24085feeda485832036678531521b8d97f91f95e /src/leap/mx/tester.py | |
parent | 66abb4ed550ab7dccb73d5064777ea0c02187e25 (diff) | |
parent | c0c66ed40b4953fdac2aea0f19ffa8748e2e8ccb (diff) |
Merge branch 'release-0.3.5'0.3.5
Diffstat (limited to 'src/leap/mx/tester.py')
-rw-r--r-- | src/leap/mx/tester.py | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/src/leap/mx/tester.py b/src/leap/mx/tester.py new file mode 100644 index 0000000..05d2d05 --- /dev/null +++ b/src/leap/mx/tester.py @@ -0,0 +1,46 @@ +import ConfigParser +import sys +import os + +from twisted.internet import reactor, defer +from twisted.python import filepath, log + +from leap.mx import couchdbhelper +from leap.mx.mail_receiver import MailReceiver + +if __name__ == "__main__": + log.startLogging(sys.stdout) + fullpath = os.path.realpath(sys.argv[1]) + + log.msg("Starting test for %s..." % (fullpath,)) + + config_file = "/etc/leap/mx.conf" + + config = ConfigParser.ConfigParser() + config.read(config_file) + + user = config.get("couchdb", "user") + password = config.get("couchdb", "password") + + server = config.get("couchdb", "server") + port = config.get("couchdb", "port") + + cdb = couchdbhelper.ConnectedCouchDB(server, + port=port, + dbName="identities", + username=user, + password=password) + + # Mail receiver + mail_couch_url_prefix = "http://%s:%s@%s:%s" % (user, + password, + server, + port) + + mr = MailReceiver(mail_couch_url_prefix, cdb, []) + fpath = filepath.FilePath(fullpath) + + d = mr._process_incoming_email(None, fpath, 0) + d.addCallback(lambda x: reactor.stop()) + + reactor.run() |