summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rwxr-xr-xsrc/config.clj8
-rwxr-xr-xsrc/email.clj4
2 files changed, 6 insertions, 6 deletions
diff --git a/src/config.clj b/src/config.clj
index 5fd18ba..bec5768 100755
--- a/src/config.clj
+++ b/src/config.clj
@@ -26,7 +26,7 @@
(def *server-url*
(getenv "DUMPFM_SERVER_URL"
- (if (= *server-user* "dumpfmprod")
+ (if (= *server-user* "humpfmprod")
"/"
"http://localhost:8080")))
@@ -44,7 +44,7 @@
(def *cookie-domain*
(getenv "DUMPFM_COOKIE_DOMAIN"
- (if (= *server-user* "dumpfmprod")
+ (if (= *server-user* "humpfmprod")
".hump.fm"
"")))
@@ -53,13 +53,13 @@
(def db-server
(getenv "DUMPFM_DB_HOST"
- (if (= *server-user* "dumpfmprod")
+ (if (= *server-user* "humpfmprod")
"localhost"; "192.168.162.138"
"localhost")))
(def redis-server
{:host (getenv "DUMPFM_REDIS_HOST"
- (if (= *server-user* "dumpfmprod")
+ (if (= *server-user* "humpfmprod")
"127.0.0.1"
"127.0.0.1"))
:port (getenv-int "DUMPFM_REDIS_PORT" 6379)
diff --git a/src/email.clj b/src/email.clj
index 4afd94c..6c09115 100755
--- a/src/email.clj
+++ b/src/email.clj
@@ -66,13 +66,13 @@
:text text
:mime (classify-mimetype text)))
-(def *admin-lists* {"dumpfmprod" ["info@hump.fm"]
+(def *admin-lists* {"humpfmprod" ["info@hump.fm"]
"sostler" ["sbostler@gmail.com"]
"jules" ["julescarbon@gmail.com"]})
(defn get-admins []
(or (*admin-lists* (System/getProperty "user.name"))
- (*admin-lists* "dumpfmprod")))
+ (*admin-lists* "humpfmprod")))
(defn send-registration-email
([nick email] (send-registration-email nick email "welcome"))