76 lines
1.9 KiB
Nix
76 lines
1.9 KiB
Nix
{ config, ... }:
|
|
{
|
|
programs.thunderbird = {
|
|
enable = true;
|
|
profiles = {
|
|
main = {
|
|
isDefault = true;
|
|
};
|
|
};
|
|
};
|
|
|
|
accounts.email.accounts = {
|
|
"rpqt@rpqt.fr" = {
|
|
address = "rpqt@rpqt.fr";
|
|
realName = "Romain Paquet";
|
|
primary = true;
|
|
flavor = "migadu.com";
|
|
thunderbird.enable = config.programs.thunderbird.enable;
|
|
};
|
|
|
|
"admin@rpqt.fr" = {
|
|
address = "admin@rpqt.fr";
|
|
aliases = [ "postmaster@rpqt.fr" ];
|
|
realName = "Postmaster";
|
|
flavor = "migadu.com";
|
|
thunderbird.enable = config.programs.thunderbird.enable;
|
|
};
|
|
|
|
"romain.paquet@grenoble-inp.org" = {
|
|
address = "romain.paquet@grenoble-inp.org";
|
|
realName = "Romain Paquet";
|
|
userName = "romain.paquet@grenoble-inp.org";
|
|
imap = {
|
|
host = "imap.partage.renater.fr";
|
|
port = 993;
|
|
};
|
|
smtp = {
|
|
host = "smtp.partage.renater.fr";
|
|
port = 465;
|
|
};
|
|
thunderbird.enable = config.programs.thunderbird.enable;
|
|
};
|
|
|
|
"admin@turifer.dev" = {
|
|
address = "admin@turifer.dev";
|
|
aliases = [ "postmaster@turifer.dev" ];
|
|
realName = "Postmaster";
|
|
flavor = "migadu.com";
|
|
thunderbird.enable = config.programs.thunderbird.enable;
|
|
};
|
|
|
|
"romain@student.agh.edu.pl" = {
|
|
address = "romain@student.agh.edu.pl";
|
|
aliases = [ "382799@student.agh.edu.pl" ];
|
|
realName = "Romain Paquet";
|
|
userName = "romain@student.agh.edu.pl";
|
|
imap = {
|
|
host = "poczta.agh.edu.pl";
|
|
port = 993;
|
|
};
|
|
smtp = {
|
|
host = "poczta.agh.edu.pl";
|
|
port = 465;
|
|
};
|
|
thunderbird.enable = config.programs.thunderbird.enable;
|
|
};
|
|
|
|
"romain.pqt@gmail.com" = {
|
|
address = "romain.pqt@gmail.com";
|
|
realName = "Romain Paquet";
|
|
flavor = "gmail.com";
|
|
thunderbird.enable = config.programs.thunderbird.enable;
|
|
};
|
|
};
|
|
}
|