I am trying to use Mail::Box to view the mail in my mbox type mailbox, Parse it, then remove the read mail. Cant figure out how to remove it and could use some help. The script warns me that:
WARNING: Changes not written to read-only folder /var/spool/mail/jlahowet. and I'm running as root. Is there another way?
#!/usr/bin/perl -w
use strict;
use Mail::Box::Manager;
my $mailspool = "/var/spool/mail/jlahowet";
my $received = "/home/jlahowet/THOR/HAS/messages";
my $mgr = Mail::Box::Manager->new;
my $folder = $mgr->open(folder => $mailspool);
my $type = $folder->type;
print "$type\n";
my $name = $folder->name;
print "$name\n";
my $emails = $folder->messages;
print "$emails\n";
foreach my $message ($folder->messages) {
print $message->get('Subject') || '<no subject>', "\n";
$message->delete;
}
$folder->close;
exit;
UPDATE: Replacing the open command with
my $folder = $mgr->open(folder => $mailspool, access => 'rw'); give write access the the folder and then you can delete it... but I can only do it as root. I "ls" the mail folder and got:
-rw------- 1 jlahowet mail 3523 May 27 00:48 jlahowet. If I read this right, I own the file so I'm not sure why I have to be root to delete it.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.