package config // Config of Postmoogle type Config struct { // Homeserver url Homeserver string // Login is a MXID localpart (scheduler - OK, @scheduler:example.com - wrong) Login string // Password for login/password auth only Password string // Domains for SMTP Domains []string // Port for SMTP Port string // RoomID of the admin room LogLevel string // DataSecret is account data secret key (password) to encrypt all account data values DataSecret string // NoEncryption disabled encryption support NoEncryption bool // Prefix for commands Prefix string // MaxSize of an email (including attachments) MaxSize int // StatusMsg of the bot StatusMsg string // Mailboxes config Mailboxes Mailboxes // Admins holds list of admin users (wildcards supported), e.g.: @*:example.com, @bot.*:example.com, @admin:*. Empty = no admins Admins []string // DB config DB DB // TLS config TLS TLS // Sentry config Sentry Sentry } // DB config type DB struct { // DSN is a database connection string DSN string // Dialect of database, one of sqlite3, postgres Dialect string } // TLS config type TLS struct { Certs []string Keys []string Port string Required bool } // Sentry config type Sentry struct { DSN string } // Mailboxes config type Mailboxes struct { Reserved []string }