D
Duane Morin
We're using the java mail api (get a session, get a transport, etc...)
so I'm not exactly in full control of the sequence of commands that
are getting sent to the servers. But I'm seeing a surprising number
of 503 messages that I did not think were errors. They are:
count | errormsg
-------+------------------------------------------------------
2 | 503 bad sequence of commands (specify mail first)
6 | 503 already got a from: - psmtp
6 | 503 error: nested mail command
11 | 503 originator already specified
28 | 503 sender already specified
64 | 503 5.0.0 need rcpt (recipient)
136 | 503 bad sequence of commands
313 | 503 5.5.0 sender already specified
Since I'm not getting these for every mail I send out, it seems like
it must involve a configuration on the receiver's side, no? But since
I'm not sending the raw SMTP commands I don't quite know what to do
about the problem. From my perspective, I'm sending out the same
sequence of commands to everybody and some are just responding with
these errors.
I'm also assuming that if I ran the exact same code against these
servers, I would get the exact same errors (i.e. it is not a temporary
problem).
Anybody got suggestions on things I can do from the javamail side of
things that might allow me to track it down? Just blindly turning on
a full-blown debugging output is not my best option since 99% of my
messages are going through just fine.
Duane
so I'm not exactly in full control of the sequence of commands that
are getting sent to the servers. But I'm seeing a surprising number
of 503 messages that I did not think were errors. They are:
count | errormsg
-------+------------------------------------------------------
2 | 503 bad sequence of commands (specify mail first)
6 | 503 already got a from: - psmtp
6 | 503 error: nested mail command
11 | 503 originator already specified
28 | 503 sender already specified
64 | 503 5.0.0 need rcpt (recipient)
136 | 503 bad sequence of commands
313 | 503 5.5.0 sender already specified
Since I'm not getting these for every mail I send out, it seems like
it must involve a configuration on the receiver's side, no? But since
I'm not sending the raw SMTP commands I don't quite know what to do
about the problem. From my perspective, I'm sending out the same
sequence of commands to everybody and some are just responding with
these errors.
I'm also assuming that if I ran the exact same code against these
servers, I would get the exact same errors (i.e. it is not a temporary
problem).
Anybody got suggestions on things I can do from the javamail side of
things that might allow me to track it down? Just blindly turning on
a full-blown debugging output is not my best option since 99% of my
messages are going through just fine.
Duane