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::Archive - Spool for messages waiting for archiving

Configuration Parameters

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

       queueoutgoing
           Directory path of archive spool.

           Note: Named such by historical reason.

Description

       Sympa::Spool::Archive implements the spool for messages waiting for archiving.

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

       next ( )
           Order is controlled by delivery date, then by reception date.

   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.

       {time}
           Unix time in floating point number when the message was stored.

History

       Sympa::Spool::Archive appeared on Sympa 6.2.

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

Name

       Sympa::Spool::Archive - Spool for messages waiting for archiving

See Also

       Sympa::Archive, Sympa::Message, Sympa::Spindle::ProcessArchive, Sympa::Spool.

Synopsis

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

         $spool->store($message);

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

See Also