2019-05-10 23:21:28 +02:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
# Import some configuration as they are too long to be easily readable here
|
|
|
|
imports = [
|
2021-08-12 18:32:28 +02:00
|
|
|
#./dovecot.nix
|
|
|
|
#./postfix.nix
|
|
|
|
#./postfixadmin.nix
|
|
|
|
#./roundcube.nix
|
|
|
|
#./rspamd.nix
|
2022-01-02 19:51:59 +01:00
|
|
|
(import (import ./nix/sources.nix).nixos-mailserver)
|
2019-05-10 23:21:28 +02:00
|
|
|
];
|
2021-08-12 18:32:28 +02:00
|
|
|
networking.domain = "hamburg.freifunk.net";
|
|
|
|
services.mymailserver = {
|
|
|
|
enable = true;
|
2021-08-23 21:16:52 +02:00
|
|
|
logging = false;
|
2021-08-12 18:39:56 +02:00
|
|
|
adminAddress = "postmaster@mail.hamburg.freifunk.net";
|
2021-08-12 18:32:28 +02:00
|
|
|
mailFQDN = "mail2.hamburg.freifunk.net";
|
|
|
|
};
|
2019-05-10 23:21:28 +02:00
|
|
|
}
|