diff options
Diffstat (limited to 'config/config.go')
-rw-r--r-- | config/config.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/config/config.go b/config/config.go index 02d43eb..3a2e2f3 100644 --- a/config/config.go +++ b/config/config.go @@ -18,7 +18,8 @@ var SiteEmail = GetConfigValue("emailaddress", "") //contact@fchan.xyz var SiteEmailPassword = GetConfigValue("emailpass", "") var SiteEmailServer = GetConfigValue("emailserver", "") //mail.fchan.xyz var SiteEmailPort = GetConfigValue("emailport", "") //587 -var TorProxy = GetConfigValue("torproxy", "") //127.0.0.1:9050 +var SiteEmailNotifyTo = GetConfigValue("emailnotify", "") +var TorProxy = GetConfigValue("torproxy", "") //127.0.0.1:9050 var PublicIndexing = strings.ToLower(GetConfigValue("publicindex", "false")) var Salt = GetConfigValue("instancesalt", "") var DBHost = GetConfigValue("dbhost", "localhost") |