Browse Source

Add X-Auto-Response-Suppress header to outgoing messages (#6492)

This is a header used to suggest mail servers not to respond to a message
with an auto-responder:

 https://docs.microsoft.com/en-us/openspecs/exchange_server_protocols/ms-oxcmail/ced68690-498a-4567-9d14-5c01f974d8b1

This header is also used by github and gitlab in outgoing messages.

Fixes #6484
for-closed-social
mrsdizzie 5 years ago
committed by techknowlogick
parent
commit
54c1cb6c5f
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      modules/mailer/mailer.go

+ 1
- 0
modules/mailer/mailer.go View File

@ -40,6 +40,7 @@ func NewMessageFrom(to []string, fromDisplayName, fromAddress, subject, body str
msg.SetHeader("To", to...)
msg.SetHeader("Subject", subject)
msg.SetDateHeader("Date", time.Now())
msg.SetHeader("X-Auto-Response-Suppress", "All")
plainBody, err := html2text.FromString(body)
if err != nil || setting.MailService.SendAsPlainText {

Loading…
Cancel
Save