diff options
author | Aaron W. Swenson <titanofold@gentoo.org> | 2015-12-09 07:44:37 -0500 |
---|---|---|
committer | Aaron W. Swenson <titanofold@gentoo.org> | 2015-12-09 07:44:37 -0500 |
commit | c20f39cdcba8d3f75fcd7d6c09e80d2ee0655e40 (patch) | |
tree | cdb2eac1c0952a5c11fc5950cab5a985de31611e /mail-client/roundcube/files | |
parent | kde-plasma/breeze-gtk: remove old (diff) | |
download | gentoo-c20f39cdcba8d3f75fcd7d6c09e80d2ee0655e40.tar.gz gentoo-c20f39cdcba8d3f75fcd7d6c09e80d2ee0655e40.tar.bz2 gentoo-c20f39cdcba8d3f75fcd7d6c09e80d2ee0655e40.zip |
mail-client/roundcube: Version bump, security, and bug fixes
Added two use flags controlling optional dependencies to support the
enigma and and sieverules plugins.
Added REQUIRED_USE as one of postgres, mysql, or sqlite must be
enabled. Rouncube requires a database to operate. As the ebuild uses
this now, removed the default enable on the mysql USE flag.
Added POST-UPGRADE.txt which is just a shortened version of the
UPGRADE text from upstream.
Dropped arm and ppc64 keywords as one dependency,
dev-php/PEAR-Net_LDAP2, currently lacks matching keywords for those
architectures.
Bug: 541172, 545096, 524192, 564476, 565204, 53284
Package-Manager: portage-2.2.20.1
Diffstat (limited to 'mail-client/roundcube/files')
-rw-r--r-- | mail-client/roundcube/files/POST-UPGRADE.txt | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/mail-client/roundcube/files/POST-UPGRADE.txt b/mail-client/roundcube/files/POST-UPGRADE.txt new file mode 100644 index 000000000000..8c2296bc0a50 --- /dev/null +++ b/mail-client/roundcube/files/POST-UPGRADE.txt @@ -0,0 +1,17 @@ +Post-Upgrade Activities +----------------------- +1. Check .htaccess settings (some php settings could become required) +2. If you're using build-in addressbook, run indexing script + /bin/indexcontacts.sh. +3. When upgrading from version older than 0.6-beta you should make sure + your folder settings contain namespace prefix. For example Courier users + should add INBOX. prefix to folder names in main configuration file. +4. Check system requirements in INSTALL file. + +SQLite database upgrade +----------------------- +Versions older than 0.9 were supporting SQLite v2 only. Newer versions require +database in v3 format. The best what you can do is to convert database file +to the new format using command line tools: + +sqlite OLD.DB .dump | sqlite3 NEW.DB |