diff options
author | bdrewery <bdrewery@FreeBSD.org> | 2014-04-11 08:51:02 +0800 |
---|---|---|
committer | bdrewery <bdrewery@FreeBSD.org> | 2014-04-11 08:51:02 +0800 |
commit | 79871236bfe25ba5d18c976e24bb5041d2b85da9 (patch) | |
tree | f1552adaefa521b213911b7db31ff8a8d4b779c7 /UPDATING | |
parent | 97ee7d0dd1733f6fe03c88372bf037e0180f1659 (diff) | |
download | freebsd-ports-gnome-79871236bfe25ba5d18c976e24bb5041d2b85da9.tar.gz freebsd-ports-gnome-79871236bfe25ba5d18c976e24bb5041d2b85da9.tar.zst freebsd-ports-gnome-79871236bfe25ba5d18c976e24bb5041d2b85da9.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
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 |