diff options
Diffstat (limited to 'mail/exim-old/pkg-install')
-rw-r--r-- | mail/exim-old/pkg-install | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/mail/exim-old/pkg-install b/mail/exim-old/pkg-install index 7f20505..8581190 100644 --- a/mail/exim-old/pkg-install +++ b/mail/exim-old/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 |