diff options
| author | fukachan <fukachan> | 2001-05-29 16:21:15 +0000 |
|---|---|---|
| committer | fukachan <fukachan> | 2001-05-29 16:21:15 +0000 |
| commit | adb93a709dd5e6b4080f7d0e1c9e6b1250ab2e5b (patch) | |
| tree | 4a383e2db0f1f9f19cbcfcd16f87fecbdaa76ebd /fml/lib/FML/Process/QueueManager.pm | |
| parent | 2b66d7580815f48c1bd7fb9ff50834a94e957dd9 (diff) | |
| download | fml8-adb93a709dd5e6b4080f7d0e1c9e6b1250ab2e5b.tar.gz fml8-adb93a709dd5e6b4080f7d0e1c9e6b1250ab2e5b.tar.bz2 fml8-adb93a709dd5e6b4080f7d0e1c9e6b1250ab2e5b.zip | |
clean up documents
Diffstat (limited to 'fml/lib/FML/Process/QueueManager.pm')
| -rw-r--r-- | fml/lib/FML/Process/QueueManager.pm | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/fml/lib/FML/Process/QueueManager.pm b/fml/lib/FML/Process/QueueManager.pm index b090eea9..b131c1e0 100644 --- a/fml/lib/FML/Process/QueueManager.pm +++ b/fml/lib/FML/Process/QueueManager.pm @@ -4,7 +4,7 @@ # All rights reserved. This program is free software; you can # redistribute it and/or modify it under the same terms as Perl itself. # -# $FML: QueueManager.pm,v 1.1 2001/05/18 10:39:29 fukachan Exp $ +# $FML: QueueManager.pm,v 1.2 2001/05/19 03:40:36 fukachan Exp $ # package FML::Process::QueueManager; @@ -19,9 +19,21 @@ FML::Process::QueueManager - provide queue manipulation functions =head1 SYNOPSIS use FML::Process::QueueManager; + my $obj = new FML::Process::QueueManager { directory => $queue_dir }; + $obj->send($curproc); =head1 DESCRIPTION +not yet implemented. + +Now it can send a mail in queue. + +=head1 METHODS + +=head2 C<new()> + +constructor. + =cut use FML::Log qw(Log LogWarn LogError); @@ -39,6 +51,12 @@ sub new } +=head2 C<send($curproc)> + +try to send all mails in the queue. + +=cut + sub send { my ($self, $curproc) = @_; |
