use strict; package Mail::LocalDelivery; use Carp; use Email::Abstract; use File::Basename; use Fcntl ':flock'; use Mail::Internet; use Sys::Hostname; (my $HOSTNAME = hostname) =~ s/\..*//; use vars qw($VERSION @ISA @EXPORT @EXPORT_OK $ASSUME_MSGPREFIX); my $debuglevel = 0; $ASSUME_MSGPREFIX = 0; use constant DEFERRED => 75; use constant REJECTED => 100; use constant DELIVERED => 0; $VERSION = '0.304'; =head1 NAME Mail::LocalDelivery - Deliver mail to a local mailbox =head1 VERSION version 0.304 $Id: /my/pep/Mail-LocalDelivery/trunk/lib/Mail/LocalDelivery.pm 30787 2007-02-27T01:42:43.891228Z rjbs $ =head1 SYNOPSIS use Mail::LocalDelivery; my $x = new Mail::LocalDelivery(\@some_text); $x->deliver(); # Append to /var/spool/mail/you $x->deliver("/home/simon/mail/test") # Deliver to Unix mailbox $x->deliver("/home/simon/mail/test/") # Deliver to maildir =head1 DESCRIPTION This module has been superseded by L, which provides nearly all of the same features, and more, and better. Use it instead. =cut sub _debug { my ($self, $priority, $what) = @_; return $self->{logger}->($priority, $what) if $self->{logger}; return if $debuglevel < $priority; chomp $what; chomp $what; my ($subroutine) = (caller(1))[3]; $subroutine =~ s/(.*):://; my ($line) = (caller(0))[2]; warn "$line($subroutine): $what\n"; } =head1 METHODS =head2 C This creates a new object for delivery. The data can be in the form of an array of lines, a C object, a C object or a filehandle. As for options, if you don't want the "new/cur/tmp" structure of a classical maildir, set the one_for_all option, and you'll still get the unique filenames. new($data, one_for_all => 1); If you want "%" signs in delivery addresses to be expanded according to strftime(3), you can turn on the C option: new ($data, interpolate_strftime => 1); "interpolate_strftime" is not enabled by default for two reasons: backward compatibility (though nobody I know has a % in any mail folder name) and username interpolation: many people like to save messages by their correspondent's username, and that username may contain a % sign. If you are one of these people, you should $username =~ s/%/%%/g; You can also supply an "emergency" option to determine where mail goes in the worst case scenario. =cut sub new { my $class = shift; my $stuff = shift; my %opts = @_; my $self = { interpolate_strftime => 0, one_for_all => 0, %opts, }; # What sort of stuff do we have? if (eval { $stuff->isa('Mail::Internet') }) { $self->{email} = $stuff; } elsif (my $email = eval { Email::Abstract->new($self); }) { $self->{email} = $email->cast('Mail::Internet'); } elsif (ref $stuff eq "ARRAY" or ref $stuff eq "GLOB") { $self->{email} = Mail::Internet->new($stuff); } else { croak "Data was neither a mail object or a reference to something I understand"; } my $default_maildir = ((getpwuid($>))[7]) . "/Maildir/"; my $default_mbox = $ENV{MAIL} || (-d File::Spec->catdir($default_maildir, 'new') ? $default_maildir : ()) || ((grep { -d $_ } qw(/var/spool/mail/ /var/mail/))[0] . getpwuid($>)); $self->{default_mbox} = $default_mbox; $self->{emergency} ||= $default_mbox; return bless $self => $class; } =head2 deliver $delivery->deliver(@destinations); You can choose to deliver the mail into a mailbox by calling the C method; with no argument, this will look in: =over 3 =item 1 C<$ENV{MAIL}> =item 2 F =item 3 F =item 4 F<~/Maildir/> =back Unix mailboxes are opened append-write, then locked F, the mail written and then the mailbox unlocked and closed. If Mail::LocalDelivery sees that you have a maildir style system, where the argument is a directory, it'll deliver in maildir style. If the path you specify does not exist, Mail::LocalDelivery will assume mbox, unless it ends in /, which means maildir. If multiple maildirs are given, Mail::LocalDelivery will use hardlinks to deliver to them, so that multiple hardlinks point to the same underlying file. (If the maildirs turn out to be on multiple filesystems, you get multiple files.) If your arguments contain "/", C will create arbitarily deep subdirectories accordingly. Untaint your input by saying $username =~ s,/,-,g; C will return the filename(s) that it saved to. my @pathnames = deliver({noexit=>1}, file1, file2, ... ); my ($pathname) = deliver({noexit=>1}, file1); If for any reason C is unable to write the message (eg. you're over quota), Mail::LocalDelivery will attempt delivery to the C mailbox. If C was called with multiple destinations, the C action will only be taken if the message couldn't be delivered to any of the desired destinations. By default the C mailbox is set to the system mailbox. If we were unable to save to the emergency mailbox, C will return an empty list. =cut sub _nifty_interpolate { # perform ~user and %Y%m%d strftime interpolation my $self = shift; my @out = @_; my @localtime = localtime; if ($self->{interpolate_strftime} and grep { /%/ } @out) { require POSIX; import POSIX qw(strftime); @out = map { strftime($_, @localtime) } @out; } @out = map { s{^~/} {((getpwuid($>))[7])."/"}e; s{^~(\w+)/}{((getpwnam($1))[7])."/"}e; $_ } @out; return @out; } sub deliver { my $self = shift; my @files = $self->_nifty_interpolate(@_); @files = ($self->{default_mbox}) if not @files; my @actually_saved_to_files; $self->_debug(2, "delivering to @files"); # from man procmailrc: # If it is a directory, the mail will be delivered to a newly created, # guaranteed to be unique file named $MSGPRE- FIX* in the specified # directory. If the mailbox name ends in "/.", then this directory is # presumed to be an MH folder; i.e., procmail will use the next # number it finds available. If the mailbox name ends in "/", then # this directory is presumed to be a maildir folder; i.e., proc- mail will # deliver the message to a file in a subdirectory named "tmp" and rename # it to be inside a subdirectory named "new". If the mailbox is # specified to be an MH folder or maildir folder, procmail will create # the neces- sary directories if they don't exist, rather than treat the # mailbox as a non-existent filename. When procmail is delivering to # directories, you can specify multiple direc- tories to deliver to # (procmail will do so utilising hardlinks). # # for now we will support maildir and mbox delivery. # MH delivery and MSGPREFIX delivery remain todo. my %deliver_types = ( mbox => [], maildir => [], mh => [], msgprefix => [], ); for my $file (@files) { my $mailbox_type = $self->_mailbox_type($file); push @{ $deliver_types{$mailbox_type} }, $file; $self->_debug(3, "$file is of type $mailbox_type"); } foreach my $deliver_type (sort keys %deliver_types) { next if not @{ $deliver_types{$deliver_type} }; my $deliver_handler = "_deliver_to_$deliver_type"; $self->_debug(3, "calling deliver handler " . "$deliver_handler(@{$deliver_types{$deliver_type}})" ); # Don't try to deliver to things for which we have no delivery method. next unless $self->can($deliver_handler); push @actually_saved_to_files, $self->$deliver_handler(@{ $deliver_types{$deliver_type} }); } if (@actually_saved_to_files == 0) { # in this section you will often see # $!=DEFERRED; die("unable to write to @files or to $emergency"); # we say this instead of # exit DEFERRED; # because we want to be able to trap the die message inside an eval {} # for testing purposes. my $emergency = $self->{emergency}; if (not defined $emergency) { return; } else { if (grep ($emergency eq $_, @files)) { # already tried that mailbox return; } else { my $deliver_type = $self->_mailbox_type($emergency); my $deliver_handler = "_deliver_to_$deliver_type"; @actually_saved_to_files = $self->$deliver_handler($emergency); return if not @actually_saved_to_files; } } } return @actually_saved_to_files; } sub _mailbox_type { my $self = shift; my $file = shift; return 'maildir' if $file =~ /\/$/; return 'mh' if $file =~ /\/\.$/; if (-d $file) { return 'maildir' if (-d "$file/tmp" and -d "$file/new"); if (exists($self->{ASSUME_MSGPREFIX})) { return 'msgprefix' if $self->{ASSUME_MSGPREFIX}; return "maildir"; } return 'msgprefix' if $ASSUME_MSGPREFIX; return 'maildir'; } return 'mbox'; } sub _get_opt { my ($self, $arg) = @_; my $opt; if (ref $arg->[0] eq 'HASH') { Carp::carp "prepending arguments is deprecated; append them instead" unless @$arg == 1; $opt = shift @$arg; } elsif (ref $arg->[-1] eq 'HASH') { $opt = pop @$arg; } return $opt || {}; } sub _deliver_to_mbox { my $self = shift; my $opt = $self->_get_opt(\@_); my @saved_to = (); foreach my $file (@_) { # auto-create the parent dir. if (my $mkdir_error = $self->_mkdir_p(dirname($file))) { $self->_debug(0, $mkdir_error); next; } my $error = $self->_write_message( $file, { need_lock => 1, need_from => 1, extra_newline => 1 } ); if (not $error) { push @saved_to, $file; } else { $self->_debug(1, $error); } } return @saved_to; } sub _write_message { my $self = shift; my $file = shift; my $write_opts = shift || {}; $write_opts->{need_from} = 1 if not defined $write_opts->{need_from}; $write_opts->{need_lock} = 1 if not defined $write_opts->{need_lock}; $write_opts->{extra_newline} = 0 if not defined $write_opts->{extra_newline}; $self->_debug(3, "writing to $file; options @{[%$write_opts]}"); unless (open(FH, ">>$file")) { return "Couldn't open $file: $!"; } if ($write_opts->{need_lock}) { my $lock_error = $self->_audit_get_lock(\*FH, $file); return $lock_error if $lock_error; } seek FH, 0, 2; if ( not $write_opts->{need_from} and $self->{email}->head->header->[0] =~ /^From\s/ ) { $self->_debug(3, "mbox From line found, stripping because we're maildir"); $self->{email}->head->delete("From "); $self->{email}->unescape_from; } if ( $write_opts->{need_from} and $self->{email}->head->header->[0] !~ /^From\s/ ) { $self->_debug(3, "No mbox From line, making one up."); if (exists $ENV{UFLINE}) { $self->_debug( 3, "Looks qmail, but preline not run, prepending UFLINE, RPLINE, DTLINE" ); print FH $ENV{UFLINE}; print FH $ENV{RPLINE}; print FH $ENV{DTLINE}; } else { my $from = ( $self->{email}->get('Return-path') || $self->{email}->get('Sender') || $self->{email}->get('Reply-To') || # It might not be insane to include From header here. # -- rjbs, 2006-07-25 'root@localhost' ); chomp $from; # comment -> email@address $from = $1 if $from =~ /<(.*?)>/; # email@address (comment) -> email@address $from =~ s/\s*\(.*\)\s*//; # if any whitespace remains, get rid of it. $from =~ s/\s+//g; # strip timezone. (my $fromtime = localtime) =~ s/(:\d\d) \S+ (\d{4})$/$1 $2/; print FH "From $from $fromtime\n"; } } $self->_debug(4, "printing self as mbox string."); print FH $self->{email}->as_string or return "couldn't write to $file: $!"; # extra \n added because mutt seems to like a "\n\nFrom " in mbox files print FH "\n" if $write_opts->{extra_newline} or return "couldn't write to $file: $!"; if ($write_opts->{need_lock}) { flock(FH, LOCK_UN) or return "Couldn't unlock $file"; } close FH or return "Couldn't close $file after writing: $!"; $self->_debug(4, "returning success."); return 0; # success } # ---------------------------------------------------------- # NOT IMPLEMENTED # ---------------------------------------------------------- #sub _deliver_to_mh { my $self = shift; my @saved_to=(); } #sub _deliver_to_msgprefix { my $self = shift; my @saved_to=(); } # variables for _deliver_to_maildir my $maildir_time = 0; my $maildir_counter = 0; sub _deliver_to_maildir { my $self = shift; my @saved_to = (); $self->_debug(3, "will write to @_"); # since mutt won't add a lines tag to maildir messages, we'll add it here unless (length($self->{email}->get("Lines") || '')) { my $num_lines = @{ $self->{email}->body }; $self->{email}->head->add("Lines", $num_lines); $self->_debug(4, "Adding Lines: $num_lines header"); } if ($maildir_time != time) { $maildir_time = time; $maildir_counter = 0; } else { $maildir_counter++; } # write the tmp file. # hardlink to all the new files. # unlink the temp file. # write the tmp file in the first writable maildir directory. my $tmp_path; foreach my $file (my @maildirs = @_) { $file =~ s/\/$//; my $tmpdir = $self->{one_for_all} ? $file : "$file/tmp"; my $msg_file; do { $msg_file = join ".", ($maildir_time, $$ . "_$maildir_counter", $HOSTNAME); $maildir_counter++; } while (-e "$tmpdir/$msg_file"); $tmp_path = "$tmpdir/$msg_file"; $self->_debug(3, "writing to $tmp_path"); # auto-create the maildir. if ( my $mkdir_error = $self->_mkdir_p( $self->{one_for_all} ? ($file) : map { "$file/$_" } qw(tmp new cur) ) ) { $self->_debug(0, $mkdir_error); next; } my $error = $self->_write_message( $tmp_path, { need_from => 0, need_lock => 0 } ); last unless $error; # only write to the first writeable maildir $self->_debug(1, $error); unlink $tmp_path; $tmp_path = undef; next; } if (not $tmp_path) { return 0; } # unable to write to any of the specified maildirs. # # it is now in tmp/. hardlink to all the new/ destinations. # foreach my $file (my @maildirs = @_) { $file =~ s/\/$//; my $msg_file; my $newdir = $self->{one_for_all} ? $file : "$file/new"; $maildir_counter = 0; do { $msg_file = join ".", ($maildir_time = time, $$ . "_$maildir_counter", $HOSTNAME); $maildir_counter++; } while (-e "$newdir/$msg_file"); # auto-create the maildir. if ( my $mkdir_error = $self->_mkdir_p( $self->{one_for_all} ? ($file) : map { "$file/$_" } qw(tmp new cur) ) ) { $self->_debug(0, $mkdir_error); next; } my $new_path = "$newdir/$msg_file"; $self->_debug(3, "maildir: hardlinking to $new_path"); if (link $tmp_path, $new_path) { push @saved_to, $new_path; } else { require Errno; import Errno qw(EXDEV); if ($! == &EXDEV) { # Invalid cross-device link, see /usr/**/include/*/errno.h $self->_debug(0, "Couldn't link $tmp_path to $new_path: $!"); $self->_debug(0, "attempting direct maildir delivery to $new_path..."); push @saved_to, $self->_deliver_to_maildir($file); next; } else { $self->_debug(0, "Couldn't link $tmp_path to $new_path: $!"); } } } # unlink the temp file unlink $tmp_path or $self->_debug(1, "Couldn't unlink $tmp_path: $!"); return @saved_to; } sub _audit_get_lock { my $self = shift; my $FH = shift; my $file = shift; $self->_debug(4, " attempting to lock file $file"); for (1 .. 10) { if (flock($FH, LOCK_EX)) { $self->_debug(4, " successfully locked file $file"); return; } else { sleep $_ and next; } } $self->_debug(1, my $errstr = "Couldn't get exclusive lock on $file"); return $errstr; } sub _mkdir_p { my $self = shift; return unless @_; foreach my $path (@_) { next if -d $path; $self->_debug(4, "$path doesn't exist, creating."); eval { File::Path::mkpath($path, 0, 0755) }; return $@ if $@; } return; } 1; __END__ =head1 LICENSE The usual: this program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =head1 CAVEATS If your mailbox file in /var/spool/mail/ doesn't already exist, you may need to use your standard system MDA to create it. After it's been created, Mail::LocalDelivery should be able to append to it. Mail::LocalDelivery may not be able to create /var/spool/mail because programs run from .forward don't inherit the special permissions needed to create files in that directory. =head1 SEE ALSO L, L, L =head1 PERL EMAIL PROJECT This module is maintained by the Perl Email Project, and is considered superseded by L. L =head1 AUTHORS This code was originally written by Simon Cozens, extended by Meng Weng Wong, maintained by Jose Castro, then passed along for maintenance to the Perl Email Project. Its current maintainer is Ricardo Signes, sponsored by Listbox.com.