<div class="markdown">
<p dir="auto">On 14 Sep 2014, at 23:35, Dato Simó wrote:</p>

<blockquote>
<p dir="auto">Yes, I should have clarified: as the subject indicated, I meant only when displaying incoming mail. Right now, MailMate reflows incoming mail to occupy the whole width of the display pane; but I would like to see shorter lines in reflowed text.</p>
</blockquote>

<p dir="auto">Ok, there is no built-in setting for that. You can get something close though using CSS. Create this path and file:</p>

<pre><code>~/Library/Application\ Support/MailMate/Resources/MmMessagesWebView/stylesheet.css
</code></pre>

<p dir="auto">And add the following lines to the file:</p>

<pre><code>p { max-width: 30em; }
div[markup="none"] div { max-width: 30em; }
</code></pre>

<p dir="auto">You may have to change the value 30 to something that works well with your font choice.</p>

<p dir="auto">I cannot guarantee that it'll work well for all emails, but it might be good enough for you.</p>

<p dir="auto">-- <br>
Benny</p>

</div>