RDavid said:
Hello,
Using OL2003, I'm finding that often, but not always, when I cc an
address,
the cc copy of the email just never gets delivered! I use a pop3
server so
it *should* be working but it just doesn't. When I look at the .LOG
it
shows the email being sent but not the CC.
Should the CC be showing as a separate email in the log? Is there a
way to
unmask the RCPT details in the log to see that the CC is actually
being
sent?
Is this a known problem? Any suggestions on how I can troubleshoot an
email
that says it's sent and ends up in bit-heaven???
Any help would be a ton more than I know now...
Thanks,
Rich
You should see a RCPT-TO command for each recipient of your message.
For an example case where one recipient was in the To header and one
recipient was in the Cc header, your logfile should contain:
...
SMTP: [tx] MAIL FROM: <your_EmailAddress>
SMTP: <rx> 250 ok
SMTP: [tx] RCPT TO: <To_EmailAddress}>
SMTP: <rx> 250 ok
SMTP: [tx] RCPT TO: <Cc_EmailAddress>
SMTP: <rx> 250 ok
SMTP: [tx] DATA
...
The SMTP server doens't give a gnat's fart about where you specified the
recipient's e-mail address. Might have been in the To header, maybe in
the Cc header, or maybe in the Bcc header. Those fields (with the
exception of Bcc which the e-mail should NOT include) are part of the
*data* that gets sent within the DATA command. That is, they are NOT
used for routing the message. Those "headers" are part of the message
(i.e., there is no separation between headers and the body of the
message since they are both part of the data of the message). They are
only used to tell the e-mail client what e-mail addresses to compile in
its list of RCPT-TO commands that the e-mail client will send to the
SMTP server. If you had a 5 recipients in the To header, 3 in the Cc
header, and 4 in the Bcc header, there is still only one DATA command
for that message but it should be preceded by 12 RCPT-TO commands. For
1 message with X recipients, you should see X RCPT-TO commands followed
by 1 DATA command.
For further information on how SMTP works, read RFC 2821, "Simple Mail
Transfer Protocol" (ftp://ftp.rfc-editor.org/in-notes/rfc2821.txt). For
more information on the "headers" that are part of the data of an
e-mail, read RFC 2822, "Internet Message Format"
(ftp://ftp.rfc-editor.org/in-notes/rfc2822.txt).
--
_________________________________________________________________
******** Post replies to newsgroup - Share with others ********
Email: lh_811newsATyahooDOTcom and append "=NEWS=" to Subject.
_________________________________________________________________