summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabian Groffen <grobian@gentoo.org>2011-12-04 10:38:17 +0000
committerFabian Groffen <grobian@gentoo.org>2011-12-04 10:38:17 +0000
commitccf8deaf7af21b021e1ff135580734f245a55791 (patch)
tree1887dcd9d403492859395c9993808c962a02bacc /mail-mta/exim
parentdrop opts from init script (diff)
downloadgentoo-2-ccf8deaf7af21b021e1ff135580734f245a55791.tar.gz
gentoo-2-ccf8deaf7af21b021e1ff135580734f245a55791.tar.bz2
gentoo-2-ccf8deaf7af21b021e1ff135580734f245a55791.zip
Make exim.conf hint based on the existence of such file already, add hint about running exim_tidydb as alternative to bug #120715
(Portage version: 2.2.01.19833-prefix/cvs/Darwin i386)
Diffstat (limited to 'mail-mta/exim')
-rw-r--r--mail-mta/exim/ChangeLog6
-rw-r--r--mail-mta/exim/exim-4.77.ebuild14
2 files changed, 15 insertions, 5 deletions
diff --git a/mail-mta/exim/ChangeLog b/mail-mta/exim/ChangeLog
index 5fa421fc489d..07ed9d447362 100644
--- a/mail-mta/exim/ChangeLog
+++ b/mail-mta/exim/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for mail-mta/exim
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-mta/exim/ChangeLog,v 1.212 2011/12/04 10:03:10 swegener Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-mta/exim/ChangeLog,v 1.213 2011/12/04 10:38:17 grobian Exp $
+
+ 04 Dec 2011; Fabian Groffen <grobian@gentoo.org> exim-4.77.ebuild:
+ Make exim.conf hint based on the existence of such file already, add hint
+ about running exim_tidydb as alternative to bug #120715
04 Dec 2011; Sven Wegener <swegener@gentoo.org> files/exim.rc6,
files/exim.rc7:
diff --git a/mail-mta/exim/exim-4.77.ebuild b/mail-mta/exim/exim-4.77.ebuild
index 411367c26dc5..d3cceaa4ebba 100644
--- a/mail-mta/exim/exim-4.77.ebuild
+++ b/mail-mta/exim/exim-4.77.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/mail-mta/exim/exim-4.77.ebuild,v 1.4 2011/11/29 18:21:19 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-mta/exim/exim-4.77.ebuild,v 1.5 2011/12/04 10:38:17 grobian Exp $
EAPI="3"
@@ -327,12 +327,18 @@ src_install () {
}
pkg_postinst() {
- einfo "${EROOT}etc/exim/system_filter.exim is a sample system_filter."
- einfo "${EROOT}etc/exim/auth_conf.sub contains the configuration sub for using smtp auth."
- einfo "Please create ${EROOT}etc/exim/exim.conf from ${EROOT}etc/exim/exim.conf.dist."
+ if [[ ! -f ${EROOT}etc/exim/exim.conf ]] ; then
+ einfo "${EROOT}etc/exim/system_filter.exim is a sample system_filter."
+ einfo "${EROOT}etc/exim/auth_conf.sub contains the configuration sub for using smtp auth."
+ einfo "Please create ${EROOT}etc/exim/exim.conf from ${EROOT}etc/exim/exim.conf.dist."
+ fi
if use dcc ; then
einfo "DCC support is experimental, you can find some limited"
einfo "documentation at the bottom of this prerelease message:"
einfo "http://article.gmane.org/gmane.mail.exim.devel/3579"
fi
+ einfo "Exim maintains some db files under its spool directory that need"
+ einfo "cleaning from time to time. (${EROOT}var/spool/exim/db)"
+ einfo "Please use the exim_tidydb tool as documented in the Exim manual:"
+ einfo "http://www.exim.org/exim-html-current/doc/html/spec_html/ch50.html#SECThindatmai"
}