diff options
author | FChannel <> | 2022-06-19 12:23:54 -0700 |
---|---|---|
committer | FChannel <> | 2022-06-19 12:53:29 -0700 |
commit | cd99df8d6781c3f0a191d119ea0ddf8c4a16089f (patch) | |
tree | 2f3bc281a3a1c631a9c865e3ddb117e7054b6c9f /config | |
parent | d88b68d2287716e663f723f46f830dc2b9043595 (diff) |
moving files from static to view dir
Diffstat (limited to 'config')
-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") |