>>>>> "PLH" == Phillip L Harbison <[EMAIL PROTECTED]> writes:

    PLH> Does anyone have any data on the relative performance of
    PLH> MHonarc and Pipermail?  One thing I like about MHonarc is I
    PLH> can collect messages and process them in a batch.  For some
    PLH> of my busy lists, I process a batch every 5 minutes rather
    PLH> than processing messages as they are received.  I have not
    PLH> figured out how to do this with Pipermail.

You get this for free in Mailman 2.1, since it implements a separate
queue for the archiver.  By default, the archiver queue runner runs
once per minute, but it would take a very minor bit of source hacking
to make it run, say once every 5 minutes.

In Mailman/Queue/ArchRunner.py change

    class ArchRunner(Runner):
        QDIR = mm_cfg.ARCHQUEUE_DIR

to

    class ArchRunner(Runner):
        QDIR = mm_cfg.ARCHQUEUE_DIR
        SLEEPTIME = mm_cfg.minutes(5)

HTH,
-Barry

------------------------------------------------------
Mailman-Users mailing list
[EMAIL PROTECTED]
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/

This message was sent to: archive@jab.org
Unsubscribe or change your options at
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Reply via email to