Operating System - Linux
1753781 Members
7476 Online
108799 Solutions
New Discussion юеВ

Re: Linux outgoing mail only

 
SOLVED
Go to solution
MikeL_4
Super Advisor

Linux outgoing mail only

We have sendmail disabled on our servers, but still have a need to at least send mail messages to another mailhost.

How can mail be setup to send mail messages only from the servers to our mailhost server..

Thanks
5 REPLIES 5
Ivan Ferreira
Honored Contributor
Solution

Re: Linux outgoing mail only

The default sendmail configuration in Red Hat based systems does not allows incoming connection. If you don't use Red Hat, ensure that you have the following options in your MC configuration file:

DAEMON_OPTIONS(`Port=smtp,Addr=127.0.0.1, Name=MTA')dnl
Por que hacerlo dificil si es posible hacerlo facil? - Why do it the hard way, when you can do it the easy way?
MikeL_4
Super Advisor

Re: Linux outgoing mail only

We don't want any incoming mail messages, but we want to be able to send mail from a server to a mailserver that can accept and forward mail....

Ivan Ferreira
Honored Contributor

Re: Linux outgoing mail only

For more options please see:

http://forums12.itrc.hp.com/service/forums/questionanswer.do?admit=109447627+1208029809416+28353475&threadId=981253

Keep asigning points.

Have a nice day.
Por que hacerlo dificil si es posible hacerlo facil? - Why do it the hard way, when you can do it the easy way?
Steven E. Protter
Exalted Contributor

Re: Linux outgoing mail only

Shalom,

chkconfig sendmail off

Use cron to process outbound mail with the sendmail -a -C command to process mail build up in the queue.

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
MikeL_4
Super Advisor

Re: Linux outgoing mail only

Thanks