diff options
author | Malfurious <m@lfurio.us> | 2024-07-09 15:53:34 -0400 |
---|---|---|
committer | Malfurious <m@lfurio.us> | 2024-07-09 15:53:34 -0400 |
commit | c8b6d74765064d6205f4d03b2051ee37b8943434 (patch) | |
tree | 9a673efd6e5d9cea95d40c98d5ff33eaba628731 /postfix | |
parent | 02da95230612c5ae7a31587b31eca7a8c9a05ce0 (diff) | |
parent | 5d6a5e19976923daccf0464f797b44b6266e6941 (diff) | |
download | mailnode-c8b6d74765064d6205f4d03b2051ee37b8943434.tar.gz mailnode-c8b6d74765064d6205f4d03b2051ee37b8943434.zip |
Merge branch 'dkim'
Install and configure OpenDKIM according to the instructions found in
the OpenDKIM readme: http://www.opendkim.org/opendkim-README
* dkim:
opendkim: Start milter service
opendkim: Disable syslog
opendkim: Configure postfix milter socket
opendkim: Generate keys / TXT record
opendkim: Configure signing parameters
opendkim: Add default config file
opendkim: Setup package and data volume
Diffstat (limited to 'postfix')
-rw-r--r-- | postfix/main.cf | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/postfix/main.cf b/postfix/main.cf index 7f701a8..6eb5ad2 100644 --- a/postfix/main.cf +++ b/postfix/main.cf @@ -53,6 +53,10 @@ virtual_uid_maps = static:2000 virtual_gid_maps = static:2000 virtual_mailbox_limit = 0 +# opendkim parameters +smtpd_milters = local:/opendkim/opendkim.sock +non_smtpd_milters = local:/opendkim/opendkim.sock + # Mlmmj mailing list parameters mlmmj_destination_recipient_limit = 1 transport_maps = hash:/etc/postfix/mltransport |