From aa5812b1b095488e37d27f6966c2b1f84b4ff41f Mon Sep 17 00:00:00 2001 From: Bryan Drewery Date: Fri, 11 Apr 2014 00:51:02 +0000 Subject: - Update to 5.4.33 - Move auth options into its own single group - Clarify PASSWD and VALIAS options Changes: (* was already applied in our 5.4.32) Matt Brookings * - Defaulted to Server::Disable=True in vusagec.conf * - Fixed bug that didn't install vusagec.conf - Changed relevant quota code to use storage_t 64bit type - Fixed bug where backfill code wouldn't compile when FILE_LOCKING was enabled - Updated MySQL module to support larger quota sizes - Fixed typo - Added disable_maildrop flag to MySQL limits feature - More changes to allow for larger quota sizes in MySQL module Tullio Andreatta - Dynamic allocation of valias data - Use of open/fchdir rather than getcwd/chdir to maintain current working directory - Fixed a broken symbolic link check Drew Wells - Modification to vdelivermail to properly handle Maildir paths that begin with "./" - Removed call to maildir_addquota inside user_over_maildirquota causing duplicate maildirsize entries --- UPDATING | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'UPDATING') diff --git a/UPDATING b/UPDATING index c6de054e2f75..eb022cf838cb 100644 --- a/UPDATING +++ b/UPDATING @@ -5,6 +5,18 @@ they are unavoidable. You should get into the habit of checking this file for changes each time you update your ports collection, before attempting any port upgrades. +20140410: + AFFECTS: users of mail/vpopmail + AUTHOR: bdrewery@FreeBSD.org + + If you are storing limits in MySQL, the following schema changes must be made: + + ALTER TABLE `limits` ADD `disable_maildrop` TINYINT(1) DEFAULT '0' NOT NULL AFTER `disable_spamassassin`; + ALTER TABLE `limits` MODIFY `diskquota` BIGINT UNSIGNED NOT NULL DEFAULT 0; + ALTER TABLE `limits` MODIFY `maxmsgcount` BIGINT UNSIGNED NOT NULL DEFAULT 0; + ALTER TABLE `limits` MODIFY `defaultquota` BIGINT UNSIGNED NOT NULL DEFAULT 0; + ALTER TABLE `limits` MODIFY `defaultmaxmsgcount` BIGINT UNSIGNED NOT NULL DEFAULT 0; + 20140403: AFFECTS: users of net/rabbitmq AUTHOR: olgeni@FreeBSD.org -- cgit v1.2.3