diff options
author | xtraeme <xtraeme@pkgsrc.org> | 2003-12-23 11:02:13 +0000 |
---|---|---|
committer | xtraeme <xtraeme@pkgsrc.org> | 2003-12-23 11:02:13 +0000 |
commit | ba66919f950fc68d97a5f09a481dff6914bcb5dd (patch) | |
tree | 64c2b43d0b28d595cbc5d417653d6d96a71b6192 /mail/mailman/files | |
parent | 839613806ef24d5545ec27bb10ff7b00bde026f7 (diff) | |
download | pkgsrc-ba66919f950fc68d97a5f09a481dff6914bcb5dd.tar.gz |
Update to 2.1.3 from pkgsrc-wip via Todd Vierling. This also closes
PR pkg/22820.
Changes:
- Closed a cross-site scripting exploit in the create cgi script.
- Improvements in the performance of the bounce processor.
Now, instead of processing each bounce immediately (which
can cause severe lock contention), bounce events are queued.
Every 15 minutes by default, the queued bounce events are
processed en masse, on a list-per-list basis, so that each
list only needs to be locked once.
- When some or all of a message's recipients have temporary
delivery failures, the message is moved to a "retry" queue.
This queue wakes up occasionally and moves the file back to
the outgoing queue for attempted redelivery. This should
fix most observed OutgoingRunner 100% cpu consumption,
especially for bounces to local recipients when using the
Postfix MTA.
- Optional support for fsync()'ing qfile data after writing.
Under some catastrophic system failures (e.g. power lose),
it would be possible to lose messages because the data
wasn't sync'd to disk. By setting SYNC_AFTER_WRITE to True
in Mailman/Queue/Switchboard.py, you can force Mailman to
fsync() queue files after flushing them. The benefits are
debatable for most operating environments, and you must
ensure that your Python has the os.fsync() function defined
before enabling this feature (it isn't, even on all
Unix-like operating systems).
And more... please review Changelog to see a complete list of changes.
Diffstat (limited to 'mail/mailman/files')
-rw-r--r-- | mail/mailman/files/install.local | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/mail/mailman/files/install.local b/mail/mailman/files/install.local deleted file mode 100644 index dc5298c1f1e..00000000000 --- a/mail/mailman/files/install.local +++ /dev/null @@ -1,20 +0,0 @@ -# mirror part of POST-INSTALL, but executed at PRE-INSTALL -case ${STAGE} in -POST-INSTALL) - cd @EXECDIR@ - # run bin/update - ./bin/update - # install data files - ${CP} support/pending_subscriptions.db @MAILMAN_DATADIR@/data/ - ${CHOWN} @MAILMAN_USER@:@MAILMAN_GROUP@ \ - @MAILMAN_DATADIR@/data/pending_subscriptions.db - ${CHMOD} 0664 @MAILMAN_DATADIR@/data/pending_subscriptions.db - ${CP} support/bowa-strip @MAILMAN_DATADIR@/filters/ - ${CHOWN} @MAILMAN_USER@:@MAILMAN_GROUP@ \ - @MAILMAN_DATADIR@/filters/bowa-strip - ${CHMOD} 0664 @MAILMAN_DATADIR@/filters/bowa-strip - ;; -*) - ;; -esac - |