Added support for sending with relay hosts

This commit is contained in:
Niels Bouma
2023-05-10 19:33:05 +00:00
committed by Aine
parent 84102d5b5b
commit ee8d8680ac
7 changed files with 153 additions and 36 deletions

View File

@@ -41,6 +41,8 @@ type Config struct {
// Monitoring config
Monitoring Monitoring
Relay Relay
}
// DB config
@@ -72,3 +74,11 @@ type Mailboxes struct {
Reserved []string
Activation string
}
// Relay config
type Relay struct {
Host string
Port string
Username string
Password string
}