Skip to Content.
Sympa Menu

Documentation for Sympa

NAME

Sympa::Spindle::ProcessOutgoing - Workflow of message distribution

SYNOPSIS

use Sympa::Spindle::ProcessOutgoing;

my $spindle = Sympa::Spindle::ProcessOutgoing->new;
$spindle->spin;

DESCRIPTION

Sympa::Spindle::ProcessOutgoing defines workflow to distribute messages in outgoing spool using mailer.

If messages are stored into incoming spool, sooner or later Sympa::Spindle::ProcessIncoming fetches them, modifies header and body of them, shelves several transformations, and at last stores altered messages into outgoing spool.

When spin() method of this class is invoked, it reads the messages in outgoing spool and executes shelved transformations. Message transformations are done in the following order:

Then spin() method stores transformed message into mailer (See Sympa::Mailer).

Public methods

See also “Public methods” in Sympa::Spindle.

Properties

See also “Properties” in Sympa::Spindle.

SEE ALSO

Sympa::Mailer, Sympa::Message, Sympa::Spindle, Sympa::Spool::Outgoing.

HISTORY

Sympa::Spindle::ProcessOutgoing appeared on Sympa 6.2.13.

Message decoration was moved from Sympa::Spindle::ToList to this module on Sympa 6.2.59b.

Top of Page