The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Email::Delete::Maildir - Delete Messages from a mbox Folder

SYNOPSIS

use Email::Delete qw[delete_message];

my $message_id = shift @ARGV;

delete_message from     => 'some/mbox',
               matching => sub {
                 my $message = shift;
                 $message->header('Message-ID') =~ $message_id;
               };

DESCRIPTION

This software will delete messages from a given mbox folder.

You may be interested to know that every call to delete_message will lock properly (thus annoyingly) throughout the entire process of scanning and rebuilding the mbox.

SEE ALSO

Email::Delete, perl.

AUTHOR

Casey West, <casey@geeknest.com>.

COPYRIGHT

Copyright (c) 2004 Casey West.  All rights reserved.
This module is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.