Email::LocalDelivery::Store - deliver mail via L<Email::Store>


Email-LocalDelivery-Store documentation Contained in the Email-LocalDelivery-Store distribution.

Index


Code Index:

NAME

Top

Email::LocalDelivery::Store - deliver mail via Email::Store

SYNOPSIS

Top

 use Email::LocalDelivery;
 use Email::FolderType::Register qw[register_type];
 register_type Store => sub { $_[0] =~ m/^DBI/i }; 
 ...
 Email::LocalDelivery->deliver($mail, $dsn) or die "couldn't deliver to $dsn";

 ...where $dsn is a full DBI DSN, including user= and password=, e.g.
 'DBI:mysql:database=DATABASE;host=HOSTNAME;port=PORT;user=USER;password=PASSWORD'

DESCRIPTION

Top

This module is an Email::LocalDelivery wrapper for Email::Store, which is a "framework for database-backed email storage."

It allows you to easily swap in database email storage instead of Mbox or Maildir.

Just register the "Store" FolderType, like this:

and then call Email::LocalDelivery->deliver( $mail, $dsn )

This module was created to allow Siesta to archive mail in MySQL.

METHODS

Top

deliver( $rfc822, @dsns )

$rfc822 is an RFC822 formatted email message, and @dsns is a list of DBI DSN strings.

Since Email::Store is instantiated with the DSN, and I really don't know what I'm doing, I had to eval 'use Email::Store $dsn' inside the deliver() method. I suspect that this will blow up if you try to pass more than one DSN, so I made it exit after the first one.

ATTENTION

Top

Email::Store (obviously) requires some form of database backend. Since you will have already figured all that out, this module doesn't test your database connection itself.

AUTHOR

Top

Bowen Dwelle <bowen@dwelle.org> http://www.dwelle.org/

COPYRIGHT

Top

SEE ALSO

Top

siesta, Email::LocalDelivery, Email::FolderType, Email::Store


Email-LocalDelivery-Store documentation Contained in the Email-LocalDelivery-Store distribution.
use strict;
package Email::LocalDelivery::Store;
our $VERSION = '0.01';
use File::Path qw(mkpath);
use File::Basename qw( dirname );

sub deliver {
    my ($class, $mail, @dsns) = @_;

    my @delivered;
    for my $dsn (@dsns) {
	eval "use Email::Store '$dsn'";
        my $stored = Email::Store::Mail->store($mail);
        push @delivered, $stored;
	last;
    }
    return @delivered;
}

1;
__END__