All email notifications will not be sent if the answer from the smtp server
is segmented (Message from wireshark: [TCP segment of a reassembled PDU]).
The TCP Stream looks like this:
220 ******************************************HELO xyz.xyz.com
5)
502 5.5.2 Error: command not recognized
The HELO Command is send before the complete "220 ***..." from the server
is received (in my case, the last 4 bytes are missing) and then the server
(MS-Exchange) sends a 502 5.5.2 Error.
A correct communication protocol looks like this:
220 ********************************************
HELO xyz.xyz.com
250 myservice.com
MAIL FROM: <[email protected]>
250 2.1.0 Ok
RCPT TO: <[email protected]>
250 2.1.5 Ok
DATA
354 End data with <CR><LF>.<CR><LF>
From:<[email protected]>
To:<[email protected]>
Date: Tue, 19 Aug 2008 00:42:16 +0200
Subject: Too many processes running on ZABBIX Server: OFF
Too many processes running on ZABBIX Server: OFF
.
250 2.0.0 Ok: queued as 7B77F302835
QUIT
221 2.0.0 Bye
I added a patch which fixes the communication to the smtp server and reads
his messages until the end of line (0x0a) and not only the first
network-packet.
The problem is in 1.4.6 and 1.5.3 and the trunk.
The problem occurs when I switched from one hardware to an other one. And then, there were no email's sent anymore. The problem depends one the hardware (the os was equal on both machines).
Can you fix this?
is segmented (Message from wireshark: [TCP segment of a reassembled PDU]).
The TCP Stream looks like this:
220 ******************************************HELO xyz.xyz.com
5)
502 5.5.2 Error: command not recognized
The HELO Command is send before the complete "220 ***..." from the server
is received (in my case, the last 4 bytes are missing) and then the server
(MS-Exchange) sends a 502 5.5.2 Error.
A correct communication protocol looks like this:
220 ********************************************
HELO xyz.xyz.com
250 myservice.com
MAIL FROM: <[email protected]>
250 2.1.0 Ok
RCPT TO: <[email protected]>
250 2.1.5 Ok
DATA
354 End data with <CR><LF>.<CR><LF>
From:<[email protected]>
To:<[email protected]>
Date: Tue, 19 Aug 2008 00:42:16 +0200
Subject: Too many processes running on ZABBIX Server: OFF
Too many processes running on ZABBIX Server: OFF
.
250 2.0.0 Ok: queued as 7B77F302835
QUIT
221 2.0.0 Bye
I added a patch which fixes the communication to the smtp server and reads
his messages until the end of line (0x0a) and not only the first
network-packet.
The problem is in 1.4.6 and 1.5.3 and the trunk.
The problem occurs when I switched from one hardware to an other one. And then, there were no email's sent anymore. The problem depends one the hardware (the os was equal on both machines).
Can you fix this?

Comment