[cc lang="bash"]
\$ perl -MMIME::Base64 -e 'print
encode_base64("\000test\@jokeru.ro\000password")'
AHRlc3RAam9rZXJ1LnJvAHBhc3N3b3Jk
\$ telnet mail.jokeru.ro 25 \<- no security
or
\$ openssl s_client -crlf -connect mail.jokeru.ro:25 -quiet \<- SSL
or
\$ openssl s_client -crlf -starttls smtp -connect mail.jokeru.ro:25
-quiet \<- TLS
EHLO testing
AUTH PLAIN AHRlc3RAam9rZXJ1LnJvAHBhc3N3b3Jk
[/cc]