Hi,
I tried the following server configs :-
a)
receivers:
- name: email-me
email_configs:
- to: *****@gmail.com
from: noreply@gmail.com
smarthost: smtp.gmail.com:25
auth_username: "*****"
auth_identity: "*****"
auth_password: "****"
# require_tls: false
b)
receivers:
- name: email-me
email_configs:
- to: *****@gmail.com
from: noreply@gmail.com
smarthost: smtp.gmail.com:587
auth_username: "*****"
auth_identity: "*****"
auth_password: "****"
# require_tls: false
c)
receivers:
- name: email-me
email_configs:
- to: *****@gmail.com
from: noreply@gmail.com
smarthost: smtp.gmail.com:465
auth_username: "*****"
auth_identity: "*****"
auth_password: "****"
# require_tls: false
I also tried
smtp.googlemail.com (along with
smtp.gamil.com as stated above) for the above cases.
a) and b) works fine, but c) doesn't seem to work . I get a strange log :-
DEBU[0003] Received alert alert=MyAlarm[b54be4b][active] component=dispatcher source=dispatch.go:168
DEBU[0003] flushing [MyAlarm[b54be4b][active]] aggrGroup=cbf29ce484222325 source=dispatch.go:405
DEBU[0013] Notify attempt 1 failed: EOF source=notify.go:546
I tried setting require_tls: false also, but it didn't seem to work.