diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2004-05-12 09:08:16 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2004-05-12 09:08:16 +0000 |
commit | 32b59b18f6999269de36c72f6beb2c4e68d7c13d (patch) | |
tree | 5fb6ffa70446f321f0b902e7b2918781e0daf4ba /mail/postfix23/pkg-install | |
parent | 620f4650a2392a570d4ea8176db6e3ff800843e1 (diff) | |
download | ports-32b59b18f6999269de36c72f6beb2c4e68d7c13d.tar.gz ports-32b59b18f6999269de36c72f6beb2c4e68d7c13d.zip |
Notes
Diffstat (limited to 'mail/postfix23/pkg-install')
-rw-r--r-- | mail/postfix23/pkg-install | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/mail/postfix23/pkg-install b/mail/postfix23/pkg-install index 44a1d6cbacc2..5765d42430c1 100644 --- a/mail/postfix23/pkg-install +++ b/mail/postfix23/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 |