Blogブログ

Category: vagrant

Vagrant centos上のLaravelからメール送信設定

vagrant上のLaravelでメール送信したところ、 530 5.7.1 Authentication required というエラーが返ってきた。。。 そこからメールを送れるようにするまでのログ。 まず、postfixはインストールされているか? whereis sendmail 次の様に表示されれば、パスが通りインストールされている。 sendmail: /usr/sbin/sendmail 次に、postfixのconfファイルを修正 $ sudo vim /etc/postfix/main.cf # localhost -> all inet_interfaces = all # all -> ipv4 inet_protocols = ipv4 # 以下は追加分 relayhost = [smtp.gmail.com]:587 smtp_use_tls = yes smtp_sasl_auth_enable = yes smtp_sasl_password_maps = hash:/etc/postfix/sasl_passwd smtp_sasl_tls_security_options = noanonymous smtp_sasl_mechanism_filter = plain smtp_sasl_security_options = noanonymous […]