Many thanks,
That is what I was looking for, I just forgot that the data is encoded
(shame on me). Now things are working and I know what the double
colons are for.
Felix
Peter Velan wrote:
PV> am 2006-01-30 14:55 schrieb Felix Brack:
>> 14659 SMTP>> 334 VXNlciBOYW1l
PV> ^^^^^^^^^^^^
PV> base64-encoded = "Username" - trailing colon missing!
>> 14659 SMTP>> 334 UGFzc3dvcmQ=
PV> ^^^^^^^^^^^^
PV> base64-encoded = "Password" - trailing colon missing!
PV> But the colon is needed after "Username" and "Password" and you have to
PV> specify it here:
>> server_prompts = User Name : Password
PV> ^^^^^^^^^
PV> I don't believe you have "User Name" here (see above) ;-)
PV> server_prompts = Username:: : Password::
PV> ^^ ^^
PV> This doubled colons are needed!
PV> HTH
PV> Peter