Skip to Content.
Sympa Menu

Documentation for Sympa

NAME

Sympa::Spool::Outgoing - Spool for outgoing messages

SYNOPSIS

use Sympa::Spool::Outgoing;
my $bulk = Sympa::Spool::Outgoing->new;

$bulk->store($message, ['user@dom.ain', 'user@other.dom.ain']);

my ($message, $handle) = $bulk->next;

DESCRIPTION

Sympa::Spool::Outgoing implements the spool for outgoing messages.

Methods

CONFIGURATION PARAMETERS

Following site configuration parameters in sympa.conf will be referred.

CAVEAT

Sympa::Spool::Outgoing is not a real subsclass of Sympa::Spool.

SEE ALSO

bulk(8), Sympa::Mailer, Sympa::Message.

HISTORY

Bulk module initially written by Serge Aumont appeared on Sympa 6.0. It used database tables to store and fetch packets and messages.

Support for DKIM signing was added on Sympa 6.1.

Rewritten Sympa::Bulk appeared on Sympa 6.2, using spools based on filesystem. It was renamed to Sympa::Spool::Outgoing on Sympa 6.2.45b.3.

Top of Page