mirror of
https://github.com/knadh/listmonk.git
synced 2025-01-22 06:08:09 +08:00
30 lines
702 B
Go
30 lines
702 B
Go
|
package mailbox
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
// Opt represents an e-mail POP/IMAP mailbox configuration.
|
||
|
type Opt struct {
|
||
|
// Host is the server's hostname.
|
||
|
Host string `json:"host"`
|
||
|
|
||
|
// Port is the server port.
|
||
|
Port int `json:"port"`
|
||
|
|
||
|
AuthProtocol string `json:"auth_protocol"`
|
||
|
|
||
|
// Username is the mail server login username.
|
||
|
Username string `json:"username"`
|
||
|
|
||
|
// Password is the mail server login password.
|
||
|
Password string `json:"password"`
|
||
|
|
||
|
// Folder is the name of the IMAP folder to scan for e-mails.
|
||
|
Folder string `json:"folder"`
|
||
|
|
||
|
// Optional TLS settings.
|
||
|
TLSEnabled bool `json:"tls_enabled"`
|
||
|
TLSSkipVerify bool `json:"tls_skip_verify"`
|
||
|
|
||
|
ScanInterval time.Duration `json:"scan_interval"`
|
||
|
}
|