smtpを設定してメールを送信する方法は?

smtpを設定してメールを送信する方法は?

私はラズベリーパイを初めて使用します。

私はそれにRaspianオペレーティングシステムをインストールしました。 Gmail アカウントを使用してメールを送信したいと思います。コマンドラインインターフェイスとPHPスクリプトから送信したいと思います。

私はこのガイドに従った。 http://iqjar.com/jar/sending-emails-from-the-raspberry-pi/

リンクのステップ1、2、3、4に従いました。

以下のコードを使用して電子メールを送信するとき

echo "Test text" | mail -s "Test Mail" [email protected]

何も起こらず、画面に何も印刷されず、電子メールも受信されません。

「realiases」で「mail.google」を「smtp.gmail」に置き換えると、次のメッセージが表示されます。

send-mail: Cannot open mail.google.com:587

または

send-mail: Server didn't like our AUTH LOGIN (530 5.7.0 Must issue a STARTTLS command first. ml2sm3592928igb.10 - gsmtp)

この問題をどのように解決できますか?

以下の2つのファイルは次のとおりです。

ssmtp.conf

#
# Config file for sSMTP sendmail
#
# The person who gets all mail for userids < 1000
# Make this empty to disable rewriting.
# root=postmaster

# The place where the mail goes. The actual machine name is required no 
# MX records are consulted. Commonly mailhosts are named mail.domain.com
# mailhub=mail

# Where will the mail seem to come from?
#rewriteDomain=

# The full hostname
hostname=raspberrypi

# Are users allowed to set their own From: address?
# YES - Allow the user to specify their own From: address
# NO - Use the system generated From: address
FromLineOverride=YES


[email protected]
mailhub=smtp.gmail.com:587
[email protected]
AuthPass=mypass
UseSTARTTLS=YES

再定義する

# sSMTP aliases
# 
# Format:   local_account:outgoing_address:mailhub
#
# Example: root:[email protected]:mailhub.your.domain[:port]
# where [:port] is an optional port number that defaults to 25.

root:[email protected]:mail.google.com:587

関連情報