From d2db4b16211965271289311666537fbccc2afccc Mon Sep 17 00:00:00 2001 From: =Corey Hulen Date: Tue, 8 Dec 2015 14:06:52 -0800 Subject: Fixing defaults --- config/config.json | 4 ++-- docker/dev/config_docker.json | 4 ++-- docker/local/config_docker.json | 4 ++-- model/config.go | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/config/config.json b/config/config.json index 999ea8a83..4220d1055 100644 --- a/config/config.json +++ b/config/config.json @@ -68,8 +68,8 @@ "ConnectionSecurity": "", "InviteSalt": "bjlSR4QqkXFBr7TP4oDzlfZmcNuH9YoS", "PasswordResetSalt": "vZ4DcKyVVRlKHHJpexcuXzojkE5PZ5eL", - "SendPushNotifications": true, - "PushNotificationServer": "https://push.mattermost.com" + "SendPushNotifications": false, + "PushNotificationServer": "" }, "RateLimitSettings": { "EnableRateLimiter": true, diff --git a/docker/dev/config_docker.json b/docker/dev/config_docker.json index 4c5502ddd..a35abb9da 100644 --- a/docker/dev/config_docker.json +++ b/docker/dev/config_docker.json @@ -68,8 +68,8 @@ "ConnectionSecurity": "", "InviteSalt": "bjlSR4QqkXFBr7TP4oDzlfZmcNuH9YoS", "PasswordResetSalt": "vZ4DcKyVVRlKHHJpexcuXzojkE5PZ5eL", - "SendPushNotifications": true, - "PushNotificationServer": "https://push.mattermost.com" + "SendPushNotifications": false, + "PushNotificationServer": "" }, "RateLimitSettings": { "EnableRateLimiter": true, diff --git a/docker/local/config_docker.json b/docker/local/config_docker.json index 4c5502ddd..a35abb9da 100644 --- a/docker/local/config_docker.json +++ b/docker/local/config_docker.json @@ -68,8 +68,8 @@ "ConnectionSecurity": "", "InviteSalt": "bjlSR4QqkXFBr7TP4oDzlfZmcNuH9YoS", "PasswordResetSalt": "vZ4DcKyVVRlKHHJpexcuXzojkE5PZ5eL", - "SendPushNotifications": true, - "PushNotificationServer": "https://push.mattermost.com" + "SendPushNotifications": false, + "PushNotificationServer": "" }, "RateLimitSettings": { "EnableRateLimiter": true, diff --git a/model/config.go b/model/config.go index 869f975e6..14ce444c5 100644 --- a/model/config.go +++ b/model/config.go @@ -181,12 +181,12 @@ func (o *Config) SetDefaults() { if o.EmailSettings.SendPushNotifications == nil { o.EmailSettings.SendPushNotifications = new(bool) - *o.EmailSettings.SendPushNotifications = true + *o.EmailSettings.SendPushNotifications = false } if o.EmailSettings.PushNotificationServer == nil { o.EmailSettings.PushNotificationServer = new(string) - *o.EmailSettings.PushNotificationServer = "https://push.mattermost.com" + *o.EmailSettings.PushNotificationServer = "" } } -- cgit v1.2.3-1-g7c22