145 lines
3.1 KiB
Nix
145 lines
3.1 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
sops,
|
|
...
|
|
}:
|
|
{
|
|
|
|
home-manager.users.mysaa.accounts.email.accounts = {
|
|
|
|
hadoly = {
|
|
realName = "Mysaa Java";
|
|
address = "mysaa@hadoly.fr";
|
|
imap = {
|
|
host = "imap.hadoly.fr";
|
|
port = 993;
|
|
tls.enable = true;
|
|
};
|
|
smtp = {
|
|
host = "smtp.hadoly.fr";
|
|
port = 465;
|
|
tls.enable = true;
|
|
};
|
|
primary = true;
|
|
userName = "mysaa@hadoly.fr";
|
|
passwordCommand = ''cat /run/secrets/pass/hadoly_password'';
|
|
};
|
|
|
|
ens = {
|
|
address = "samy.avrillon@ens-lyon.fr";
|
|
realName = "Samy Avrillon";
|
|
imap = {
|
|
host = "imaps.ens-lyon.fr";
|
|
port = 993;
|
|
tls.enable = true;
|
|
};
|
|
smtp = {
|
|
host = "smtp.ens-lyon.fr";
|
|
port = 587;
|
|
tls.enable = true;
|
|
tls.useStartTls = true;
|
|
};
|
|
userName = "savrillo";
|
|
};
|
|
|
|
personal = {
|
|
address = "samyavrillon@netcourrier.com";
|
|
realName = "Samy Avrillon";
|
|
imap = {
|
|
host = "mail.mailo.com";
|
|
port = 993;
|
|
tls.enable = true;
|
|
};
|
|
smtp = {
|
|
host = "mail.mailo.com";
|
|
port = 465;
|
|
tls.enable = true;
|
|
};
|
|
userName = "samyavrillon@netcourrier.com";
|
|
passwordCommand = ''cat /run/secrets/pass/netcourrier_password'';
|
|
};
|
|
|
|
junk = {
|
|
address = "qqnavrillon@netcourrier.com";
|
|
realName = "Qqn Avrillon";
|
|
imap = {
|
|
host = "mail.mailo.com";
|
|
port = 993;
|
|
tls.enable = true;
|
|
};
|
|
smtp = {
|
|
host = "mail.mailo.com";
|
|
port = 465;
|
|
tls.enable = true;
|
|
};
|
|
userName = "qqnavrillon@netcourrier.com";
|
|
};
|
|
|
|
google = {
|
|
address = "samsouleavr@gmail.com";
|
|
realName = "Samsoule Avr";
|
|
imap = {
|
|
host = "imap.gmail.com";
|
|
port = 993;
|
|
tls.enable = true;
|
|
};
|
|
smtp = {
|
|
host = "smtp.gmail.com";
|
|
port = 587;
|
|
tls.enable = true;
|
|
};
|
|
userName = "samsouleavr@gmail.com";
|
|
};
|
|
bernard = {
|
|
address = "bernard.lafayette63@gmail.com";
|
|
realName = "Bernard Lafayette";
|
|
imap = {
|
|
host = "imap.gmail.com";
|
|
port = 993;
|
|
tls.enable = true;
|
|
};
|
|
smtp = {
|
|
host = "imap.gmail.com";
|
|
port = 465;
|
|
tls.enable = true;
|
|
};
|
|
userName = "bernard.lafayette63@gmail.com";
|
|
};
|
|
dmesures = {
|
|
address = "samy.avrillon@dmesures.eu";
|
|
realName = "Samy pour Démesures";
|
|
imap = {
|
|
host = "mail.deady.space";
|
|
port = 993;
|
|
tls.enable = true;
|
|
};
|
|
smtp = {
|
|
host = "mail.deady.space";
|
|
port = 465;
|
|
tls.enable = true;
|
|
};
|
|
userName = "samy.avrillon@dmesures.eu";
|
|
};
|
|
ecloud = {
|
|
address = "mysaa@e.email";
|
|
realName = "Mysaa Java";
|
|
imap = {
|
|
host = "mail.ecloud.global";
|
|
port = 993;
|
|
tls.enable = true;
|
|
};
|
|
smtp = {
|
|
host = "mail.ecloud.global";
|
|
port = 587;
|
|
tls.enable = true;
|
|
tls.useStartTls = true;
|
|
};
|
|
userName = "mysaa@e.email";
|
|
};
|
|
|
|
};
|
|
|
|
}
|