Files
mailbot/livetest_settings.py.sample
2013-03-19 15:21:14 +01:00

16 lines
345 B
Plaintext

# -*- coding: utf-8 -*-
"""Settings used by the live tests to connect and login to an IMAP server."""
# mandatory
HOST = 'your host here'
USERNAME = 'your username here'
PASSWORD = 'your password here'
# optional
# check http://imapclient.readthedocs.org/en/latest/#imapclient.IMAPClient
PORT = None
USE_UID = True
SSL = False
STREAM = False