23 lines
535 B
TOML
23 lines
535 B
TOML
|
default_account = "First Account"
|
||
|
mailbox_path = "../base/mailbox"
|
||
|
default_messages = 50
|
||
|
|
||
|
[[account]]
|
||
|
name = "First Account"
|
||
|
mailbox_path = "/opt"
|
||
|
messages = 30
|
||
|
excluded_folders = ["Draft", "Junk"]
|
||
|
[account.connection]
|
||
|
hostname = "mx.example.com"
|
||
|
port = 993
|
||
|
username = "first@example.com"
|
||
|
password_exec = "echo -n 123qweasdzxc"
|
||
|
|
||
|
[[account]]
|
||
|
name = "Other Account"
|
||
|
[account.connection]
|
||
|
hostname = "mail.personal.me"
|
||
|
port = 666
|
||
|
username = "h4x0R@personal.me"
|
||
|
password = "mySup3r5ekre7p4ssw0rd123"
|