[Mimedefang] Boilerplate?

Jason Englander jason at englanders.cc
Wed May 8 14:47:38 EDT 2002


On Wed, 8 May 2002, J.F. Noonan wrote:

> Hi,
>
> I'm new to mimedefang and not a perl hacker.  I have searched
> through the sources and I can't figure out where the boilerplate
> comes from and how to change it.
>
> TIA for any help.

Check the mimedefang-filter man page for 'append_boilerplate'.  Here's
an example using it from MIMEDefang 2.9:

sub filter_end {
    my($entity) = @_;
    if ($Boilerplate ne "") {
        append_boilerplate($entity, $Boilerplate);
    }
}

So, to change it to say 'ooga-booga' you would change it to this:

sub filter_end {
    my($entity) = @_;
    append_boilerplate($entity, "ooga-booga");
}


-- 
Jason Englander
jason at englanders.cc





More information about the MIMEDefang mailing list