Zdravím,
rád bych se zeptal, jak na aktuálním Raspbianu 8 rozběhat sSMTP tak, aby mi vzalo heslo se znakem "#" uvnitř. Zatím jenom skončí s tím, že nepošle heslo a tím přenos zkolabuje. Gůglil jsem dlouho, je to známý bug, ale asi ještě neopravený a žádný workaround (uvozovky, escape pomocí "\") nefunguje. Je tedy jiné řešení než si stáhnout zdrojáky, aplikovat nějaký patch a zkompilovat?
Díky
/etc/ssmtp/ssmtp.conf
#
# Config file for sSMTP sendmail
#
# The person who gets all mail for userids < 1000
# Make this empty to disable rewriting.
root=<email>
# The place where the mail goes. The actual machine name is required no
# MX records are consulted. Commonly mailhosts are named mail.domain.com
mailhub=smtp.seznam.cz:465
# Where will the mail seem to come from?
rewriteDomain=seznam.cz
# The full hostname
hostname=localhost
# Are users allowed to set their own From: address?
# YES - Allow the user to specify their own From: address
# NO - Use the system generated From: address
FromLineOverride=YES
UseTLS=YES
AuthUser=<email>
AuthPass=<heslo>
# ssmtp -v <můj email>
test
[<-] 220 2.0.0 Seznam SMTP server waiting for your HELO/EHLO
[->] EHLO localhost
[<-] 250 X-SZNEXTENSIONS
[->] AUTH LOGIN
[<-] 334 VXNlcm5hbWU6
[->] <base64 mého emailu>
[<-] 334 UGFzc3dvcmQ6
[<-] 535 5.7.1 Incorrect authentication data
ssmtp: Authorization failed (535 5.7.1 Incorrect authentication data)
EDIT:# ssmtp -V
sSMTP 2.64 (Not sendmail at all)