mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
32 lines
636 B
TOML
32 lines
636 B
TOML
[accounts."hm@example.com"]
|
|
backend = "imap"
|
|
default = true
|
|
display-name = "H. M. Test"
|
|
email = "hm@example.com"
|
|
|
|
[accounts."hm@example.com".folder.alias]
|
|
drafts = "Drafts"
|
|
inbox = "Inbox"
|
|
sent = "Sent"
|
|
trash = "Trash"
|
|
|
|
[accounts."hm@example.com".imap]
|
|
encryption = "tls"
|
|
host = "imap.example.com"
|
|
login = "home.manager"
|
|
port = 993
|
|
|
|
[accounts."hm@example.com".imap.passwd]
|
|
cmd = "password-command"
|
|
|
|
[accounts."hm@example.com".message.send]
|
|
backend = "smtp"
|
|
|
|
[accounts."hm@example.com".smtp]
|
|
encryption = "tls"
|
|
host = "smtp.example.com"
|
|
login = "home.manager"
|
|
port = 465
|
|
|
|
[accounts."hm@example.com".smtp.passwd]
|
|
cmd = "password-command"
|