exim configuration error

joh2900

Verified User
Joined
Nov 13, 2003
Messages
48
When restarting exim i get:

Starting exim: 2004-06-04 14:08:41 Exim configuration error in line 520:
router majordomo_pipe: cannot find router driver "pipe"


any ideas?
 
Hello,

I'm assuming that you had Mailscanner setup at one point. If you've done that then your exim boot script has been changed to load a different exim.conf. Edit:

/etc/init.d/exim

and change the top bit of the file to look like:
Code:
#!/bin/sh
#
# exim      This shell script takes care of starting and stopping
#               exim.
#
# chkconfig: 2345 80 30
# description: Mail Transfer Agent

# Source function library.
. /etc/rc.d/init.d/functions

# Source networking configuration.
. /etc/sysconfig/network

EXIM_OPTS=
DAEMON=
QUEUE=
[b][ -f /etc/sysconfig/exim ] && . /etc/sysconfig/exim
[ "$DAEMON" = yes ] && EXIM_OPTS="$EXIM_OPTS -bd"
[ -n "$QUEUE" ] && EXIM_OPTS="$EXIM_OPTS -q$QUEUE"[/b]

# Check that networking is up.
[ ${NETWORKING} = "no" ] && exit 0
John
 
Back
Top