-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmail.go
133 lines (127 loc) · 4.01 KB
/
mail.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
// Copyright (C) 2021 - 2023 iDigitalFlame
//
// 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
// any later version.
//
// 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.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
//
package akcss
import (
"context"
"crypto/tls"
"io"
"net"
"net/smtp"
"github.com/iDigitalFlame/akcss/xerr"
)
var mailer = &net.Dialer{Timeout: timeout, KeepAlive: timeout}
type mail struct {
To string
Body string
Subject string
}
func (m *manager) mail(e mail) error {
if len(e.Body) == 0 || len(e.Subject) == 0 {
m.log.Warning("[daemon/mailer] Skipping invalid email queue item, empty body or subject!")
return nil
}
if len(e.To) == 0 {
return xerr.New("could not send email: empty to")
}
r := m.Config.Email.From
if len(r) == 0 {
r = m.Config.Email.Username
}
if len(r) == 0 {
return xerr.New("could not send email: empty sender")
}
var (
x, f = context.WithTimeout(context.Background(), timeout)
s, err = mailer.DialContext(x, "tcp", m.Config.Email.Host)
)
m.log.Trace(`[deamon/mailer] Connecting to mail host "%s"..`, m.Config.Email.Host)
if f(); err != nil {
return xerr.Wrap(`could not connect to "`+m.Config.Email.Host+`"`, err)
}
var (
h, _, err2 = net.SplitHostPort(m.Config.Email.Host)
c *smtp.Client
)
if err2 != nil {
return xerr.Wrap(`unable to parse "`+m.Config.Email.Host+`"`, err)
}
if c, err = smtp.NewClient(s, h); err != nil {
return xerr.Wrap(`unable to establish a valid connection to "`+h+`"`, err)
}
defer c.Close()
if err = c.Hello(h); err != nil {
return xerr.Wrap(`mailer "`+h+`" HELLO command failed`, err)
}
if ok, _ := c.Extension("STARTTLS"); ok {
if err = c.StartTLS(&tls.Config{ServerName: h}); err != nil {
return xerr.Wrap(`mailer "`+h+`" TLS setup failed`, err)
}
}
if len(m.Config.Email.Username) > 0 || len(m.Config.Email.Password) > 0 {
m.log.Debug(`[deamon/mailer] Logging into mail host "%s" as "%s"..`, h, m.Config.Email.Username)
if err = c.Auth(smtp.PlainAuth(m.Config.Email.Username, m.Config.Email.Username, m.Config.Email.Password, h)); err != nil {
return xerr.Wrap(`mailer "`+h+`" authentication failed`, err)
}
}
if err = c.Mail(r); err != nil {
return xerr.Wrap(`mailer "`+h+`" FROM command failed`, err)
}
if err = c.Rcpt(e.To); err != nil {
return xerr.Wrap(`mailer "`+h+`" RCPT command failed`, err)
}
var w io.WriteCloser
if w, err = c.Data(); err != nil {
return xerr.Wrap(`mailer "`+h+`" DATA command failed`, err)
}
_, err = w.Write([]byte(
"To: " + e.To + "\r\nFrom: Akcss VPN <" + r + ">\r\nSubject: " + e.Subject + "\r\n\r\n" + e.Body + "\r\n",
))
if err != nil {
return xerr.Wrap(`mailer "`+h+`" body writing failed`, err)
}
if err = w.Close(); err != nil {
return xerr.Wrap(`mailer "`+h+`" body close failed`, err)
}
if err = c.Quit(); err != nil {
return xerr.Wrap(`mailer "`+h+`" quit command failed`, err)
}
return nil
}
func (m *manager) mailer(x context.Context) {
m.log.Info("[daemon/mailer] Stating mailer thread..")
for {
select {
case <-x.Done():
m.log.Info("[daemon/mailer] Stopping mailer thread.")
return
case e := <-m.deliver:
m.log.Debug(`[daemon/mailer] Received email to send to "%s"..`, e.To)
if err := m.mail(e); err != nil {
m.log.Warning(`[daemon/mailer] Could not send email to "%s": %s!`, e.To, err.Error())
}
m.log.Debug(`[daemon/mailer] Completed email request to "%s"..`, e.To)
}
}
}
func (m *manager) Mail(to, subject, body string) {
if len(m.Config.Email.Host) == 0 {
return
}
select {
case m.deliver <- mail{To: to, Subject: subject, Body: body}:
default:
}
}