MikeR wrote:
> Mike Easter wrote:
>> Tb has a design flaw (IMO) in which if there is some kind of
>> 'problem' (even temporary/transient) with the transacting between
>> Tb and the server, the Tb user/pass configuration is 'jettisoned'
>> (or hereafter ignored or whatever).
>
> This one has dragged on for a loooooong time. It would be helpful (but
> not a totally satisfactory fix) if TB would at least tell you which
> account it was that it trashed.
I handle my news and mail accounts 'one at a time', and I certainly
would if I were having trouble.
For my news, I uncheck 'check for new messages at startup' and 'check
for new messages every xx minutes'.
It is not clear to me whether you are still struggling with diagnosing
an smtp transacting problem with your hostgator domain mail and Tb.
There are a couple of different ways I test the success of my
transactions with a mailserver (or a news server); either I use another
agent such as OE or I use telnet. I like the fact that OE is much much
simpler to create a log than it is with Tb. In OE all you have to do is
put a check mark in the maintenance section and it starts logging.
The advantage of using OE over telnet is that it will handle the b64
encoding of the user/pass for you. If you telnet you need to use a tool
to do the encoding. The way I do it is to have a text editor open as
another task and create a couple of lines with the b64'd user and b64'd
pass. Then I open a telnet session, say EHLO, then say auth login, then
the mail server sez 334 VXNlcm5hbWU6 which means Username: in b64 and I
paste in my b64 user, then the server sez 334 UGFzc3dvcmQ6 which means
Password: and I paste in my pass.
The session looks like this:
telnet> open
smtpauth.earthlink.net 587
Trying 207.69.189.208...
Connected to
smtpauth.earthlink.net.
Escape character is '^]'.
220-elasmtp-masked.atl.sa.earthlink.net ESMTP Exim 4.67 #1 Mon, 23 Jan
2012 00:57:39 -0500
220-NO UCE. EarthLink does not authorize the use of its computers or
network
220 equipment to accept, transmit, or distribute unsolicited e-mail.
EHLO <munge machine name>
250-elasmtp-masked.atl.sa.earthlink.net Hello <munge> [munge IP address]
250-SIZE 14680064
250-PIPELINING
250-AUTH PLAIN LOGIN CRAM-MD5
250-STARTTLS
250 HELP
AUTH LOGIN
334 VXNlcm5hbWU6
<munged b64 username>
334 UGFzc3dvcmQ6
<munged b64 pass>
235 Authentication succeeded
QUIT
221
elasmtp-masked.atl.sa.earthlink.net closing connection
Connection closed by foreign host.
The OE log of the same thing (including sending a mail) looks like this:
Outlook Express 6.00.2900.5512 (xpsp.080413-2105)
SMTP Log started at 01/22/2012 09:09:10
SMTP: 09:09:10 [rx]
220-elasmtp-mealy.atl.sa.earthlink.net ESMTP Exim
4.67 #1 Sun, 22 Jan 2012 12:09:10 -0500
SMTP: 09:09:10 [rx] 220-NO UCE. EarthLink does not authorize the use
of its computers or network
SMTP: 09:09:10 [rx] 220 equipment to accept, transmit, or distribute
unsolicited e-mail.
SMTP: 09:09:10 [tx] EHLO <munge machinename>
SMTP: 09:09:10 [rx]
250-elasmtp-mealy.atl.sa.earthlink.net Hello munge
[munge IP add]
SMTP: 09:09:10 [rx] 250-SIZE 14680064
SMTP: 09:09:10 [rx] 250-PIPELINING
SMTP: 09:09:10 [rx] 250-AUTH PLAIN LOGIN CRAM-MD5
SMTP: 09:09:10 [rx] 250-STARTTLS
SMTP: 09:09:10 [rx] 250 HELP
SMTP: 09:09:10 [tx] AUTH LOGIN
SMTP: 09:09:10 [rx] 334 VXNlcm5hbWU6
SMTP: 09:09:10 [tx] <munge b64 user>
SMTP: 09:09:11 [rx] 334 UGFzc3dvcmQ6
SMTP: 09:09:11 [tx] <munge b64 pass>
SMTP: 09:09:11 [rx] 235 Authentication succeeded
SMTP: 09:09:11 [tx] MAIL FROM: munged addy
SMTP: 09:09:11 [rx] 250 OK
SMTP: 09:09:11 [tx] RCPT TO: munged addy
SMTP: 09:09:11 [rx] 250 Accepted
SMTP: 09:09:11 [tx] DATA
SMTP: 09:09:11 [rx] 354 Enter message, ending with "." on a line by itself
SMTP: 09:09:11 [tx]
.
SMTP: 09:09:11 [rx] 250 OK id=1Rp0uk-0005Bi-V2
SMTP: 09:09:11 [tx] QUIT
SMTP: 09:09:11 [rx] 221
elasmtp-mealy.atl.sa.earthlink.net closing
connection
--
Mike Easter