diff options
author | pav <pav@FreeBSD.org> | 2004-05-12 17:08:16 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2004-05-12 17:08:16 +0800 |
commit | 7d8905400e90d4c515a88dbefc8fcb1fe6d21b89 (patch) | |
tree | 5e68964d5f06b65bf5bc6d8075754221c52750d6 /mail/postfix28/pkg-install | |
parent | 444a8d2449452ab5b1f25d4361ec6008e1c69023 (diff) | |
download | freebsd-ports-gnome-7d8905400e90d4c515a88dbefc8fcb1fe6d21b89.tar.gz freebsd-ports-gnome-7d8905400e90d4c515a88dbefc8fcb1fe6d21b89.tar.zst freebsd-ports-gnome-7d8905400e90d4c515a88dbefc8fcb1fe6d21b89.zip |
- Update to 2.1.0
PR: ports/66215
Submitted by: Vivek Khera <vivek@khera.org> (maintainer)
Diffstat (limited to 'mail/postfix28/pkg-install')
-rw-r--r-- | mail/postfix28/pkg-install | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/mail/postfix28/pkg-install b/mail/postfix28/pkg-install index 44a1d6cbacc2..5765d42430c1 100644 --- a/mail/postfix28/pkg-install +++ b/mail/postfix28/pkg-install @@ -118,13 +118,14 @@ if [ x"$2" = xPRE-INSTALL ]; then fi if [ x"$2" = xPOST-INSTALL ]; then - CONF1="main.cf master.cf access aliases canonical pcre_table \ - regexp_table relocated transport virtual" + # CONF1 copied from Makefile. Keep consistent! + CONF1="main.cf master.cf access aliases canonical \ + header_checks relocated transport virtual" for file in $CONF1 do if [ ! -f ${PKG_PREFIX}/etc/postfix/$file ]; then - cp ${PKG_PREFIX}/etc/postfix/sample-$file ${PKG_PREFIX}/etc/postfix/$file + cp ${PKG_PREFIX}/etc/postfix/dist-$file ${PKG_PREFIX}/etc/postfix/$file fi done |