feat: implemented registration emails; fix: config variables for password length used the same env variable; refactor: all available config variables added to docker-compose.yml
11 lines
203 B
Go
11 lines
203 B
Go
package errors
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var (
|
|
ErrSmtpDisabled = errors.New("Smtp is not enabled in the config")
|
|
ErrSmtpMissingConfiguration = errors.New("Some necessary SMTP configuration is missing")
|
|
)
|