Browse Source

Switch to use -f instead of -F for sendmail (#9961)

Fix #9385
tags/v1.10.5
zeripath 4 years ago
parent
commit
700611cc18
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      services/mailer/mailer.go

+ 1
- 1
services/mailer/mailer.go View File

@@ -240,7 +240,7 @@ func (s *sendmailSender) Send(from string, to []string, msg io.WriterTo) error {
var closeError error
var waitError error

args := []string{"-F", from, "-i"}
args := []string{"-f", from, "-i"}
args = append(args, setting.MailService.SendmailArgs...)
args = append(args, to...)
log.Trace("Sending with: %s %v", setting.MailService.SendmailPath, args)

Loading…
Cancel
Save