diff options
Diffstat (limited to 'fml/lib/FML/Command/Admin/flush.pm')
| -rw-r--r-- | fml/lib/FML/Command/Admin/flush.pm | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/fml/lib/FML/Command/Admin/flush.pm b/fml/lib/FML/Command/Admin/flush.pm new file mode 100644 index 00000000..7645e1f5 --- /dev/null +++ b/fml/lib/FML/Command/Admin/flush.pm @@ -0,0 +1,63 @@ +#-*- perl -*- +# +# Copyright (C) 2004 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. +# +# $FML: @template.pm,v 1.8 2004/01/01 07:29:27 fukachan Exp $ +# + +package FML::Command::Admin::flush; +use strict; +use vars qw(@ISA @EXPORT @EXPORT_OK $AUTOLOAD); +use Carp; + +use FML::Command::Admin::flushq; +@ISA = qw(FML::Command::Admin::flushq); + + +# Descriptions: subscribe user +# Arguments: OBJ($self) OBJ($curproc) HASH_REF($command_args) +# Side Effects: forward request to subscribe module +# Return Value: none +sub process +{ + my ($self, $curproc, $command_args) = @_; + $self->SUPER::process($curproc, $command_args); +} + + +=head1 NAME + +FML::Command::Admin::flush - flush mail queue + +=head1 SYNOPSIS + +=head1 DESCRIPTION + +=head1 METHODS + +=head1 CODING STYLE + +See C<http://www.fml.org/software/FNF/> on fml coding style guide. + +=head1 AUTHOR + +Ken'ichi Fukamachi + +=head1 COPYRIGHT + +Copyright (C) 2004 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. + +=head1 HISTORY + +FML::Command::Admin::flush appeared in fml8 mailing list driver package. +See C<http://www.fml.org/> for more details. + +=cut + + +1; |
