57 lines
1.4 KiB
Nix
57 lines
1.4 KiB
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
#programs.thunderbird = true;
|
|
accounts.email = {
|
|
accounts = {
|
|
kjr = {
|
|
address = "elias.schroeter@kjr-ebe.de";
|
|
realName = "Elias Schröter";
|
|
signature = {
|
|
text = ''
|
|
Mit freundlichen Grüßen,
|
|
Elias Schröter.
|
|
'';
|
|
showSignature = "append";
|
|
};
|
|
passwordCommand = "mail-password";
|
|
userName = "elias.schroeter@kjr-ebe.de";
|
|
thunderbird = { enable = true; };
|
|
};
|
|
privat = {
|
|
address = "elias.schroeter@e.email";
|
|
gpg = {
|
|
key = "0x99D2EF975FE523CC";
|
|
signByDefault = true;
|
|
};
|
|
aliases = [ "eliasschrei@gmail.com" "elias.schroeter1601@gmail.com" ];
|
|
imap = {
|
|
host = "mail.ecloud.global";
|
|
port = 993;
|
|
tls.enable = true;
|
|
};
|
|
realName = "Elias Schröter";
|
|
signature = {
|
|
text = ''
|
|
Mit freundlichen Grüßen,
|
|
Elias Schröter.
|
|
'';
|
|
showSignature = "append";
|
|
};
|
|
passwordCommand = "mail-password";
|
|
smtp = {
|
|
host = "mail.ecloud.global";
|
|
port = 587;
|
|
};
|
|
userName = "elias.schroeter@e.email";
|
|
primary = true;
|
|
tls = {
|
|
enable = true;
|
|
useStartTls = true;
|
|
};
|
|
thunderbird = { enable = true; };
|
|
};
|
|
};
|
|
};
|
|
}
|