라즈베리 파이를 처음 사용합니다.
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
개편
# 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
?