シスメモ

Linux(CentOS)、Windows(サーバー/クライアント)、Yamaha RTX、その他の技術メモ

CentOS6 Linux Postfix

【Postfix】gmail経由でメールを送信する

投稿日:

photo credit: liwyatan via photopin cc

photo credit: liwyatan via photopin cc

プロバイダのOPB25対策として、gmail経由でメールを送信できるように
Postfixを設定します。

1. /etc/postfix/main.cfに以下を追記します。

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
smtp_tls_CApath = /etc/pki/tls/certs/ca-bundle.crt

2. sasl_passwdファイルを作成し、保有しているgmailのメールアドレスと
パスワードを入力します。

コマンド:vi /etc/postfix/sasl_passwd

入力内容:[smtp.gmail.com]:587 <メールアドレス>:<パスワード>

3. sasl_passwdファイルをデータベース化します。

コマンド:postmap /etc/postfix/sasl_passwd

※cyrus-sasl-plainがインストールされている必要があります

4. Postfixを再起動し、外部にメールを送信できることを確認します。



-CentOS6, Linux, Postfix
-, , , ,

執筆者:


comment

メールアドレスが公開されることはありません。 が付いている欄は必須項目です

関連記事

PLESKが動作するVPS上でopen_basedirを無効に設定する

photo credit: Scott Beale via photopin cc PLESKでドメイン設定の変更を行ったところ、以下のWarningが記録されるようになった。 PHP Warning …

OpenVPNで「Options error」

photo credit: solracarevir via photopin cc ■OpenVPNで「Options error」   事象: OpenVPNでの接続時に画面に何も表示さ …

no image

samba4.0でkinit実行時に「KDC reply did not match expectations~」と表示される

■kinit実行時に「KDC reply did not match expectations~」と表示される。 kinit [email protected] kinit: K …

「No space left on device」と表示され、ファイルが作成できない

photo credit: hiSaifi P1200078 via photopin (license)   【環境】CentOS6.5 ハードディスクの空き容量には余裕があるのに「No …

VMware ESXi上のOpenVPN(ブリッジモード)

photo credit: ChadScott via photopin cc VMware ESXi上でOpenVPN(ブリッジモード)を導入しましたが、クライアントから 接続はできるものの、全く通 …