summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--services/mailer/mail_issue.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/services/mailer/mail_issue.go b/services/mailer/mail_issue.go
index bd5008f076..1451150347 100644
--- a/services/mailer/mail_issue.go
+++ b/services/mailer/mail_issue.go
@@ -126,6 +126,10 @@ func mailIssueCommentBatch(ctx *mailCommentContext, users []*user_model.User, vi
langMap := make(map[string][]*user_model.User)
for _, user := range users {
+ if !user.IsActive {
+ // Exclude deactivated users
+ continue
+ }
// At this point we exclude:
// user that don't have all mails enabled or users only get mail on mention and this is one ...
if !(user.EmailNotificationsPreference == user_model.EmailNotificationsEnabled ||