Roger Richmond wrote: > >Pass Mime Types- > >multipart > >multipart/mixed > >multipart/alternative
The above two lines are redundant because you are alreaty accepting all multipart types with the first line. >text/plain > >image You are accepting attached images. This means any message with an attached image will be multipart after content filtering and will result in the footer being added as an attachment to those messages. [...] >Edit collapse alternatives and Edit convert HTML are both YES. > > > >The problem - one of the recipients' messages keeps bouncing with this error >message: > >The attached message matched the ukmastocytosissupport_ukmasto.org mailing >list's content filtering rules and was prevented from being forwarded on to >the list membership. You are receiving the only remaining copy of the >discarded message. The message being bounced is a text/html message as opposed to a multipart/alternative message with text/plain and text/html alternatives. Since you don't accept text/html, the entire message is filtered out. You want to add text/html to the pass_mime_types list. Doing so will accept this message and convert it to text/plain. It won't affect multipart/alternative messages as they are already being collapsed to the first (text/plain) part. Note that if you encounter problems with the conversion of HTML to plain text, see the FAQ at <http://wiki.list.org/display/DOC/Mailman+and+CPanel>. -- 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://wiki.list.org/x/AgA3 Security Policy: http://wiki.list.org/x/QIA9 Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/ Unsubscribe: http://mail.python.org/mailman/options/mailman-users/archive%40jab.org
