June 2002
Beginner
759 pages
80h 42m
English
import
import()
Creates an instance of the filter. Perl calls import indirectly when it encounters
use Milter in your Perl
program. import will always
have one parameter passed by Perl, which corresponds to the name
of your package—in this case, Milter.
So, if you do this:
use Milter qw(pinta nina santa-maria);
You get in @_:
@_[0] => "Milter" @_[1] => "pinta" @_[2] => "nina" @_[3] => "santa-maria"
import then calls
filter_add before
finishing.