Hi list, After a decade, I get to run a mail server again. Back then, I had used DSPAM. Now, I want to give CRM114 a try. Excuse my newbie question. I find all the X-CRM114 lines appended to the body of incoming emails. That cannot be correct, or? Interestingly, it starts working if I remove the CR from the RFC5322 email: $ file /tmp/SomeMail.rfc5322.eml /tmp/SomeMail.rfc5322.eml: SMTP mail, ASCII text, with CRLF line terminators $ wc -l /tmp/SomeMail.rfc5322.eml 98 /tmp/SomeMail.rfc5322.eml $ cat /tmp/SomeMail.rfc5322.eml | ./mailreaver.crm | tail -n 6 JTJFZGUmbXNnaWQ9JTNDMjAxNjExMTgyMDU3NDklMkVITSUyRTAwMDAwMDAwMDAwMDhqayU0 MGF2YW5lZ2FzczA0JTJFd3dsMTcyOSUyRWhhbm1haWwlMkVuZXQlM0UiPgo= X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-27CA1CFB X-CRM114-CacheID: sfid-20161119_172554_829178_39744B64 X-CRM114-Status: UNSURE ( 0.00 ) X-CRM114-Notice: Please train this message. If I convert it to "unix style" line breaks it appends the X-CRM114 lines to the header. As it should be - I think: $ cat /tmp/SomeMail.rfc5322.eml|tr -d '015円'|./mailreaver.crm|grep "^$" -B4 -A3 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-27CA1CFB X-CRM114-CacheID: sfid-20161119_174156_811984_46A16809 X-CRM114-Status: UNSURE ( 0.00 ) X-CRM114-Notice: Please train this message. PGh0bWw+PGhlYWQ+PHN0eWxlPiBwIHttYXJnaW4tdG9wOjBweDttYXJnaW4tYm90dG9tOjBw eDt9IDwvc3R5bGU+PC9oZWFkPgo8Ym9keT48ZGl2IHN0eWxlPSJmb250LXNpemU6MTJweDsg Zm9udC1mYW1pbHk66rW066a8LOq1tOumvOyytCxHdWxpbSxCYWVrbXVrIERvdHVtLFVuZG90 The mailreaver.crm is the unaltered one that shipped with Ubuntu 14.04. Is this behavior normal or am I missing something? Simon