Re: [exim] Re: SMTP failed with fully qualified user id

Startseite
Nachricht löschen
Nachricht beantworten
Autor: Oliver Eikemeier
Datum:  
To: sam wun
CC: Exim User's Mailing List
Betreff: Re: [exim] Re: SMTP failed with fully qualified user id
sam wun wrote:

> Thanks very much for the help. Yes. the imtest works, smtptest failed.
> Here is the the screen dump:


Could you produce a log with `> logfile.log' instead of a screen dump?

> # smtptest -v -a buddy@??? 
> 127.0.0.1                                S: 220 at.mydomain.com ESMTP 
> Exim 4.43 Sun, 24 Oct 2004 21:04:37 +0800
> C: EHLO example.com
> S: 250-at.mydomain.com Hello example.com [127.0.0.1]
>                                               ^^^^^^^^^^^ I dont know 
> why I got this.
> S: 250-SIZE 52428800
> S: 250-PIPELINING
> S: 250-AUTH LOGIN PLAIN
> S: 250 HELP
> C: AUTH LOGIN
> S: 334 VXNlck5hbWU6
> Please enter your password:
> C: YnDkZGlABXV0aHRlYy5bb20=
> S: 334 UGFsfzc3fgdvcmQ6

          ^^^^^^^^^^^^^^^^ This should be UGFzc3dvcmQ6

> C: MjAyOEFXsfNdfahbXd1bg==

      ^^^^^^^^^^^^^^^^^^^^^^^ This isn't valid base64

> S: 535 Incorrect authentication data
> Authentication failed. generic failure
> Security strength factor: 0
> ^CC: QUIT
> Connection closed.


Something is wrong here, I suspect it is your screen dump. Also there is
no log of the imtest utility.

>> A log of smtptest and a sample `exim -d+all -bh 127.0.0.1` session
>> would be useful (CAUTION: will contain your password)
>>
>>
> Here is part of the log from executing the command after completed the
> smtptest:
> # exim -d+all -bh 127.0.0.1


This part is missing the interesting information. Try `exim -d-all+auth
-bh 127.0.0.1 2> test.log'

-Oliver