Bonjour,
Avec un serveur Fedora Core 3, j'ai installé postfix (2.1.5) et l'antivirus de TrendMicro InterScanVirusWall SMB 5.0.
Sur ce serveur, les mails entrant sur le port 25 passe au travers de ISVW puis sont redirigés vers postfix.
Quand je test cette architecture, on peut voir dans le /var/lob/maillog du serveur ISVW :
Apr 27 10:42:08 serveurlinux sendmail[22011]: k3R8g8OH022011: from=root, size=43, class=0, nrcpts=1, msgid=<200604270842.k3R8g8OH022011@localhost.localdomain>, relay=root@localhost
Apr 27 10:42:08 serveurlinux postfix/smtpd[22012]: connect from localhost.localdomain[127.0.0.1]
Apr 27 10:42:08 serveurlinux postfix/smtpd[22012]: 8DE2038F14A: client=localhost.localdomain[127.0.0.1]
Apr 27 10:42:08 serveurlinux postfix/cleanup[22015]: 8DE2038F14A: message-id=<200604270842.k3R8g8OH022011@localhost.localdomain>
Apr 27 10:42:08 serveurlinux postfix/qmgr[22006]: 8DE2038F14A: from=<root@localhost.localdomain>, size=568, nrcpt=1 (queue active)
Apr 27 10:42:08 serveurlinux sendmail[22011]: k3R8g8OH022011: to=martiald@mondomaine.fr, ctladdr=root (0/0), delay=00:00:00, xdelay=00:00:00, mailer=relay, pri=30043, relay=[127.0.0.1] [127.0.0.1], dsn=2.0.0, stat=Sent (Ok: queued as 8DE2038F14A)
Apr 27 10:42:08 serveurlinux postfix/smtpd[22012]: disconnect from localhost.localdomain[127.0.0.1]
Jusque la tout va bien.
Apr 27 10:42:08 serveurlinux postfix/master[22004]: warning: process /usr/libexec/postfix/smtpd pid 22017 killed by signal 11
Apr 27 10:42:08 serveurlinux postfix/master[22004]: warning: /usr/libexec/postfix/smtpd: bad command startup -- throttling
Apr 27 10:42:08 serveurlinux postfix/smtp[22016]: connect to 127.0.0.1[127.0.0.1]: server dropped connection without sending the initial SMTP greeting (port 10025)
Apr 27 10:42:08 serveurlinux postfix/smtp[22016]: 8DE2038F14A: to=<martiald@localhost.localdomain>, relay=none, delay=0, status=deferred (connect to 127.0.0.1[127.0.0.1]: server dropped connection without sending the initial SMTP greeting)
Le port 10025 est lié à la config de l'antivirus.
Il apparait au niveau du main.cf de postfix :
content_filter = imss:[127.0.0.1]:10025
et dans mon master.cf:
# InterScan_Viruswall_setup_addition_SiGnAtUrE begins #
#
#25 inet n - n - - smtpd
imss unix - - n - - smtp
-o disable_dns_lookup=yes
-o smtp_connect_timeout=$imss_connect_timeout
-o smtp_data_done_timeout=$imss_timeout
127.0.0.1:10026 inet n - - - - smtpd
-o content_filter=
-o smtpd_timeout=$imss_timeout
-o local_recipient_maps=
-o relay_recipient_maps=
-o myhostname=localhost.$mydomain
-o smtpd_helo_restrictions=
-o smtpd_client_restrictions=
-o smtpd_sender_restrictions=
-o smtpd_recipient_restrictions=permit_mynetworks,reject
-o mynetworks=192.9.200.0/28
# InterScan_Viruswall_setup_addition_SiGnAtUrE ends #
Je pense que le probléme vient du port 10025 mourtant quand je fait netstat et telnet j'obtient ceci:
[root@serveurlinux postfix]# netstat -an | grep LIS | grep 10025
tcp 0 0 127.0.0.1:10025 0.0.0.0:* LISTEN
[root@serveurlinux postfix]# telnet 127.0.0.1 10025
Trying 127.0.0.1...
Connected to localhost.localdomain (127.0.0.1).
Escape character is '^]'.
Connection closed by foreign host.
Quelqu'un peut il m'aider ? Je ne sais plus quoi faire.
Merci d'avance ...