其他分享
首页 > 其他分享> > SendGrid结合Postfix的送信配置

SendGrid结合Postfix的送信配置

作者:互联网

SendGrid设置

  1. Sender作成-域名方式
  2. 配置成功之后
  3. API KEY取得

Postfix配置

  1. 安装
    sudo apt install postfix
  1. 配置/etc/postfix/main.cf
    以下内容添加
smtp_sasl_auth_enable = yes
smtp_sasl_password_maps = hash:/etc/postfix/sasl_passwd
smtp_sasl_security_options = noanonymous
smtp_sasl_tls_security_options = noanonymous
smtp_tls_security_level = encrypt
header_size_limit = 4096000
relayhost = [smtp.sendgrid.net]:587
  1. 配置/etc/postfix/sasl_passwd(没有时新规作成)
[smtp.sendgrid.net]:587 apikey:yourSendGridApiKey
# root以外无权限
sudo chmod 600 /etc/postfix/sasl_passwd
# postfix使用更新
sudo postmap /etc/postfix/sasl_passwd
  1. 再启动
sudo systemctl restart postfix

其他问题

apt-get install libsasl2-modules

标签:送信,etc,Postfix,SendGrid,sudo,smtp,postfix,passwd,sasl
来源: https://www.cnblogs.com/lixiaobin/p/sendgrid.html