Found this in the archives:
-------
Courier has a 5k hardcoded limit for header size on messages.
You'll find it in courier/submit.C in the source. Look for the line that
says
if (l > headerlimit || l > 5000)
This means if the total header length is great than 5k courier will reject
the
message. Remove the second half of the test so the line looks like this.
if (l > headerlimit)
and rebuild courier. 'headerlimit' is a constant defined in submit.C as
"100000", which ought to be big enough for any header!
If you patch submit.C then you shouldn't see this error again.
Jeff Jansen
--------
Mark Constable wrote:
> Got someone trying to send a message to one of our users
> with 112 email IDs in the To: line and a header size of
> aprox 7600 bytes. It's being rejected by courier for the
> single recipient on our server. I could advise the original
> sender to make various alterations but the argument that
> always comes back is "it works for everyone else and no
> other mail server blocks this message".
>
> I've got batchsize:5000 and bofh:maxrcpts 5000 but I'm
> not sure what parameter applies in this case to allow
> these obnoxiously large header messages to get through ?
>
> --markc
>
>
>
>
>
> -------------------------------------------------------
> This sf.net email is sponsored by:ThinkGeek
> Welcome to geek heaven.
> http://thinkgeek.com/sf
> _______________________________________________
> courier-users mailing list
> [EMAIL PROTECTED]
> Unsubscribe:
> https://lists.sourceforge.net/lists/listinfo/courier-users
-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
courier-users mailing list
[EMAIL PROTECTED]
Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users