summaryrefslogtreecommitdiffstats
path: root/network/opensmtpd/README
diff options
context:
space:
mode:
author Robby Workman <rworkman@slackbuilds.org>2013-12-11 11:29:49 +0100
committer Erik Hanson <erik@slackbuilds.org>2013-12-14 10:52:36 -0600
commitd91474d6154bbaf8222f3dc0b0eac93dc3b470ff (patch)
treeff58c192a93b77f3e258dc4407713ee5c7241620 /network/opensmtpd/README
parent1cf316049a3b52caa0b90d2732d0cae168513b90 (diff)
downloadslackbuilds-d91474d6154bbaf8222f3dc0b0eac93dc3b470ff.tar.gz
slackbuilds-d91474d6154bbaf8222f3dc0b0eac93dc3b470ff.tar.xz
network/opensmtpd: Updated for version 5.4.1p1.
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Diffstat (limited to 'network/opensmtpd/README')
-rw-r--r--network/opensmtpd/README24
1 files changed, 12 insertions, 12 deletions
diff --git a/network/opensmtpd/README b/network/opensmtpd/README
index da5475c9b1..2931722d49 100644
--- a/network/opensmtpd/README
+++ b/network/opensmtpd/README
@@ -1,19 +1,19 @@
-OpenSMTPD is a FREE implementation of the server-side SMTP protocol
-as defined by RFC 5321, with some additional standard extensions.
-It allows ordinary machines to exchange e-mails with other systems
+OpenSMTPD is a FREE implementation of the server-side SMTP protocol
+as defined by RFC 5321, with some additional standard extensions.
+It allows ordinary machines to exchange e-mails with other systems
speaking the SMTP protocol.
-You must have smtpd, smtpf, smtpl, and smtpq users on the system
-for privilege separation - something like this should suffice:
-useradd -u 270 -g 0 -r -s /bin/false -d /var/empty smtpd
-useradd -u 271 -g 0 -r -s /bin/false -d /var/empty smtpf
-useradd -u 272 -g 0 -r -s /bin/false -d /var/empty smtpl
-useradd -u 273 -g 0 -r -s /bin/false -d /var/empty smtpq
+You must have smtpd and smtpq users and groups on the system for
+privilege separation - something like this should suffice:
+ groupadd -g 270 smtpd
+ useradd -u 270 -g 270 -r -s /bin/false -d /var/empty smtpd
+ groupadd -g 271 smtpq
+ useradd -u 271 -g 271 -r -s /bin/false -d /var/empty smtpq
-You will want to add /etc/rc.d/rc.opensmtpd to rc.local so that it
+You will want to add /etc/rc.d/rc.opensmtpd to rc.local so that it
will start on boot (or perhaps consider symlinking rc.sendmail to
rc.opensmtpd).
This package conflicts with the stock sendmail package included in
-Slackware and overwrites some of its files if you do not remove it
-before.
+Slackware and overwrites some of its files, so remove the sendmail
+package before installing opensmtpd.