Re: [exim] Problems with AUTH LOGIN

Páxina inicial
Borrar esta mensaxe
Responder a esta mensaxe
Autor: Peter Velan
Data:  
Para: exim-users
Asunto: Re: [exim] Problems with AUTH LOGIN
am 2006-01-30 14:55 schrieb Felix Brack:

> 14659 SMTP>> 334 VXNlciBOYW1l

                   ^^^^^^^^^^^^
base64-encoded = "Username" - trailing colon missing!


> 14659 SMTP>> 334 UGFzc3dvcmQ=

                   ^^^^^^^^^^^^
base64-encoded = "Password" - trailing colon missing!


But the colon is needed after "Username" and "Password" and you have to
specify it here:

> server_prompts = User Name : Password

                     ^^^^^^^^^
I don't believe you have "User Name" here (see above) ;-)


server_prompts = Username:: : Password::
                         ^^           ^^
This doubled colons are needed!


HTH
Peter