connect postfix and opendkim
This commit is contained in:
parent
28a9074fa5
commit
ff70e44994
1 changed files with 9 additions and 3 deletions
12
postfix.nix
12
postfix.nix
|
@ -1,16 +1,22 @@
|
|||
{ pkgs, ... }:
|
||||
{ pkgs, config, ... }:
|
||||
|
||||
{
|
||||
services.postfix = {
|
||||
enable = true;
|
||||
enableSubmission = true;
|
||||
domain = "egirls.gay";
|
||||
domain = config.networking.fqdn;
|
||||
|
||||
config = { inet_interfaces = "loopback-only"; };
|
||||
config = {
|
||||
inet_interfaces = "loopback-only";
|
||||
smtpd_milters = config.services.opendkim.socket;
|
||||
non_smtpd_milters = "$smtpd_milters";
|
||||
milter_default_action = "accept";
|
||||
};
|
||||
};
|
||||
|
||||
services.opendkim = {
|
||||
enable = true;
|
||||
selector = "default";
|
||||
domains = "csl:${config.networking.fqdn}";
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue