allow reserved mailboxes, closes #43
This commit is contained in:
@@ -24,6 +24,8 @@ type Config struct {
|
||||
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
|
||||
|
||||
@@ -57,3 +59,8 @@ type TLS struct {
|
||||
type Sentry struct {
|
||||
DSN string
|
||||
}
|
||||
|
||||
// Mailboxes config
|
||||
type Mailboxes struct {
|
||||
Reserved []string
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user