Evie Litherland-Smith
a615762940
Move mail into accounts expression set Add vdirsyncer and initial config to sync to CalDAV and CardDAV TODO add to emacs
34 lines
681 B
Nix
34 lines
681 B
Nix
{ pkgs, hostName, ... }:
|
|
|
|
''
|
|
defaults
|
|
port 587
|
|
|
|
account protonmail
|
|
host 127.0.0.1
|
|
from e.litherlandsmith@proton.me
|
|
auth login
|
|
user e.litherlandsmith@proton.me
|
|
passwordeval "${pkgs.pass}/bin/pass show Mail/Proton/${hostName}"
|
|
port 1025
|
|
tls off
|
|
|
|
account icloud
|
|
host smtp.mail.me.com
|
|
from e.litherlandsmith@icloud.com
|
|
auth on
|
|
user e.litherlandsmith@icloud.com
|
|
passwordeval "${pkgs.pass}/bin/pass show Mail/iCloud/mbsync"
|
|
port 587
|
|
tls on
|
|
|
|
account ukaea
|
|
host 127.0.0.1
|
|
from evie.litherland-smith@ukaea.uk
|
|
auth login
|
|
user evie.litherland-smith@ukaea.uk
|
|
passwordeval "${pkgs.pass}/bin/pass show Mail/Outlook/ukaea"
|
|
port 1026
|
|
tls off
|
|
''
|