diff options
author | Bryan Drewery <bdrewery@FreeBSD.org> | 2014-04-11 00:51:02 +0000 |
---|---|---|
committer | Bryan Drewery <bdrewery@FreeBSD.org> | 2014-04-11 00:51:02 +0000 |
commit | aa5812b1b095488e37d27f6966c2b1f84b4ff41f (patch) | |
tree | f1552adaefa521b213911b7db31ff8a8d4b779c7 /UPDATING | |
parent | dc43860dcd1162fe10b34c166a16c5645f82b213 (diff) | |
download | ports-aa5812b1b095488e37d27f6966c2b1f84b4ff41f.tar.gz ports-aa5812b1b095488e37d27f6966c2b1f84b4ff41f.zip |
- 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 "./"
<kenji@kens.fm>
- Removed call to maildir_addquota inside user_over_maildirquota causing duplicate
maildirsize entries
Notes
Notes:
svn path=/head/; revision=350866
Diffstat (limited to 'UPDATING')
-rw-r--r-- | UPDATING | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -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 |