रास्पबेरी पाई के लिए नया।
मैंने उस पर रास्पियन ओएस स्थापित किया। मैं अपने जीमेल खाते का उपयोग करके इससे ईमेल भेजना चाहता हूं। मैं कमांड लाइन इंटरफेस से और 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" पर, अगर मैं "smtp.gmail" के साथ "mail.google" प्रतिस्थापित करता हूं, तो मुझे एक संदेश वापस मिल जाएगा
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
?