Mudanças entre as edições de "Msmtp"
De MochilaWiki
Ir para navegaçãoIr para pesquisarLinha 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 | ||
− | |||
− | |||
== 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
- https://www.dicas-l.com.br/arquivo/enviar_email_com_msmtp.php
- https://wiki.archlinux.org/index.php/Msmtp
- https://gist.github.com/JosefJezek/6194563
- https://www.sylvaindurand.org/send-emails-with-msmtp/
- https://wiki.debian.org/msmtp
- https://websistent.com/how-to-use-msmtp-with-gmail-yahoo-and-php-mail/
- https://decatec.de/linux/linux-einfach-e-mails-versenden-mit-msmtp/