47 lines
1.2 KiB
Nix
47 lines
1.2 KiB
Nix
|
flake-inputs:
|
||
|
{pkgs, config, lib, ...}: {
|
||
|
imports = [flake-inputs.nixos-mailserver.nixosModule];
|
||
|
|
||
|
mailserver = {
|
||
|
enable = true;
|
||
|
debug = true; # TODO disable
|
||
|
fqdn = "mathebau.de";
|
||
|
sendingFqdn = "fb04184.mathematik.tu-darmstadt.de";
|
||
|
domains = [
|
||
|
"mathebau.de"
|
||
|
"lists.mathebau.de"
|
||
|
];
|
||
|
# forwards = #TODO
|
||
|
# loginAccounts = #TODO
|
||
|
# extraVirtualAliases = # TODO # only for local things (maybe don't use?)
|
||
|
certificateDomains = ["imap.mathebau.de"];
|
||
|
# certificateScheme = "manual"; # Do we need CERTS? We don't want to run a webmailer YES IMAP!!
|
||
|
# certificateFile = #TODO
|
||
|
# keyFile = #TODO
|
||
|
|
||
|
enableSubmission = false; # no starttls smtp
|
||
|
|
||
|
# Fun dovecot stuff :
|
||
|
|
||
|
# mailDirectory = "/var/vmail/"; # directory to store mail leave at default.
|
||
|
|
||
|
hierarchySeparator = "/"; # seperator for imap mailboxes from client view
|
||
|
|
||
|
# Caching of search indices
|
||
|
indexDir = "/var/lib/dovecot/indices";
|
||
|
fullTextSearch = {
|
||
|
enforced = "body"; # only brute force headers if no search index is available
|
||
|
};
|
||
|
lmtpSaveToDetailMailbox = "no";
|
||
|
# no starttls
|
||
|
enableImap = false;
|
||
|
|
||
|
|
||
|
# TODO checkout redis `config.services.redis.servers.rspamd.`
|
||
|
|
||
|
# TODO
|
||
|
# borgbackup = {
|
||
|
# };
|
||
|
};
|
||
|
}
|