diff options
author | sheldonh <sheldonh@FreeBSD.org> | 2003-09-29 19:42:45 +0800 |
---|---|---|
committer | sheldonh <sheldonh@FreeBSD.org> | 2003-09-29 19:42:45 +0800 |
commit | d9513f2807d8d35e36ed8c76cf9e86e1da221745 (patch) | |
tree | 0aa93f3dd7b12b0d773f900f08145fe242f058f0 /mail/exim/pkg-install | |
parent | 4d10d7c3245b53c757c0730f61a04e5205a1ade5 (diff) | |
download | freebsd-ports-gnome-d9513f2807d8d35e36ed8c76cf9e86e1da221745.tar.gz freebsd-ports-gnome-d9513f2807d8d35e36ed8c76cf9e86e1da221745.tar.zst freebsd-ports-gnome-d9513f2807d8d35e36ed8c76cf9e86e1da221745.zip |
WARNING: See caution at the end of this bullet list.
* Update to exim-4.24 (bugfix release).
* Wishlist patch for "eqi" incorporated.
* Mark exim-{ldap2,mysql,postgresql,} as conflicting.
* Substitute PORTREVISION for build number so that the version string
hints at which version of the port the binary comes from.
* Clean up POST-INSTALL-NOTES.
* Install example scripts, especially upgrade converters, now that exim-old
has been retired.
* Enable DNSDB-style lookup support by default; it can be disabled with
WITHOUT_DNSDB.
* Simplify LDAP support, using various versions of OpenLDAP only.
The old WITH_OPENLDAP[0-9][0-9] options are now invalid; use
WITH_OPENLDAP and/or WITH_OPENLDAP_VER instead.
* Retired exim-ldap port; OpenLDAP 1.2 is ancient.
* Allow the operator to specify preferred MySql version with
WITH_MYSQL_VER.
* Allow the operator to specify preferred Berkeley DB version with
WITH_BDB_VER; the old DB_LIB_VERSION option is now invalid.
* Respect bsd.ports.mk defaults of MySQL 4.0 and OpenLDAP 2.1.
* Allow the operator to specify default charset for header conversions,
with WITH_DEFAULT_CHARSET.
* Limit configure files to ${PREFIX}/etc/exim by default for security
reasons; the operator may override this behaviour with
WITHOUT_ALT_CONFIG_PREFIX.
!!!WARNING!!!
Some of these changes may cause trouble for folks who have a bunch of
exim port tweaks in make.conf and pkgtools.conf. The ALT_CONFIG_PREFIX
change may break existing deployments.
PR: ports/57098
Submitted by: Oliver Eikemeier <eikemeier@fillmore-labs.com>
PR: ports/56117
Submitted by: Pat Lashley <patl+freebsd@volant.org>
PR: ports/57099
Reported by: Mark Foster <mark@foster.cc>
Diffstat (limited to 'mail/exim/pkg-install')
-rw-r--r-- | mail/exim/pkg-install | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/exim/pkg-install b/mail/exim/pkg-install index d9f99317e393..843fc2fc6b1d 100644 --- a/mail/exim/pkg-install +++ b/mail/exim/pkg-install @@ -30,7 +30,7 @@ fi if [ "$2" = "POST-INSTALL" ]; then cf=$PKG_PREFIX/etc/exim/configure if [ -e $cf ]; then - if grep -q '^[^#]*hostlist.*relay_from_hosts.*=.*127.0.0.1' $cf + if /usr/bin/grep -q '^[^#]*hostlist.*relay_from_hosts.*=.*127.0.0.1' $cf then echo echo "============================================================" @@ -46,7 +46,7 @@ if [ "$2" = "POST-INSTALL" ]; then echo "============================================================" fi fi - if ! grep -qs "^exim_enable" /etc/rc.conf + if ! /usr/bin/grep -qs "^exim_enable" /etc/rc.conf then echo echo "Don't forget to add 'exim_enable=\"YES\"' to rc.conf(5)" |