Mudanças entre as edições de "Msmtp"

De MochilaWiki
Ir para navegaçãoIr para pesquisar
Linha 1: Linha 1:
 +
<source lang="bash">
 +
apt-get install msmtp msmtp-mta mailutils
 
ln -s /usr/bin/msmtp /usr/sbin/sendmail
 
ln -s /usr/bin/msmtp /usr/sbin/sendmail
 
touch /var/log/msmtprc && chmod 666 /var/log/msmtprc
 
touch /var/log/msmtprc && chmod 666 /var/log/msmtprc
 +
chmod 600 ~/.msmtprc
 +
</source>
 +
 +
ou em /etc/msmtprc
  
chmod 600 ~/.msmtprc
 
apt-get install msmtp msmtp-mta mailutils
 
  
 
== gmail ==
 
== gmail ==
 
  # Set default values for all following accounts.
 
  # Set default values for all following accounts.
 
  defaults
 
  defaults
 +
logfile /var/log/msmtp.log
 
  port 587
 
  port 587
 
  tls on
 
  tls on

Edição das 19h37min de 16 de março de 2020

apt-get install msmtp msmtp-mta mailutils
ln -s /usr/bin/msmtp /usr/sbin/sendmail
touch /var/log/msmtprc && chmod 666 /var/log/msmtprc
chmod 600 ~/.msmtprc

ou em /etc/msmtprc


gmail

# Set default values for all following accounts.
defaults
logfile /var/log/msmtp.log
port 587
tls on
tls_trust_file /etc/ssl/certs/ca-certificates.crt

# gmail account
account gmail
host smtp.gmail.com
auth on
port 587
user your.account@gmail.com
password yourpassword
from your.account@gmail.com
#aliases        /etc/aliases
#tls_trust_file /usr/share/ca-certificates/mozilla/Equifax_Secure_CA.crt

PHP

sendmail_path = "/usr/bin/msmtp -C /path/to/your/config -t"

Referencias