| Net-POP3-PerMsgHandler documentation | Contained in the Net-POP3-PerMsgHandler distribution. |
Net::POP3::PerMsgHandler::Control - object for per_message callback
Version 0.01
This is mutator. If true, delete message after callback. The default is false.
This is mutator. If true, disconnect from server after callback. The default is false.
Net::POP3::PerMsgHandler, Net::POP3, Email::MIME, Email::MIME::Attachment::Stripper, Mail::Message, Mail::Message::Attachment::Stripper
bokutin, <bokutin at cpan.org>
Copyright 2007 bokutin, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| Net-POP3-PerMsgHandler documentation | Contained in the Net-POP3-PerMsgHandler distribution. |
package Net::POP3::PerMsgHandler::Control;
our $VERSION = '0.01'; use strict; use warnings; use base qw(Class::Accessor::Fast); __PACKAGE__->mk_accessors( qw/ delete quit / );
1;