2020-07-11 21:05:24 +02:00
|
|
|
module smtp
|
|
|
|
|
|
|
|
/*
|
|
|
|
*
|
2020-07-13 16:41:23 +02:00
|
|
|
* smtp module
|
2020-07-11 21:05:24 +02:00
|
|
|
* Created by: nedimf (07/2020)
|
|
|
|
*/
|
|
|
|
import net
|
2022-02-16 08:18:51 +01:00
|
|
|
import net.openssl
|
2020-07-11 21:05:24 +02:00
|
|
|
import encoding.base64
|
|
|
|
import strings
|
2020-07-13 16:41:23 +02:00
|
|
|
import time
|
2020-11-15 21:54:47 +01:00
|
|
|
import io
|
2020-07-11 21:05:24 +02:00
|
|
|
|
2020-07-13 16:41:23 +02:00
|
|
|
const (
|
2021-01-20 11:11:01 +01:00
|
|
|
recv_size = 128
|
2020-07-13 16:41:23 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
enum ReplyCode {
|
2021-01-20 11:11:01 +01:00
|
|
|
ready = 220
|
|
|
|
close = 221
|
|
|
|
auth_ok = 235
|
|
|
|
action_ok = 250
|
2020-07-13 16:41:23 +02:00
|
|
|
mail_start = 354
|
2020-07-11 21:05:24 +02:00
|
|
|
}
|
|
|
|
|
2020-07-13 16:41:23 +02:00
|
|
|
pub enum BodyType {
|
|
|
|
text
|
|
|
|
html
|
2020-07-11 21:05:24 +02:00
|
|
|
}
|
|
|
|
|
2020-07-13 16:41:23 +02:00
|
|
|
pub struct Client {
|
|
|
|
mut:
|
2022-02-16 08:18:51 +01:00
|
|
|
conn net.TcpConn
|
|
|
|
ssl_conn &openssl.SSLConn = 0
|
|
|
|
reader io.BufferedReader
|
2020-07-13 16:41:23 +02:00
|
|
|
pub:
|
|
|
|
server string
|
|
|
|
port int = 25
|
|
|
|
username string
|
|
|
|
password string
|
|
|
|
from string
|
2022-02-16 08:18:51 +01:00
|
|
|
ssl bool
|
|
|
|
starttls bool
|
2020-07-13 16:41:23 +02:00
|
|
|
pub mut:
|
2022-02-16 08:18:51 +01:00
|
|
|
is_open bool
|
|
|
|
encrypted bool
|
2020-07-11 21:05:24 +02:00
|
|
|
}
|
|
|
|
|
2020-07-13 16:41:23 +02:00
|
|
|
pub struct Mail {
|
|
|
|
from string
|
|
|
|
to string
|
|
|
|
cc string
|
|
|
|
bcc string
|
|
|
|
date time.Time = time.now()
|
|
|
|
subject string
|
|
|
|
body_type BodyType
|
|
|
|
body string
|
|
|
|
}
|
|
|
|
|
|
|
|
// new_client returns a new SMTP client and connects to it
|
2021-01-20 11:11:01 +01:00
|
|
|
pub fn new_client(config Client) ?&Client {
|
2022-02-16 08:18:51 +01:00
|
|
|
if config.ssl && config.starttls {
|
|
|
|
return error('Can not use both implicit SSL and STARTTLS')
|
|
|
|
}
|
|
|
|
|
2021-01-20 11:11:01 +01:00
|
|
|
mut c := &Client{
|
|
|
|
...config
|
|
|
|
}
|
|
|
|
c.reconnect() ?
|
2020-07-13 16:41:23 +02:00
|
|
|
return c
|
|
|
|
}
|
|
|
|
|
|
|
|
// reconnect reconnects to the SMTP server if the connection was closed
|
|
|
|
pub fn (mut c Client) reconnect() ? {
|
2021-01-20 11:11:01 +01:00
|
|
|
if c.is_open {
|
|
|
|
return error('Already connected to server')
|
|
|
|
}
|
2020-07-13 16:41:23 +02:00
|
|
|
|
2020-11-15 21:54:47 +01:00
|
|
|
conn := net.dial_tcp('$c.server:$c.port') or { return error('Connecting to server failed') }
|
|
|
|
c.conn = conn
|
|
|
|
|
2022-02-16 08:18:51 +01:00
|
|
|
if c.ssl {
|
|
|
|
c.connect_ssl() ?
|
|
|
|
} else {
|
|
|
|
c.reader = io.new_buffered_reader(reader: c.conn)
|
|
|
|
}
|
2020-07-13 16:41:23 +02:00
|
|
|
|
|
|
|
c.expect_reply(.ready) or { return error('Received invalid response from server') }
|
|
|
|
c.send_ehlo() or { return error('Sending EHLO packet failed') }
|
2022-02-16 08:18:51 +01:00
|
|
|
|
|
|
|
if c.starttls && !c.encrypted {
|
|
|
|
c.send_starttls() or { return error('Sending STARTTLS failed') }
|
|
|
|
}
|
|
|
|
|
2020-07-13 16:41:23 +02:00
|
|
|
c.send_auth() or { return error('Authenticating to server failed') }
|
|
|
|
c.is_open = true
|
|
|
|
}
|
|
|
|
|
|
|
|
// send sends an email
|
2021-01-20 11:11:01 +01:00
|
|
|
pub fn (mut c Client) send(config Mail) ? {
|
|
|
|
if !c.is_open {
|
|
|
|
return error('Disconnected from server')
|
|
|
|
}
|
2020-07-13 16:41:23 +02:00
|
|
|
from := if config.from != '' { config.from } else { c.from }
|
|
|
|
c.send_mailfrom(from) or { return error('Sending mailfrom failed') }
|
|
|
|
c.send_mailto(config.to) or { return error('Sending mailto failed') }
|
|
|
|
c.send_data() or { return error('Sending mail data failed') }
|
2021-01-22 23:24:48 +01:00
|
|
|
c.send_body(Mail{
|
|
|
|
...config
|
2021-01-20 11:11:01 +01:00
|
|
|
from: from
|
|
|
|
}) or { return error('Sending mail body failed') }
|
2020-07-13 16:41:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// quit closes the connection to the server
|
|
|
|
pub fn (mut c Client) quit() ? {
|
2021-01-26 15:43:10 +01:00
|
|
|
c.send_str('QUIT\r\n') ?
|
|
|
|
c.expect_reply(.close) ?
|
2022-02-16 08:18:51 +01:00
|
|
|
if c.encrypted {
|
|
|
|
c.ssl_conn.shutdown() ?
|
|
|
|
} else {
|
|
|
|
c.conn.close() ?
|
|
|
|
}
|
2020-07-13 16:41:23 +02:00
|
|
|
c.is_open = false
|
2022-02-16 08:18:51 +01:00
|
|
|
c.encrypted = false
|
|
|
|
}
|
|
|
|
|
|
|
|
fn (mut c Client) connect_ssl() ? {
|
|
|
|
c.ssl_conn = openssl.new_ssl_conn()
|
|
|
|
c.ssl_conn.connect(mut c.conn, c.server) or {
|
|
|
|
return error('Connecting to server using OpenSSL failed: $err')
|
|
|
|
}
|
|
|
|
|
|
|
|
c.reader = io.new_buffered_reader(reader: c.ssl_conn)
|
|
|
|
c.encrypted = true
|
2020-07-13 16:41:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// expect_reply checks if the SMTP server replied with the expected reply code
|
2021-01-20 11:11:01 +01:00
|
|
|
fn (mut c Client) expect_reply(expected ReplyCode) ? {
|
2022-02-16 08:18:51 +01:00
|
|
|
mut str := ''
|
|
|
|
for {
|
|
|
|
str = c.reader.read_line() ?
|
|
|
|
if str.len < 4 {
|
|
|
|
return error('Invalid SMTP response: $str')
|
|
|
|
}
|
|
|
|
|
|
|
|
if str.runes()[3] == `-` {
|
|
|
|
continue
|
|
|
|
} else {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
2020-07-13 16:41:23 +02:00
|
|
|
|
2021-01-20 11:11:01 +01:00
|
|
|
$if smtp_debug ? {
|
2020-11-15 21:54:47 +01:00
|
|
|
eprintln('\n\n[RECV]')
|
2020-07-13 16:41:23 +02:00
|
|
|
eprint(str)
|
2020-07-11 21:05:24 +02:00
|
|
|
}
|
2020-07-13 16:41:23 +02:00
|
|
|
|
2020-11-15 21:54:47 +01:00
|
|
|
if str.len >= 3 {
|
2020-07-13 16:41:23 +02:00
|
|
|
status := str[..3].int()
|
2021-01-08 17:41:52 +01:00
|
|
|
if ReplyCode(status) != expected {
|
2020-07-13 16:41:23 +02:00
|
|
|
return error('Received unexpected status code $status, expecting $expected')
|
2020-07-11 21:05:24 +02:00
|
|
|
}
|
2021-01-20 11:11:01 +01:00
|
|
|
} else {
|
|
|
|
return error('Recieved unexpected SMTP data: $str')
|
|
|
|
}
|
2020-07-13 16:41:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
[inline]
|
2021-01-20 11:11:01 +01:00
|
|
|
fn (mut c Client) send_str(s string) ? {
|
|
|
|
$if smtp_debug ? {
|
2020-07-13 16:41:23 +02:00
|
|
|
eprintln('\n\n[SEND START]')
|
|
|
|
eprint(s.trim_space())
|
|
|
|
eprintln('\n[SEND END]')
|
2020-07-11 21:05:24 +02:00
|
|
|
}
|
2022-02-16 08:18:51 +01:00
|
|
|
|
|
|
|
if c.encrypted {
|
|
|
|
c.ssl_conn.write(s.bytes()) ?
|
|
|
|
} else {
|
|
|
|
c.conn.write(s.bytes()) ?
|
|
|
|
}
|
2020-07-11 21:05:24 +02:00
|
|
|
}
|
|
|
|
|
2020-07-13 16:41:23 +02:00
|
|
|
[inline]
|
2021-01-20 11:11:01 +01:00
|
|
|
fn (mut c Client) send_ehlo() ? {
|
|
|
|
c.send_str('EHLO $c.server\r\n') ?
|
|
|
|
c.expect_reply(.action_ok) ?
|
2020-07-13 16:41:23 +02:00
|
|
|
}
|
|
|
|
|
2022-02-16 08:18:51 +01:00
|
|
|
[inline]
|
|
|
|
fn (mut c Client) send_starttls() ? {
|
|
|
|
c.send_str('STARTTLS\r\n') ?
|
|
|
|
c.expect_reply(.ready) ?
|
|
|
|
c.connect_ssl() ?
|
|
|
|
}
|
|
|
|
|
2020-07-13 16:41:23 +02:00
|
|
|
[inline]
|
2021-01-20 11:11:01 +01:00
|
|
|
fn (mut c Client) send_auth() ? {
|
2020-07-13 17:22:36 +02:00
|
|
|
if c.username.len == 0 {
|
|
|
|
return
|
2021-01-20 11:11:01 +01:00
|
|
|
}
|
2020-07-11 21:05:24 +02:00
|
|
|
mut sb := strings.new_builder(100)
|
2022-01-28 19:34:44 +01:00
|
|
|
sb.write_byte(0)
|
2021-02-22 12:18:11 +01:00
|
|
|
sb.write_string(c.username)
|
2022-01-28 19:34:44 +01:00
|
|
|
sb.write_byte(0)
|
2021-02-22 12:18:11 +01:00
|
|
|
sb.write_string(c.password)
|
2020-07-13 16:41:23 +02:00
|
|
|
a := sb.str()
|
2021-02-26 07:22:12 +01:00
|
|
|
auth := 'AUTH PLAIN ${base64.encode_str(a)}\r\n'
|
2021-01-20 11:11:01 +01:00
|
|
|
c.send_str(auth) ?
|
|
|
|
c.expect_reply(.auth_ok) ?
|
2020-07-13 16:41:23 +02:00
|
|
|
}
|
|
|
|
|
2021-01-20 11:11:01 +01:00
|
|
|
fn (mut c Client) send_mailfrom(from string) ? {
|
|
|
|
c.send_str('MAIL FROM: <$from>\r\n') ?
|
|
|
|
c.expect_reply(.action_ok) ?
|
2020-07-13 16:41:23 +02:00
|
|
|
}
|
|
|
|
|
2021-01-20 11:11:01 +01:00
|
|
|
fn (mut c Client) send_mailto(to string) ? {
|
|
|
|
c.send_str('RCPT TO: <$to>\r\n') ?
|
|
|
|
c.expect_reply(.action_ok) ?
|
2020-07-11 21:05:24 +02:00
|
|
|
}
|
|
|
|
|
2021-01-20 11:11:01 +01:00
|
|
|
fn (mut c Client) send_data() ? {
|
|
|
|
c.send_str('DATA\r\n') ?
|
2021-01-26 15:43:10 +01:00
|
|
|
c.expect_reply(.mail_start) ?
|
2020-07-11 21:05:24 +02:00
|
|
|
}
|
|
|
|
|
2021-01-20 11:11:01 +01:00
|
|
|
fn (mut c Client) send_body(cfg Mail) ? {
|
2020-07-13 16:41:23 +02:00
|
|
|
is_html := cfg.body_type == .html
|
|
|
|
date := cfg.date.utc_string().trim_right(' UTC') // TODO
|
|
|
|
mut sb := strings.new_builder(200)
|
2021-02-22 12:18:11 +01:00
|
|
|
sb.write_string('From: $cfg.from\r\n')
|
|
|
|
sb.write_string('To: <$cfg.to>\r\n')
|
|
|
|
sb.write_string('Cc: <$cfg.cc>\r\n')
|
|
|
|
sb.write_string('Bcc: <$cfg.bcc>\r\n')
|
|
|
|
sb.write_string('Date: $date\r\n')
|
|
|
|
sb.write_string('Subject: $cfg.subject\r\n')
|
2020-07-13 16:41:23 +02:00
|
|
|
if is_html {
|
2021-02-22 12:18:11 +01:00
|
|
|
sb.write_string('Content-Type: text/html; charset=ISO-8859-1')
|
2020-07-11 21:05:24 +02:00
|
|
|
}
|
2021-02-22 12:18:11 +01:00
|
|
|
sb.write_string('\r\n\r\n')
|
|
|
|
sb.write_string(cfg.body)
|
|
|
|
sb.write_string('\r\n.\r\n')
|
2021-01-20 11:11:01 +01:00
|
|
|
c.send_str(sb.str()) ?
|
|
|
|
c.expect_reply(.action_ok) ?
|
2020-07-11 21:05:24 +02:00
|
|
|
}
|