[root@server mail]# netstat -vatn
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address Foreign Address State
tcp 0 0 127.0.0.1:25 0.0.0.0:* LISTEN
Depois de analisar vários arquivos, descobri como corrigi-lo:
Primeiro você precisa editar o /etc/mail/sendmail.mc, encontrar a seguinte seção:
dnl This changes sendmail to only listen on the loopback device 127.0.0.1
dnl and not on any other network devices. Comment this out if you want
dnl to accept email over the network.
DAEMON_OPTIONS('Port=smtp,Addr=127.0.0.1, Name=MTA')
Você precisará comentar o mesmo com DAEMON_OPTIONS, usando "dnl" no início da linha:
dnl This changes sendmail to only listen on the loopback device 127.0.0.1
dnl and not on any other network devices. Comment this out if you want
dnl to accept email over the network.
dnl DAEMON_OPTIONS('Port=smtp,Addr=127.0.0.1, Name=MTA')
Você precisará reconstruir o arquivo:
m4 /etc/mail/sendmail.mc > /etc/sendmail.cf
Depois de ter feito isso, o sendmail escutará em todos os endereços IP do sistema:
[root@server mail]# netstat -vatn
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address Foreign Address State
tcp 0 0 0.0.0.0:25 0.0.0.0:* LISTEN
E você pode receber e-mails de outras pessoas e enviar e-mails de seus clientes.