summaryrefslogtreecommitdiff
path: root/mail-client/roundcube/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2017-10-09 18:53:29 +0100
committerV3n3RiX <venerix@redcorelinux.org>2017-10-09 18:53:29 +0100
commit4f2d7949f03e1c198bc888f2d05f421d35c57e21 (patch)
treeba5f07bf3f9d22d82e54a462313f5d244036c768 /mail-client/roundcube/files
reinit the tree, so we can have metadata
Diffstat (limited to 'mail-client/roundcube/files')
-rw-r--r--mail-client/roundcube/files/POST-UPGRADE.txt25
1 files changed, 25 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..785b8319a6cc
--- /dev/null
+++ b/mail-client/roundcube/files/POST-UPGRADE.txt
@@ -0,0 +1,25 @@
+Post-Upgrade Activities
+-----------------------
+1. Check .htaccess settings (some php settings could become required)
+2. If you're using the built-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 a namespace prefix if necessary. For example Courier
+ users should add “INBOX.” prefix to folder names in main configuration file.
+4. Check system requirements in INSTALL file.
+5. If you previously installed plugins through composer, update dependencies by
+ running:
+ php composer.phar self-update
+ php composer.phar update --no-dev
+6. Update your database and configurations by running:
+ ./bin/update.sh
+7. Update the cached javascript libraries by running:
+ ./bin/install-jsdeps.sh
+
+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