Yogesh Subhash Talekar wrote: > >When my Mailman sends a post to all members it attaches few lines to the >message which lookup these: > >List-Id: eurlist.listman.mydomain.com >List-Unsubscribe: <http://listman.mydomain.com/mailman/listinfo/eurlist>, > <mailto:[EMAIL PROTECTED]> >List-Post: <mailto:[EMAIL PROTECTED]> >List-Help: <mailto:[EMAIL PROTECTED]> >List-Subscribe: <http://listman.mydomain.com/mailman/listinfo/eurlist>, > <mailto:[EMAIL PROTECTED]> >Sender: [EMAIL PROTECTED] >Errors-To: [EMAIL PROTECTED] > > >Is it possible to *not* to have these. Which parameter is mm_cfg,py needs >to be changed?
For the List- headers see http://www.python.org/cgi-bin/faqw-mm.py?req=show&file=faq04.001.htp Also, the following is in Defaults.py # RFC 2369 defines List-* headers which are added to every message sent # through to the mailing list membership. These are a very useful aid to end # users and should always be added. However, not all MUAs are compliant and # if a list's membership has many such users, they may clamor for these # headers to be suppressed. By setting this variable to Yes, list owners will # be given the option to suppress these headers. By setting it to No, list # owners will not be given the option to suppress these headers (although some # header suppression may still take place, i.e. for announce-only lists, or # lists with no archives). ALLOW_RFC2369_OVERRIDES = Yes You don't want to delete Sender: or Errors-To: as that would affect bounce processing. -- Mark Sapiro <[EMAIL PROTECTED]> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan ------------------------------------------------------ Mailman-Users mailing list [EMAIL PROTECTED] http://mail.python.org/mailman/listinfo/mailman-users Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
