commit | ed35c371dc8710547181fd524708e28a47bd7a95 | [log] [tgz] |
---|---|---|
author | Pieter Baauw <piba.nl.dev@gmail.com> | Wed Jul 22 19:51:54 2015 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Wed Jul 22 22:39:39 2015 +0200 |
tree | 20f85848531a5c07e97cf32bdb985e115dd1e245 | |
parent | 50bdda6e5164e85653ddf188da30545347c4b68a [diff] |
BUG/MEDIUM: mailer: DATA part must be terminated with <CRLF>.<CRLF> The dot is send in the wrong place. As defined in https://www.ietf.org/rfc/rfc2821.txt 'the character sequence "<CRLF>.<CRLF>" ends the mail text'
diff --git a/src/checks.c b/src/checks.c index 2179d4f..e386bee 100644 --- a/src/checks.c +++ b/src/checks.c
@@ -3243,8 +3243,8 @@ "Subject: [HAproxy Alert] ", msg, "\n", "\n", msg, "\n", - ".\r\n", "\r\n", + ".\r\n", NULL };