Your message dated Wed, 16 Apr 2008 17:40:43 -0400
with message-id <[EMAIL PROTECTED]>
and subject line exim has been removed from Debian, closing #123184
has caused the Debian Bug report #123184,
regarding exim - config of init.d startup file
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)
--
123184: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=123184
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: exim
Version: 3.32-2
Severity: minor
The exim init.d startup script does not have a separate config file. This
means that, if you need to change something (like how often you queue-run)
you need to edit the /etc/init.d/exim startup script (which would otherwise
be static, and not need changing).
To use a config file for this (eg /etc/default/exim, as per various other
init.d rc scripts), here is the small patch that I used:
===================
--- exim.dist Wed Aug 15 00:13:30 2001
+++ exim Mon Dec 10 02:13:59 2001
@@ -17,11 +17,20 @@
test -x $DAEMON || exit 0
+EXIMSTART=/etc/default/exim
+
+if [ -f $EXIMSTART ]
+ then
+ . $EXIMSTART
+ else
+ QUEUERUN="30m"
+fi
+
case "$1" in
start)
echo -n "Starting MTA: "
start-stop-daemon --start --pidfile /var/run/exim/exim.pid \
- --exec $DAEMON -- -bd -q30m
+ --exec $DAEMON -- -bd -q${QUEUERUN}
echo "exim."
;;
stop)
@@ -35,7 +44,7 @@
start-stop-daemon --stop --pidfile /var/run/exim/exim.pid \
--oknodo --exec $DAEMON
start-stop-daemon --start --pidfile /var/run/exim/exim.pid \
- --exec $DAEMON -- -bd -q30m
+ --exec $DAEMON -- -bd -q${QUEUERUN}
echo "exim."
;;
reload|force-reload)
===================
Of course, this could probably be expanded to use other variables that may
get used to start/stop exim.
For what it's worth, this is using Debian 3.0 (woody).
Cheers
Ivan
--
--- End Message ---
--- Begin Message ---
Version: 3.36-18.2+rm
The exim package has been removed from Debian testing, unstable and
experimental, so I am now closing the bugs that were still opened
against it.
For more information about this package's removal, read
http://bugs.debian.org/420191 . That bug might give the reasons why
this package was removed, and suggestions of possible replacements.
Don't hesitate to reply to this mail if you have any question.
Thank you for your contribution to Debian.
Barry deFreese
--- End Message ---