So when I reply by email with a simple message like so:
A 4-line reply. Line 1.
Line 2.
Line 3.
Line 4.
The text of the message that’s actually posted in the forum becomes:
A 4-line reply. Line 1. Line 2. Line 3. Line 4.
It looks to me like the content filtering may be a bit too aggressive.
Specifically, in sp-email-post-imap.php, the function sp_process_inbox_imap() does a number of str_replace() operations on the raw content. I’m sure I don’t understand the deeper purpose behind some of these, but the culprit in my specific example case here looks to be this line:
$content = str_replace(chr(13).chr(10), ‘ ‘, $content);
Wondering if, rather than a space, the replacement character should be a “n” newline instead?
Thanks!
p.s. if it matters, I replied to the email via gmail’s standard web UI via the Chrome browser on a Mac.