As you can see in the example below with sendmail running it is the only thing listening on port 25. If I shut it down then nothing is listening, a restart of Scalix allows it to listen, but now if I start sendmail it no longer listens on port 25.
Code: Select all
[root@marigold ~]# lsof -i :25
COMMAND PID USER FD TYPE DEVICE SIZE NODE NAME
sendmail 3777 root 4u IPv4 17162 TCP *:smtp (LISTEN)
[root@marigold ~]# /etc/rc.d/init.d/sendmail stop
Shutting down sm-client: [ OK ]
Shutting down sendmail: [ OK ]
[root@marigold ~]# lsof -i :25
#[root@marigold ~]# /etc/rc.d/init.d/scalix restart
Stopping Scalix services (marigold): [ OK ]
Starting Scalix services (marigold): [ OK ]
[root@marigold ~]# lsof -i :25
COMMAND PID USER FD TYPE DEVICE SIZE NODE NAME
omsmtpd 6094 root 4u IPv4 46048 TCP marigold.mindsheet.com:smtp (LISTEN)
[root@marigold ~]# /etc/rc.d/init.d/sendmail start
Starting sendmail: [ OK ]
Starting sm-client: [ OK ]
[root@marigold ~]# lsof -i :25
COMMAND PID USER FD TYPE DEVICE SIZE NODE NAME
omsmtpd 6094 root 4u IPv4 46048 TCP marigold.mindsheet.com:smtp (LISTEN)
Can anyone suggest why these programs are not getting along with each other.
I also ran the following :
Code: Select all
[root@marigold ~]# omstat -a
PC Monitor Started NON-STOP 0
Directory Relay Server Started 10:50:51
Notification Server Started 10:50:51 0
Shared memory daemon Started NON-STOP
Notification Monitor Started NON-STOP
Session Monitor Started NON-STOP
Indexer Started NON-STOP
Stats Daemon Started NON-STOP
Container Access Monitor Started NON-STOP
Item Structure Server Stopped
Database Monitor Started 10:50:51
Licence Monitor Daemon Started NON-STOP
LDAP Daemon Started 10:50:51
Queue Manager Started NON-STOP
Item Delete Daemon Started NON-STOP
IMAP Server Daemon Started 10:50:51
SMTP Relay Partially Abor 10:50:51
Mime Browser Controller Started 10:50:51
Event Server Started 10:50:51
This seems to suggest a problem with SMTP relay. I edited var/opt/scalix/<ff>/s/sys/smtpd.cfg to turn on the Debug log, restarted the SMTP Relay and here is the entire log file recorded :
Code: Select all
SMTP Relay 11.0.2.17 started (3026): Fri, 13 Apr 2007 11:17:18 +0100 (BST) for SMTP
However omstat still reports SMTP Relay as Partially Abor.
Any help welcome.
Cheers.