Sending email via Gmail relay through postfix
From Notes_Wiki
<yambe:breadcrumb>Postfix_server_configuration|Postfix server configuration</yambe:breadcrumb>
Sending email via Gmail relay through postfix
To send email via Gmail relay through postfix use:
- Configure gmail to use less secure apps using:
- Login into Gmail account and go to Settings -> Accounts -> Google Account Settings
- In "Google Account Settings" go to Sign-in and Security.
- In Sign-in and security change "Allow less secure apps:" to ON
- edit /etc/postfix/sasl_passwd and put something like
- smtp.gmail.com <gmail-email-address>:<gmail-password>
- cd /etc/postfix
- chmod 600 sasl_passwd
- postmap hash:/etc/postfix/sasl_passwd
- edit /etc/postfix/main.cf and after relayhost comment lines insert
- smtp_sasl_auth_enable = yes
- smtp_sasl_password_maps = hash:/etc/postfix/sasl_passwd
- smtp_sasl_security_options =
- smtp_tls_security_level = may
- relayhost = smtp.gmail.com:587
- service postfix restart
- echo "Test email using postfix" | mail -s "Gmail relay test" saurabh@sbarjatiya.com
To troubleshoot look at /var/log/maillog. In log lines look at value of ctladdr such as 'ctladdr=saurabh (501/501)'. Then look at /var/mail/saurabh or login as user saurabh and use 'mail' command to see error message sent by Gmail server.
<yambe:breadcrumb>Postfix_server_configuration|Postfix server configuration</yambe:breadcrumb>