more stuff moved to options and some more consistency
This commit is contained in:
parent
6d9dbe38cb
commit
4ab970aea9
28 changed files with 394 additions and 298 deletions
|
@ -1,100 +0,0 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
}: let
|
||||
inherit (config) conf;
|
||||
inherit (lib) mkIf;
|
||||
in
|
||||
mkIf conf.mail.enable {
|
||||
services.nginx = {
|
||||
virtualHosts."chpu.eu" = {
|
||||
serverName = "chpu.eu";
|
||||
serverAliases = [
|
||||
"mail.chpu.eu"
|
||||
"webadmin.chpu.eu"
|
||||
"autoconfig.chpu.eu"
|
||||
"autodiscover.chpu.eu"
|
||||
];
|
||||
forceSSL = true;
|
||||
useACMEHost = "chpu.eu";
|
||||
locations = {
|
||||
"/" = {
|
||||
proxyPass = "http://localhost:9090";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
users.users."stalwart-mail".extraGroups = ["nginx"];
|
||||
|
||||
services.stalwart-mail = {
|
||||
enable = true;
|
||||
openFirewall = true;
|
||||
settings = {
|
||||
config.local-keys = [
|
||||
"certificate.default.cert"
|
||||
"certificate.default.private-key"
|
||||
"authentication.fallback-admin.secret"
|
||||
];
|
||||
server = {
|
||||
hostname = "chpu.eu";
|
||||
tls = {
|
||||
enable = true;
|
||||
implicit = true;
|
||||
};
|
||||
listener = {
|
||||
smtp = {
|
||||
protocol = "smtp";
|
||||
bind = ["[::]:25"];
|
||||
};
|
||||
imaps = {
|
||||
protocol = "imap";
|
||||
bind = ["[::]:993"];
|
||||
};
|
||||
submissions = {
|
||||
protocol = "smtp";
|
||||
bind = ["[::]:465"];
|
||||
};
|
||||
management = {
|
||||
protocol = "http";
|
||||
bind = "127.0.0.1:9090";
|
||||
};
|
||||
};
|
||||
};
|
||||
lookup.default = {
|
||||
hostname = "chpu.eu";
|
||||
domain = "chpu.eu";
|
||||
};
|
||||
certificate.default = {
|
||||
default = true;
|
||||
cert = "%{file:/var/lib/acme/chpu.eu/cert.pem}%";
|
||||
private-key = "%{file:/var/lib/acme/chpu.eu/key.pem}%";
|
||||
};
|
||||
storage = {
|
||||
data = "db";
|
||||
fts = "db";
|
||||
block = "db";
|
||||
lookup = "db";
|
||||
directory = "internal";
|
||||
};
|
||||
directory."internal" = {
|
||||
type = "internal";
|
||||
store = "db";
|
||||
};
|
||||
tracer."stdout" = {
|
||||
type = "stdout";
|
||||
level = "info";
|
||||
ansi = false;
|
||||
enable = true;
|
||||
};
|
||||
session.rcpt = {
|
||||
directory = "'internal'";
|
||||
};
|
||||
authentication.fallback-admin = {
|
||||
user = "admin";
|
||||
secret = "%{file:/var/lib/stalwart-mail/secret/admin}%";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue