On Friday 12 September 2003 04:30, 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.
Courier has a hard-coded limit of 5k for a header. If you want to remove it then you need to patch courier and recompile courier. Go into the source code and find the courier/submit.C file. Look for the line that says if (l > headerlimit || l > 5000) and change it to if (l > headerlimit) "headerlimit" is defined as 100k so that ought to be large enough. Now recompile courier and you have a 100k limit in headers instead of 5k. Jeff Jansen ------------------------------------------------------- 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
