| Email-LocalDelivery-Store documentation | Contained in the Email-LocalDelivery-Store distribution. |
Email::LocalDelivery::Store - deliver mail via Email::Store
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'
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.
$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.
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.
Bowen Dwelle <bowen@dwelle.org> http://www.dwelle.org/
Copyright (C) 2004 Bowen Dwelle. All Rights Reserved.
This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| 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__