opendkim: DKIM signing and verifying emails
The OpenDKIM package provides a service for signing and verifying
DomainKeys Identified Mail (DKIM) signatures. OpenDKIM consists of
a library that implements the DKIM service and a milter-based
filter application that can plug in to any milter-aware MTA, such
as Postfix or Sendmail, to provide that service to sufficiently
recent sendmail MTAs and other MTAs that support the milter
protocol.
This submission provides three new packages:
- libopendkim, a library for signing and verifying DKIM signatures,
- opendkim, the server application and the genkey script,
- opendkim-tools, a set of tools for configuring and testing OpenDKIM.
While at it, add PKG_BUILD_DEPENDS statement to sendmail's Makefile.
Travis CI buildbot sometimes fails to compile libopenssl before
starting to build sendmail. Since sendmail depends on libopenssl, the
whole Travis CI build process fails. Setting PKG_BUILD_DEPENDS
to "openssl", the directory name of libopenssl's Makefile, fixes the
problem.
Signed-off-by: Val Kulkov <val.kulkov@gmail.com>
8 years ago |
|
- # The default location of the OpenDKIM configuration file is
- # /etc/opendkim.conf
-
- # Enable to obtain very detailed logging about the logic behind
- # the filter's decision to either sign a message or verify it
- #LogWhy yes
-
- # Log to syslog
- Syslog yes
- # Log additional entries indicating successful signing or
- # verification of messages
- SyslogSuccess yes
-
- # the canonicalization method(s) to be used when signing messages
- Canonicalization relaxed/relaxed
-
- # A set of domains whose mail should be signed by this filter.
- # Mail from other domains will be verified rather than being signed
- Domain example.com
-
- # Defines the name of the selector to be used when signing messages
- Selector default
- KeyFile /etc/openkim/example.com.private
-
- UserID opendkim:opendkim
- Socket inet:8891@localhost
-
- # if using a UNIX socket, make sure that /var/run/opendkim is writable
- # to the opendkim user
- #Socket local:/var/run/opendkim/opendkim
-
- ReportAddress postmaster@example.com
- SendReports yes
-
- ## Hosts to sign email for - 127.0.0.1 is default
- ## See the OPERATION section of opendkim(8) for more information
- #
- # InternalHosts 192.168.0.0/16, 10.0.0.0/8, 172.16.0.0/12
-
- ## For secondary mailservers - indicates not to sign or verify messages
- ## from these hosts
- #
- # PeerList X.X.X.X
-
- PidFile /var/run/opendkim.pid
|