diff options
Diffstat (limited to 'common/home/accounts')
| -rw-r--r-- | common/home/accounts/email.nix | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/common/home/accounts/email.nix b/common/home/accounts/email.nix index fd5f02c..da9be05 100644 --- a/common/home/accounts/email.nix +++ b/common/home/accounts/email.nix @@ -1,12 +1,19 @@ { ... }: { - default = { + uberspace = { userName = "nathan@n8.uber.space"; address = "nathan@nathanreiner.xyz"; primary = true; realName = "Nathan Reiner"; passwordCommand = "pass mail/nathan@nathanreiner.xyz"; + folders = { + drafts = "Drafts"; + inbox = "INBOX"; + sent = "Sent"; + trash = "Trash"; + }; + smtp = { host = "menkent.uberspace.de"; port = 465; |