logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Sympa::Spool::Automatic - Spool for incoming messages in automatic spool

Configuration Parameters

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

       queueautomatic
           Directory path of list creation spool.

Description

       Sympa::Spool::Automatic implements the spool for incoming messages in automatic spool.

   Methods
       See also "Public methods" in Sympa::Spool.

       next ( [ no_filter => 1 ], [ no_lock => 1 ] )
           Instancemethod.   Order  is  controlled  by  modification time of files and delivery date, then, if
           "no_filter" is not set, messages with possibly higher priority are chosen and  messages  with  lowest
           priority ("z" or "Z") are skipped.

       store ( $message, [ original => $original ] )
           In most cases, familyqueue(8) program stores messages to automatic spool.  This method is not used in
           ordinal case.

   Contextandmetadata
       See also "Marshaling and unmarshaling metadata" in Sympa::Spool.

       This class particularly gives following metadata:

       {date}
           Unix time when the message would be delivered.

History

       Sympa::Spool::Automatic appeared on Sympa 6.2.6.

6.2.76                                             2025-02-12                    Sympa::Spool::Automatic(3Sympa)

Name

       Sympa::Spool::Automatic - Spool for incoming messages in automatic spool

See Also

sympa_automatic(8), Sympa::Message, Sympa::Spool.

Synopsis

         use Sympa::Spool::Automatic;
         my $spool = Sympa::Spool::Automatic->new;

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

See Also