himalaya/config.sample.toml

36 lines
810 B
TOML
Raw Normal View History

2023-02-18 20:12:47 +00:00
[example]
default = true
2023-02-18 20:12:47 +00:00
2023-11-25 11:37:00 +00:00
# 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"
2023-02-18 20:12:47 +00:00
2023-11-25 11:37:00 +00:00
# The default backend used for all the features like adding folders,
# listing envelopes or copying messages.
backend = "imap"
2023-02-18 20:12:47 +00:00
# Override the backend used for sending messages.
message.send.backend = "smtp"
# IMAP config
imap.host = "localhost"
imap.port = 3143
2023-11-25 11:37:00 +00:00
imap.login = "example@localhost"
imap.ssl = false
imap.starttls = false
imap.insecure = true
2023-11-25 11:37:00 +00:00
imap.auth = "passwd"
imap.passwd.raw = "example"
# 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"
2023-02-18 20:12:47 +00:00