1
mirror of https://gitlab.com/commento/commento.git synced 2025-06-29 22:56:37 -04:00

api: use COMMENTO_ prefix on errors

Closes https://gitlab.com/commento/commento-ce/issues/44
This commit is contained in:
Adhityaa
2018-06-13 00:22:06 +05:30
parent 0ee43ae52a
commit a3a6f2ba68
6 changed files with 9 additions and 9 deletions

View File

@ -20,7 +20,7 @@ func smtpConfigure() error {
}
if os.Getenv("SMTP_FROM_ADDRESS") == "" {
logger.Errorf("SMTP_FROM_ADDRESS not set")
logger.Errorf("COMMENTO_SMTP_FROM_ADDRESS not set")
smtpConfigured = false
return errorMissingSmtpAddress
}