NAME FML::Command::QmailExt - emulate qmail-ext style command parser. SYNOPSIS use FML::Command::QmailExt; my $extension = new FML::Command::QmailExt $curproc; if ( $extension->match($ENV{EXT}) ) { $extension->execute($ENV{EXT}); } DESCRIPTION This class provides qmail-ext style parser and fml8 command execution wrapper functions. METHODS new($curproc) constructor. match($extension) Environment variable EXT holds extention information. For example, a mail to ML-subscribe@VIRTUAL.DOMAIN is recognized as extension with "VIRTUAL.DOMAIN-ML-subscribe" in EXT variable. execute($extension) emulate command process. CODING STYLE See "http://www.fml.org/software/FNF/" on fml coding style guide. AUTHOR Ken'ichi Fukamachi COPYRIGHT Copyright (C) 2006 Ken'ichi Fukamachi All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. HISTORY FML::Command::QmailExt appeared in fml8 mailing list driver package. See "http://www.fml.org/" for more details.