2024-08-01 12:44:07 +02:00
|
|
|
{ pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
programs.thunderbird = {
|
|
|
|
enable = true;
|
|
|
|
package = pkgs.unstable.thunderbird;
|
|
|
|
profiles = {
|
|
|
|
default = {
|
|
|
|
isDefault = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
accounts.email.accounts = {
|
|
|
|
ziggo = {
|
|
|
|
imap = {
|
|
|
|
host = "imap.ziggo.nl";
|
|
|
|
port = 993;
|
|
|
|
tls = {
|
|
|
|
enable = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
smtp = {
|
|
|
|
host = "smtp.ziggo.nl";
|
|
|
|
port = 587;
|
|
|
|
tls = {
|
|
|
|
enable = true;
|
|
|
|
useStartTls = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
address = "timo.boomers@ziggo.nl";
|
|
|
|
realName = "Timo Boomers";
|
|
|
|
userName = "timo.boomers@ziggo.nl";
|
|
|
|
primary = true;
|
|
|
|
thunderbird.enable = true;
|
|
|
|
thunderbird.profiles = [ "default" ];
|
|
|
|
};
|
2024-10-11 09:48:21 +02:00
|
|
|
tudelft = {
|
|
|
|
imap = {
|
|
|
|
host = "outlook.office365.com";
|
|
|
|
port = 993;
|
|
|
|
tls = {
|
|
|
|
enable = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
smtp = {
|
|
|
|
host = "smtp.office365.com";
|
|
|
|
port = 587;
|
|
|
|
tls = {
|
|
|
|
enable = true;
|
|
|
|
useStartTls = false;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
address = "tboomers@tudelft.nl";
|
|
|
|
realName = "Timo Boomers";
|
|
|
|
userName = "tboomers@tudelft.nl";
|
|
|
|
primary = false;
|
|
|
|
thunderbird.enable = true;
|
|
|
|
thunderbird.profiles = [ "default" ];
|
|
|
|
};
|
2024-08-01 12:44:07 +02:00
|
|
|
xeovalyte = {
|
|
|
|
imap = {
|
|
|
|
host = "mail.xeovalyte.dev";
|
|
|
|
port = 993;
|
|
|
|
tls = {
|
|
|
|
enable = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
smtp = {
|
|
|
|
host = "mail.xeovalyte.dev";
|
|
|
|
port = 587;
|
|
|
|
tls = {
|
|
|
|
enable = true;
|
|
|
|
useStartTls = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
address = "timo@xeovalyte.dev";
|
|
|
|
aliases = [ "me@xeovalyte.dev" "contact@xeovalyte.dev" ];
|
|
|
|
realName = "Timo Boomers";
|
|
|
|
userName = "me@xeovalyte.dev";
|
|
|
|
primary = false;
|
|
|
|
thunderbird.enable = true;
|
|
|
|
thunderbird.profiles = [ "default" ];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|