api/pkg/mail/mail.go

84 lines
2.4 KiB
Go
Raw Normal View History

2020-02-07 16:27:45 +00:00
// Vikunja is a to-do list application to facilitate your life.
2020-01-09 17:33:22 +00:00
// Copyright 2018-2020 Vikunja and contributors. All rights reserved.
2018-11-26 20:17:33 +00:00
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
2018-11-26 20:17:33 +00:00
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
2018-11-26 20:17:33 +00:00
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
2018-11-26 20:17:33 +00:00
2018-10-27 09:33:28 +00:00
package mail
import (
"code.vikunja.io/api/pkg/config"
2018-10-31 12:42:38 +00:00
"code.vikunja.io/api/pkg/log"
2018-10-27 09:33:28 +00:00
"crypto/tls"
"gopkg.in/gomail.v2"
"time"
)
// Queue is the mail queue
var Queue chan *gomail.Message
// StartMailDaemon starts the mail daemon
func StartMailDaemon() {
Queue = make(chan *gomail.Message, config.MailerQueuelength.GetInt())
2018-10-28 16:11:13 +00:00
if !config.MailerEnabled.GetBool() {
2018-12-19 21:05:25 +00:00
return
}
if config.MailerHost.GetString() == "" {
2019-07-20 18:12:10 +00:00
log.Warning("Mailer seems to be not configured! Please see the config docs for more details.")
2018-10-27 09:33:28 +00:00
return
}
go func() {
d := gomail.NewDialer(config.MailerHost.GetString(), config.MailerPort.GetInt(), config.MailerUsername.GetString(), config.MailerPassword.GetString())
d.TLSConfig = &tls.Config{InsecureSkipVerify: config.MailerSkipTLSVerify.GetBool()}
2018-10-27 09:33:28 +00:00
var s gomail.SendCloser
var err error
open := false
for {
select {
case m, ok := <-Queue:
if !ok {
return
}
if !open {
if s, err = d.Dial(); err != nil {
2019-07-20 18:12:10 +00:00
log.Error("Error during connect to smtp server: %s", err)
2018-10-27 09:33:28 +00:00
}
open = true
}
if err := gomail.Send(s, m); err != nil {
2019-07-20 18:12:10 +00:00
log.Error("Error when sending mail: %s", err)
2018-10-27 09:33:28 +00:00
}
// Close the connection to the SMTP server if no email was sent in
// the last 30 seconds.
case <-time.After(config.MailerQueueTimeout.GetDuration() * time.Second):
2018-10-27 09:33:28 +00:00
if open {
if err := s.Close(); err != nil {
2019-07-20 18:12:10 +00:00
log.Error("Error closing the mail server connection: %s\n", err)
2018-10-27 09:33:28 +00:00
}
2019-07-20 18:12:10 +00:00
log.Infof("Closed connection to mailserver")
2018-10-27 09:33:28 +00:00
open = false
}
}
}
}()
}
// StopMailDaemon closes the mail queue channel, aka stops the daemon
func StopMailDaemon() {
close(Queue)
}