small pixel drawing of a pufferfish clist

Remove weird EOL chars
j3s j3s@c3f.net
Tue, 07 Jan 2020 20:19:41 -0600
commit

9aae091c5fe48dba234328425c9dcc8c0ad89e63

parent

07c19aea6d4e0e082f31a772d5faebc3aca149af

1 files changed, 2 insertions(+), 2 deletions(-)

jump to
M main.gomain.go

@@ -353,8 +353,8 @@ for _, a := range e.Bcc {

recipients = append(recipients, a.Address) } - auth := smtp.PlainAuth("", gConfig.SMTPUsername, gConfig.SMTPPassword, gConfig.SMTPHostname) - err := smtp.SendMail(gConfig.SMTPHostname + ":" + gConfig.SMTPPort, auth, e.Header.Get("Sender"), recipients, e.ToBytes()) + auth := smtp.PlainAuth("", gConfig.SMTPUsername, gConfig.SMTPPassword, gConfig.SMTPHostname) + err := smtp.SendMail(gConfig.SMTPHostname+":"+gConfig.SMTPPort, auth, e.Header.Get("Sender"), recipients, e.ToBytes()) if err != nil { log.Printf("ERROR_SENDING_MAIL: Error=%q\n", err.Error()) }