1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00
Files
niveum/lib/email.nix

15 lines
266 B
Nix
Raw Normal View History

2023-02-21 11:57:26 +01:00
{lib, ...}: {
2022-08-21 02:13:54 +02:00
cock = rec {
user = "2210@cock.li";
address = user;
imap = "mail.cock.li";
smtp = imap;
smtpSettings = smtp: "smtp://${smtp}:587";
folders = {
drafts = "Drafts";
sent = "Sent";
trash = "Trash";
};
};
}