mirror of
https://github.com/nix-community/home-manager
synced 2024-11-04 18:29:45 +01:00
45cadbd4f3
This will allow, e.g., the character `@` in the email identity. Also adds a test case. Fixes #557
27 lines
631 B
Nix
27 lines
631 B
Nix
{ ... }:
|
|
|
|
{
|
|
accounts.email = {
|
|
maildirBasePath = "Mail";
|
|
|
|
accounts = {
|
|
"hm@example.com" = {
|
|
address = "hm@example.com";
|
|
userName = "home.manager";
|
|
realName = "H. M. Test";
|
|
passwordCommand = "password-command";
|
|
imap.host = "imap.example.com";
|
|
smtp.host = "smtp.example.com";
|
|
};
|
|
|
|
hm-account = {
|
|
address = "hm@example.org";
|
|
userName = "home.manager.jr";
|
|
realName = "H. M. Test Jr.";
|
|
passwordCommand = "password-command 2";
|
|
imap.host = "imap.example.org";
|
|
smtp.host = "smtp.example.org";
|
|
};
|
|
};
|
|
};
|
|
}
|