<div dir="ltr"><div><div>Hi,<br><br></div>when I a log message with a double linebreak "A\n\nA" to SMTPAppender, the resulting Email is not formatted properly.<br><br>The MIME parts are not parsed but are display as the message body. It looks like the double linebreak is written directly into the Subject-Header.<br>


<br></div>With a single linebreak I get the same problem in Gmail. In Outlook the email is formatted properly, only the subject is cut at the linebreak.<br><div><br></div><div>Could this be a bug in Logback?<br></div><div>

<br></div><div>Regards,<br>Arend<br></div><div></div><div><br><br></div><div>Logging call:<br>LoggerFactory.getLogger(Main.class).error("A\n\nA");<br>
<br><br>logback.xml:<br><configuration><br>    <root><br>        <appender class="ch.qos.logback.classic.net.SMTPAppender"><br>            <smtpHost>... smtpHost</smtpHost><br>            <to>... email</to><br>


            <subject>%logger{10} - %message</subject><br>            <layout class="ch.qos.logback.classic.PatternLayout"><br>                <pattern>%logger{10} - %message</pattern><br>


            </layout><br>        </appender><br>    </root><br></configuration><br><br><br></div><div><br><div>Email subject:<br>c.e.l.Main - A<br><br><br></div><div>Visible email body:<br></div>A<br>

MIME-Version: 1.0<br>Content-Type: multipart/mixed; <br>    boundary="----=_Part_0_14393847.1372070958822"<br><br>------=_Part_0_14393847.1372070958822<br>Content-Type: text/plain; charset=UTF-8<br>Content-Transfer-Encoding: 7bit<br>

<br>c.e.l.Main - A<br>A<br>------=_Part_0_14393847.1372070958822--<br><br></div><div></div><div>Email source:<br></div><div></div>... email headers<br><div>To: ...<br>Message-ID: ...<br>Subject: c.e.l.Main - A<br><br>A<br>

MIME-Version: 1.0<br>Content-Type: multipart/mixed; <br>    boundary="----=_Part_0_14393847.1372070958822"<br><br>------=_Part_0_14393847.1372070958822<br>Content-Type: text/plain; charset=UTF-8<br>Content-Transfer-Encoding: 7bit<br>

<br>c.e.l.Main - A<br>A<br>------=_Part_0_14393847.1372070958822--<br><br><br></div></div>