From: <jgr...@us...> - 2003-05-05 17:50:16
|
Update of /cvsroot/popfile/engine/POPFile In directory sc8-pr-cvs1:/tmp/cvs-serv9618/POPFile Modified Files: Configuration.pm Module.pm Log Message: Numerous updates to the mail parser to make colorization work for pseudowords, and fix various bugs Index: Configuration.pm =================================================================== RCS file: /cvsroot/popfile/engine/POPFile/Configuration.pm,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** Configuration.pm 25 Mar 2003 05:24:54 -0000 1.16 --- Configuration.pm 5 May 2003 17:50:11 -0000 1.17 *************** *** 231,235 **** 'server', 'pop3_secure_server', 'separator', 'pop3_separator', ! 'optoo', 'pop3_toptoo', # Parameters that are now handled by UI::HTML --- 231,235 ---- 'server', 'pop3_secure_server', 'separator', 'pop3_separator', ! 'toptoo', 'pop3_toptoo', # Parameters that are now handled by UI::HTML Index: Module.pm =================================================================== RCS file: /cvsroot/popfile/engine/POPFile/Module.pm,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** Module.pm 25 Mar 2003 05:24:54 -0000 1.6 --- Module.pm 5 May 2003 17:50:11 -0000 1.7 *************** *** 21,28 **** # work (this is optional for modules that do not need to perform any service) # # forked() - called when a module has forked the process. This is called within the child ! # process and should be used to clean up # ! # reaper() - called when a process has terminated to give a module a chance to do # whatever clean up is needed # --- 21,30 ---- # work (this is optional for modules that do not need to perform any service) # + # prefork() - called when a module has requested a fork, but before the fork happens + # # forked() - called when a module has forked the process. This is called within the child ! # process and should be used to clean up # ! # reaper() - called when a process has terminated to give a module a chance to do # whatever clean up is needed # *************** *** 191,194 **** --- 193,210 ---- return 1; + } + + # --------------------------------------------------------------------------------------------- + # + # prefork + # + # This is called when some module is about to fork POPFile + # + # There is no return value from this method + # + # --------------------------------------------------------------------------------------------- + sub prefork + { + my ( $self ) = @_; } |