HI We are having issues with mail delivery from our website as the exchange server is hosted with 3rd party , the suggestion is that we turn off the local mail delivery at the server , I cannot find this setting please can you help. I have set all what I could do . Can some one help . Cheers
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
I’m assuming you don’t know which MTA you’re using. On the command line, run
telnet localhost 25
. It should come back with a 220 header. This would generally tell you the MTA you’re using (hitcntl-]
and typeclose
to exit):service <name> stop
..
To disable its startup, look for a corresponding script in
/etc/init.d
and delete it.update-rc.d <name> remove
may work, too, but I understand update-rc.d enough yet to know.