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
30
31
32
|
ircmail {
irc {
server = "localhost"
port = 6667
ssl = false
nickname = "ircmail-bot"
username = "ircmail"
realname = "IRC Email Bot"
# password = "" # Optional server password
channels = [] # Auto-join channels
}
imap {
host = "localhost"
port = 3143
ssl = false
username = "test@localhost"
password = "test@localhost"
folder = "INBOX"
}
smtp {
host = "localhost"
port = 3025
ssl = false
username = "test@localhost"
password = "test@localhost"
}
database = "./ircmail.db"
channelPrefix = "#contact-"
}
|