summaryrefslogtreecommitdiffstats
path: root/api/post.go
diff options
context:
space:
mode:
authorHarrison Healey <harrisonmhealey@gmail.com>2016-09-06 17:51:42 -0400
committerenahum <nahumhbl@gmail.com>2016-09-06 18:51:42 -0300
commit73692f010e1a0bf62f0a502797aca94f99012385 (patch)
treecee41dd48ec51c904bf29ad81c1d5a4a2dddb009 /api/post.go
parent024a72b440345709692d46f2b15d5cb958926359 (diff)
downloadchat-73692f010e1a0bf62f0a502797aca94f99012385.tar.gz
chat-73692f010e1a0bf62f0a502797aca94f99012385.tar.bz2
chat-73692f010e1a0bf62f0a502797aca94f99012385.zip
PLT-3775/PLT-4067 Fixes for email notifications for 3.4
Diffstat (limited to 'api/post.go')
-rw-r--r--api/post.go39
1 files changed, 37 insertions, 2 deletions
diff --git a/api/post.go b/api/post.go
index d62b85059..f581b1bf4 100644
--- a/api/post.go
+++ b/api/post.go
@@ -794,9 +794,44 @@ func sendNotificationEmail(c *Context, post *model.Post, user *model.User, chann
return
}
- if *utils.Cfg.EmailSettings.EnableEmailBatching {
- if err := AddNotificationEmailToBatch(user, post, team); err == nil {
+ if channel.Type == model.CHANNEL_DIRECT && channel.TeamId != team.Id {
+ // this message is a cross-team DM so it we need to find a team that the recipient is on to use in the link
+ if result := <-Srv.Store.Team().GetTeamsByUserId(user.Id); result.Err != nil {
+ l4g.Error(utils.T("api.post.send_notifications_and_forget.get_teams.error"), user.Id, result.Err)
return
+ } else {
+ // if the recipient isn't in the current user's team, just pick one
+ teams := result.Data.([]*model.Team)
+ found := false
+
+ for i := range teams {
+ if teams[i].Id == team.Id {
+ found = true
+ break
+ }
+ }
+
+ if !found {
+ team = teams[0]
+ }
+ }
+ }
+
+ if *utils.Cfg.EmailSettings.EnableEmailBatching {
+ var sendBatched bool
+
+ if result := <-Srv.Store.Preference().Get(user.Id, model.PREFERENCE_CATEGORY_NOTIFICATIONS, model.PREFERENCE_NAME_EMAIL_INTERVAL); result.Err != nil {
+ // if the call fails, assume it hasn't been set and use the default
+ sendBatched = false
+ } else {
+ // default to not using batching if the setting is set to immediate
+ sendBatched = result.Data.(model.Preference).Value != model.PREFERENCE_DEFAULT_EMAIL_INTERVAL
+ }
+
+ if sendBatched {
+ if err := AddNotificationEmailToBatch(user, post, team); err == nil {
+ return
+ }
}
// fall back to sending a single email if we can't batch it for some reason