forked from hacc/haccfiles
14 lines
334 B
Nix
14 lines
334 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
services.sympa = {
|
|
enable = true;
|
|
mta.type = "none";
|
|
lang = "de";
|
|
domains."lists.infra4future.de".webHost = "lists.infra4future.de";
|
|
domains."lists.hacc.space".webHost = "lists.hacc.space";
|
|
listMasters = [ "postmaster@hacc.space" ];
|
|
mainDomain = "lists.infra4future.de";
|
|
};
|
|
|
|
}
|