diff options
author | David Spencer <idlemoor@slackbuilds.org> | 2016-01-18 19:31:37 +0000 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-01-20 02:27:21 +0700 |
commit | 8395b8452665940e09465fab17a9c82af69fb8af (patch) | |
tree | c7e1185e0f30721298c55bb28426476bd4d0f103 /network/opendkim/README | |
parent | 9b826f2cb5cf183b56d1df827969211ccabbdca3 (diff) | |
download | slackbuilds-8395b8452665940e09465fab17a9c82af69fb8af.tar.gz |
network/opendkim: Renamed from network/OpenDKIM.
The source tarball and the built package already use "opendkim".
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'network/opendkim/README')
-rw-r--r-- | network/opendkim/README | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/network/opendkim/README b/network/opendkim/README new file mode 100644 index 0000000000..3fd62deafd --- /dev/null +++ b/network/opendkim/README @@ -0,0 +1,35 @@ +OpenDKIM is an open source implementation of the DKIM +(Domain Keys Identified Mail) sender authentication system proposed by +the E-mail Signing Technology Group (ESTG), now standardized by the IETF +(RFC6376). It also includes implementations of the RFC5617) Vouch By +Reference (VBR, RFC5518) proposed standard and the experimental +Authorized Third Party Signatures protocol (ATPS, RFC6541). + +The OpenDKIM package consists of a library that implements the DKIM +service and a milter-based filter application that can plug in to any +milter-aware MTA to provide that service to sufficiently recent +sendmail MTAs and other MTAs that support the milter protocol. + +A user and group are needed in order to run opendkim: + +groupadd -g 305 opendkim +useradd -r -u 305 -g opendkim -d /var/run/opendkim/ -s /sbin/nologin \ + -c "OpenDKIM Milter" opendkim + +You may specify alternate values if desired: + +DKUSER=nobody DKGROUP=nobody ./OpenDKIM.SlackBuild + +A sample config file has been placed in /etc/opendkim.conf + +The rc.opendkim script will automatically create keys for your machine's +domain name in /etc/opendkim/keys. Set AUTOCREATE_DKIM_KEYS=no there to +disable this behavior. + +Optional MySQL and Unbound support is provided. Note that MySQL +support requires OpenDBX installed. To enable: + +USE_MYSQL=yes ./OpenDKIM.SlackBuild +USE_UNBOUND=yes ./OpenDKIM.SlackBuild + +Unbound will require the unbound package which is available in SlackBuilds. |