ฉันใหม่เพื่อราสเบอร์รี่ pi
ฉันติดตั้ง Raspian OS ลงไปแล้ว ฉันต้องการส่งอีเมลโดยใช้บัญชี gmail ของฉัน ฉันต้องการส่งจากอินเตอร์เฟสบรรทัดคำสั่งและจากสคริปต์ PHP
ฉันทำตามคำแนะนำนี้ http://iqjar.com/jar/sending-emails-from-the-raspberry-pi/
ฉันทำตามขั้นตอน 1,2,3,4 จากลิงก์
เมื่อฉันส่งอีเมลโดยใช้รหัสด้านล่างโดยใช้
echo "Test text" | mail -s "Test Mail" me2@gmail.com
ไม่มีอะไรเกิดขึ้นไม่มีสิ่งใดพิมพ์บนหน้าจอและฉันไม่ได้รับอีเมล
ใน "revaliases" หากฉันแทนที่ "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)
ไม่มีใครรู้วิธีการที่จะแก้ไขปัญหานี้? ขอบคุณ
นี่คือสองไฟล์ด้านล่าง:
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
root=me@gmail.com
mailhub=smtp.gmail.com:587
AuthUser=me@gmail.com
AuthPass=mypass
UseSTARTTLS=YES
revaliases
# sSMTP aliases
#
# Format: local_account:outgoing_address:mailhub
#
# Example: root:your_login@your.domain:mailhub.your.domain[:port]
# where [:port] is an optional port number that defaults to 25.
root:me@gmail.com:mail.google.com:587
UseSTARTTLS=NO
หรือไม่