summaryrefslogtreecommitdiffstats
path: root/network/opensmtpd-filter-dkimsign/README
diff options
context:
space:
mode:
author Alexander Verbovetsky2023-04-07 19:07:32 +0200
committer Willy Sudiarto Raharjo2023-04-08 04:16:27 +0200
commitf67e527f581965a49588b04ef1df93a5c7beb867 (patch)
tree70297d50013dfe94d0b03fd3a4dae99b7d73651c /network/opensmtpd-filter-dkimsign/README
parent1befa24565ec2d21ee4a56b1983c1c5293ff5d0d (diff)
downloadslackbuilds-f67e527f581965a49588b04ef1df93a5c7beb867.tar.gz
network/opensmtpd-filter-dkimsign: Added (OpenSMTPD filter for DKIM)
Signed-off-by: bedlam <dave@slackbuilds.org> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'network/opensmtpd-filter-dkimsign/README')
-rw-r--r--network/opensmtpd-filter-dkimsign/README13
1 files changed, 13 insertions, 0 deletions
diff --git a/network/opensmtpd-filter-dkimsign/README b/network/opensmtpd-filter-dkimsign/README
new file mode 100644
index 0000000000..94f0e2330a
--- /dev/null
+++ b/network/opensmtpd-filter-dkimsign/README
@@ -0,0 +1,13 @@
+opensmtpd-filter-dkimsign adds a dkim signature to the email message.
+It supports the rsa and ed25519 signing algorithms.
+
+mandoc is needed only at build time.
+
+It is recommended to run filter-dkimsign as a non root user. For
+example, create a user and group "_dkimsign" (this name has come from
+an example in smtpd.conf(5)):
+
+ groupadd -g 376 _dkimsign
+ useradd -u 376 -g 376 -s /sbin/nologin -M _dkimsign
+
+The private key must be readable by this user.