Após executar o script básico de enviar uma notificação de email ou mandar o IP sempre aparece essa mensagem no terminal ssmtp: cannot mailhub: 25 .
Código utilizado :
pi@raspberrypi:~ $ ssmtp notificacaoservidor@gmail.com
teste de envio RPi
ssmtp: Cannot open mailhub:25
Meu arquivo ssmpt.conf está da seguinte forma :
#
# Config file for sSMTP sendmail
#
# The person who gets all mail for userids < 1000
# Make this empty to disable rewriting.
root=notificaoservidor@gmail.com
# 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= smtp.gmail.com:587
AuthUser=notificacaoservidor@gmail.com
AuthPass=julio159357
UseTLS=YES
UseSTARTTLS=YES
# 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
Tentei realizar o envio automático e encontrei o mesmo erro.
#!/bin/bash
cd /home/pi/scripts
hostname -I > meuIP
ssmtp julio.uea@gmail.com < meuIP
pi@raspberrypi:~/scripts $ ./informaIP.sh
ssmtp: Cannot open mailhub:25
Procurei em outros fóruns vi que podia ser um problema de acesso ao gmail, ou de permissão.. ainda não consegui solucionar. Se alguem puder me dar um suporte vai ser de grande ajuda ! Valeu.