email subsystem configuration (#50, #51)

This commit is contained in:
Michael Quigley 2022-09-09 10:23:14 -04:00
parent c95e84b53e
commit e5711629a0
No known key found for this signature in database
GPG Key ID: 9B60314A9DD20A62

View File

@ -9,6 +9,7 @@ import (
type Config struct {
Endpoint *EndpointConfig
Proxy *ProxyConfig
Email *EmailConfig
Store *store.Config
Ziti *ZitiConfig
}
@ -23,6 +24,13 @@ type ProxyConfig struct {
Identities []string
}
type EmailConfig struct {
Host string
Port uint16
Username string
Password string
}
type ZitiConfig struct {
ApiEndpoint string
Username string