View Single Post
  #2   (View Single Post)  
Old 5th May 2009
mwatkins mwatkins is offline
Flying Circus Master
 
Join Date: Mar 2009
Location: Vancouver
Posts: 23
Default

What if you were to create a user "test" with a password "testpass", as in the Postfix docs.

Code:
perl -MMIME::Base64 -e \
>     'print encode_base64("\0test\0testpass")'
AHRlc3QAdGVzdHBhc3M=
Try that and see if it works. Some Googling about referenced unfortunate character combos in password or user id being interpreted as octal numbers rather than ascii characters, which'll give you a hash which doesn't make sense. Start from known good.

Last edited by mwatkins; 5th May 2009 at 10:38 PM.
Reply With Quote