16 messages in net.sourceforge.lists.courier-usersRe: [courier-users] 8bit Again
FromSent OnAttachments
Papo NapolitanoMar 9, 2001 1:53 pm 
Papo NapolitanoMar 9, 2001 6:59 pm 
Roland SchneiderMar 10, 2001 1:37 am 
Papo NapolitanoMar 10, 2001 2:28 pm 
Alexei Batyr'Mar 11, 2001 4:15 am 
Roland SchneiderMar 11, 2001 7:57 am 
James.DuanmuMar 11, 2001 5:04 pm 
Alexei Batyr'Mar 12, 2001 3:11 am 
Kris KelleyMar 12, 2001 7:43 am 
Kirill PushkinMar 12, 2001 8:14 am 
Bill MichellMar 12, 2001 8:52 am 
Sam VarshavchikMar 12, 2001 4:02 pm 
Sam VarshavchikMar 12, 2001 4:03 pm 
Alexei Batyr'Mar 13, 2001 1:24 am 
Bill MichellMar 13, 2001 2:30 am 
Kirill PushkinMar 13, 2001 4:20 am 
Actions with this message:
Paste this link in email or IM:
Paste this link in email or IM:
Atom feed for this thread
Paste this URL into your reader:
Subject:Re: [courier-users] 8bit AgainActions...
From:Papo Napolitano (pa@dosalcubo.com)
Date:Mar 10, 2001 2:28:23 pm
List:net.sourceforge.lists.courier-users

Thanks Roland... It's now working just fine =)

----- Original Message ----- From: "Roland Schneider" <rol@serv.ch> To: <cour@lists.sourceforge.net> Sent: Saturday, March 10, 2001 6:37 AM Subject: Re: [courier-users] 8bit Again

--On Freitag, 9. März 2001 18:54 -0300 Papo Napolitano <pa@dosalcubo.com> wrote:

Hi... I've the "8bit-content-without-proper-header" problem, I'm trying to put the headers myself using maildrop and a global filter (which is working and actually inserting the headers) but I'm still receiving the 550 error. Here are the contents of the files I've modified:

I had the same problems, Cron does not know anything about MIME, same with other tools (logcheck etc) and most of my customers... If mail cant be sent for any reason I want courier to generate a bounce later, but for this the mail must be accepted first.

Edit the following three lines in courier/submit2.C (lines wrapped), this makes MIME=none the default and passes all 'bad' Mail.

Setting MIME=8bit in courierd/esmtpd will not affect sendmails behavior when called via command-line, but will still check the headers of incoming mail for non-7bit and passes the body always.

Roland

Index: courier/submit2.C 539c539 < if (rwrfcptr->rfcviolation & RFC2045_ERR8BITHEADER)

---

if ( mime && strcmp(mime, "none") && (rwrfcptr->rfcviolation &

RFC2045_ERR8BITHEADER) ) 548c548 < if (rwrfcptr->rfcviolation & RFC2045_ERR8BITCONTENT)

if ( mime && strcmp(mime, "none") && strcmp(mime, "8bit") &&

(rwrfcptr->rfcviolation & RFC2045_ERR8BITCONTENT) ) 584c584 < if (!mime || strcmp(mime, "none"))

if ( mime && strcmp(mime, "none") )