mirror of
https://github.com/soywod/himalaya.git
synced 2024-11-22 02:50:19 +00:00
37 lines
843 B
TOML
37 lines
843 B
TOML
[example]
|
|
default = true
|
|
|
|
# The display-name and email are used to build the full email address:
|
|
# "My example account" <example@localhost>
|
|
display-name = "My example account"
|
|
email = "example@localhost"
|
|
|
|
sync = true
|
|
sync-dir = "./.sync"
|
|
|
|
# The default backend used for all the features like adding folders,
|
|
# listing envelopes or copying messages.
|
|
backend = "imap"
|
|
|
|
# IMAP config
|
|
imap.host = "localhost"
|
|
imap.port = 3143
|
|
imap.login = "example@localhost"
|
|
imap.ssl = false
|
|
imap.starttls = false
|
|
imap.insecure = true
|
|
imap.auth = "passwd"
|
|
imap.passwd.raw = "example"
|
|
|
|
# Override the backend used for sending messages.
|
|
message.send.backend = "smtp"
|
|
|
|
# SMTP config
|
|
smtp.host = "localhost"
|
|
smtp.port = 3025
|
|
smtp.login = "example@localhost"
|
|
smtp.ssl = false
|
|
smtp.starttls = false
|
|
smtp.insecure = true
|
|
smtp.auth = "passwd"
|
|
smtp.passwd.raw = "example"
|