diff options
author | Sheldon Hearn <sheldonh@FreeBSD.org> | 2001-07-11 11:22:32 +0000 |
---|---|---|
committer | Sheldon Hearn <sheldonh@FreeBSD.org> | 2001-07-11 11:22:32 +0000 |
commit | 30e56f6fb643321bf80d2eee4f6e66c77776d6bb (patch) | |
tree | ebdf6297ca16a4fac752af6d45a1056c2e4db4ed /mail/exim/pkg-install | |
parent | 5d339c74251aac4a76603974002f1e4c0639c1dd (diff) | |
download | ports-30e56f6fb643321bf80d2eee4f6e66c77776d6bb.tar.gz ports-30e56f6fb643321bf80d2eee4f6e66c77776d6bb.zip |
Notes
Diffstat (limited to 'mail/exim/pkg-install')
-rw-r--r-- | mail/exim/pkg-install | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/mail/exim/pkg-install b/mail/exim/pkg-install index 7f20505f46ef..85811906091a 100644 --- a/mail/exim/pkg-install +++ b/mail/exim/pkg-install @@ -1,8 +1,10 @@ #!/bin/sh # # Since FreeBSD does not supply a user for running an MTA in a sandbox -# by default, use the traditional sendmail sandbox user, sendmail, -# adding it if it does not exist. +# by default, use user 'exim', adding it if it does not exist. Even +# if FreeBSD supplied an MTA user, it's neglected to do so for so long +# that every sandboxed MTA under the sun uses its own user, so user +# 'exim' should probably be used forever. # # Modern FreeBSD systems already have a group mail. # @@ -11,7 +13,7 @@ PKG_PREFIX=${PKG_PREFIX:=/usr/local} -user=sendmail +user=exim group=mail if [ "$2" = "PRE-INSTALL" ]; then |