| From | Sent On | Attachments |
|---|---|---|
| Papo Napolitano | Mar 9, 2001 1:53 pm | |
| Papo Napolitano | Mar 9, 2001 6:59 pm | |
| Roland Schneider | Mar 10, 2001 1:37 am | |
| Papo Napolitano | Mar 10, 2001 2:28 pm | |
| Alexei Batyr' | Mar 11, 2001 4:15 am | |
| Roland Schneider | Mar 11, 2001 7:57 am | |
| James.Duanmu | Mar 11, 2001 5:04 pm | |
| Alexei Batyr' | Mar 12, 2001 3:11 am | |
| Kris Kelley | Mar 12, 2001 7:43 am | |
| Kirill Pushkin | Mar 12, 2001 8:14 am | |
| Bill Michell | Mar 12, 2001 8:52 am | |
| Sam Varshavchik | Mar 12, 2001 4:02 pm | |
| Sam Varshavchik | Mar 12, 2001 4:03 pm | |
| Alexei Batyr' | Mar 13, 2001 1:24 am | |
| Bill Michell | Mar 13, 2001 2:30 am | |
| Kirill Pushkin | Mar 13, 2001 4:20 am |
| Subject: | Re: [courier-users] 8bit Again | |
|---|---|---|
| From: | Roland Schneider (rol...@serv.ch) | |
| Date: | Mar 10, 2001 1:37:28 am | |
| List: | net.sourceforge.lists.courier-users | |
--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") )





