Joe Creel skribis 2007-06-07 11:09 (-0500): > Also looking through the code I see I see a reference to "$self" as > the first argument to plugins and that appears to reference a > structure, can anyone tell me or point me to a web page or white paper > that describes this structure?
This is the standard way of Object Orientation in Perl. You may want to read a book or tutorial about this to get familiar with it. Some suggestions: <http://tnx.nl/tut,bp>. The subroutines in qpsmtpd plugins are object methods, $self is the invocant and represents the plugin itself. Its class is Qpsmtpd::Plugin, which is underdocumented. Some information can be found at <http://wiki.qpsmtpd.org/api:start>. -- korajn salutojn, juerd waalboer: perl hacker <[EMAIL PROTECTED]> <http://juerd.nl/sig> convolution: ict solutions and consultancy <[EMAIL PROTECTED]>
