http://www.perlmonks.org?node_id=409682


in reply to Re: using Email to Perl to append to a changelog.txt, html, or .xls?
in thread using Email to Perl to append to a changelog.txt, html, or .xls?

The mailbox was checked once every 30 minutes with a script that ran for 30 seconds, so simultaneous file access was high unlikely--but not impossible.
Hmmm. If you are 'reading' a mailbox, as a mail client might, then it seems you wouldn't run into the need to lock the file.

I'd would approach the problem like so:

my $mboxfhandle; # open $mboxfhandle for readonly my @mbox = <$mboxfhandle>; # Let's use lots of memory # rest of the process ...
Seems like this would catch each new message, and not conflict with any incoming messages.

( on further reflections, I imagine that a mail client must be able to mark messages as read, which would involve a write ... )

-------------------------------------
Nothing is too wonderful to be true
-- Michael Faraday

Replies are listed 'Best First'.
Re^3: using Email to Perl to append to a changelog.txt, html, or .xls?
by Xenograg (Scribe) on Nov 23, 2004 at 17:39 UTC
    I meant that simultaneous file access upon the *output file* was high unlikely--but not impossible--because the script should run for only 30 seconds every 30 minutes.