mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-09 02:06:53 +00:00
email: add migadu.com flavor
Migadu is a very friendly and no-fuzz email service that presumably will be highly valued by HM users.
This commit is contained in:
parent
f0a31d38e6
commit
83bd3a26ac
1 changed files with 15 additions and 0 deletions
|
@ -247,6 +247,7 @@ let
|
||||||
"fastmail.com"
|
"fastmail.com"
|
||||||
"yandex.com"
|
"yandex.com"
|
||||||
"outlook.office365.com"
|
"outlook.office365.com"
|
||||||
|
"migadu.com"
|
||||||
];
|
];
|
||||||
default = "plain";
|
default = "plain";
|
||||||
description = ''
|
description = ''
|
||||||
|
@ -450,6 +451,20 @@ let
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
|
||||||
|
(mkIf (config.flavor == "migadu.com") {
|
||||||
|
userName = mkDefault config.address;
|
||||||
|
|
||||||
|
imap = {
|
||||||
|
host = "imap.migadu.com";
|
||||||
|
port = 993;
|
||||||
|
};
|
||||||
|
|
||||||
|
smtp = {
|
||||||
|
host = "smtp.migadu.com";
|
||||||
|
port = 465;
|
||||||
|
};
|
||||||
|
})
|
||||||
|
|
||||||
(mkIf (config.flavor == "gmail.com") {
|
(mkIf (config.flavor == "gmail.com") {
|
||||||
userName = mkDefault config.address;
|
userName = mkDefault config.address;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue