mirror of
https://github.com/soywod/himalaya.git
synced 2024-11-22 02:50:19 +00:00
18 lines
476 B
TOML
18 lines
476 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"
|
|
|
|
# The default backend used for all the features like adding folders,
|
|
# listing envelopes or copying messages.
|
|
backend = "imap"
|
|
|
|
imap.host = "imap.gmail.com"
|
|
imap.port = 993
|
|
imap.login = "example@localhost"
|
|
imap.auth = "passwd"
|
|
# imap.Some.passwd.cmd = "pass show gmail"
|
|
|