> another question: how do I add a footer which consists of multiple lines?

This is easy.  You have two primary options.  One is to use xml:space to
preserve the whitespace:

  <mailet match="..." class="AddFooter">
     <text xml:space="preserve">
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
</text>

The second option is to use the <![CDATA[...]]> construct, which provides
more flexibility.  That would be:

  <mailet match="..." class="AddFooter">
     <text>
<![CDATA[-------------------------------------------------------------------
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]>
    </text>

Not sure why anyone would want to make it harder.

        --- Noel


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to