normanr / mail-transport

Mail transport for Jabber written in Python

This URL has Read+Write access

mail-transport / config.py
100644 29 lines (20 sloc) 0.511 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# This file contains the default settings for various options.
# Please edit config.xml instead of this file
 
configFiles = ['config.xml', '/etc/pymailt.conf.xml']
configFile = None
 
jid = "mail"
host = ""
discoName = "Mail Transport"
pid = ""
 
mainServer = "127.0.0.1"
mainServerJID = "jabber.localhost"
port = "5347"
secret = "secret"
 
useComponentBinding = False
useRouteWrap = False
saslUsername = ""
 
debugFile = ""
 
dumpProtocol = False
 
smtpServer = "127.0.0.1"
watchDir = "~/Maildir/new/"
 
domains = []