2016-03-31 5 views
8

Comme le disent les balises title/tags, je lance sSMTP sous Linux pour un serveur PHP.sSMTP ne fonctionne plus - 'Réponse non valide: 501 5.5.4 Argument HELO/EHLO [email protected] invalide, fermeture de la connexion.'

Chaque fois que je tente d'envoyer un e-mail, je reçois ces erreurs (qui ne se présentent pas en PHP, uniquement dans les journaux/« sudo service état sendmail » ou «sudo service statut de php5-FPM)

de /var/log/mail.log

Mar 31 03:34:34 ip-172-31-22-38 sSMTP[2004]: Creating SSL connection to host 
Mar 31 03:34:34 ip-172-31-22-38 sSMTP[2004]: Invalid response: 501 5.5.4 HELO/ELO argument [email protected] invalid, closing connection. v74sm9147441pfa.7- gsmtp ([email protected]) 
Mar 31 03:34:34 ip-172-31-22-38 sSMTP[2004]: SSL connection using (null) 
Mar 31 03:34:34 ip-172-31-22-38 sSMTP[2004]: Cannot open smtp.gmail.com:587 

de /var/log/mail.err et mail.warn

Mar 31 03:34:10 ip-172-31-22-38 sSMTP[1997]: Cannot open smtp.gmail.com:587 
Mar 31 03:34:34 ip-172-31-22-38 sSMTP[2004]: Invalid response: 501 5.5.4 HELO/EHLO argument [email protected] invalid, closing connection. v74sm9147441pfa.7 - gsmtp ([email protected]) 
Mar 31 03:34:34 ip-172-31-22-38 sSMTP[2004]: Cannot open smtp.gmail.com:587 

Mon /etc/ssmtp/ssmtp.conf

# 
# Config file for sSMTP sendmail 
# 
# The person who gets all mail for userids < 1000 
# Make this empty to disable rewriting. 
[email protected] 

# 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.gmail.com:587 

# Where will the mail seem to come from? 
#rewriteDomain= 

# The full hostname 
[email protected] 

[email protected] 
AuthPass=[removed] 
UseSTARTTLS=YES 
# 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 

Mes revaliases

root:[email protected]:smtp.gmail.com:587 
localusername:[email protected]:smtp.gmail.com:587 

Répondre

5

Après avoir tiré mes cheveux pendant des siècles, j'ai finalement ligoté et copié la configuration de l'article wiki Arch Linux pour Gmail et SSMTP, et qui a fini par travailler! Assurez-vous de vérifier vos configs, les gens!

# The user that gets all the mails (UID < 1000, usually the admin) 
[email protected] 

# The mail server (where the mail is sent to), both port 465 or 587 should be acceptable 
# See also http://mail.google.com/support/bin/answer.py?answer=78799 
mailhub=smtp.gmail.com:587 

# The address where the mail appears to come from for user authentication. 
rewriteDomain=gmail.com 

# The full hostname 
hostname=localhost 

# Use SSL/TLS before starting negotiation 
UseTLS=Yes 
UseSTARTTLS=Yes 

# Username/Password 
AuthUser=username 
AuthPass=password 

# Email 'From header's can override the default domain? 
FromLineOverride=yes 
15

mon ssmtp.conf inclus [email protected], je l'ai changé hostname=localhost et le problème a été résolu.

+0

C'était la solution pour moi aussi bien en Java. J'ai dû utiliser props.put ("mail.smtp.localhost", "localhost"); – kgiannakakis