summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG1
-rw-r--r--README2
-rwxr-xr-xSQL/postgres.initial.sql1
-rw-r--r--UPGRADING4
-rw-r--r--config/main.inc.php.dist2
5 files changed, 8 insertions, 2 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 8a3cdb7ad..bd121e6c6 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -39,5 +39,6 @@ CHANGELOG RoundCube Webmail
- Added support for SQLite database
- Make use of message caching configurable
- Also add attachments when forwarding a message
+- Long folder names will not flow over message list (Bug #1267232)
- Show nested mailboxes hieracically
- Enable IMAPS by host
diff --git a/README b/README
index b7b33a6fc..8d632cbfe 100644
--- a/README
+++ b/README
@@ -31,7 +31,7 @@ will be allowed.
Installation:
-------------
-For detailed instructions on how to install SquirrelMail on your server,
+For detailed instructions on how to install RoundCube webmail on your server,
please refer to the INSTALL document in the same directory as this document.
diff --git a/SQL/postgres.initial.sql b/SQL/postgres.initial.sql
index 125957369..01b36af64 100755
--- a/SQL/postgres.initial.sql
+++ b/SQL/postgres.initial.sql
@@ -134,6 +134,7 @@ CREATE TABLE "session" (
sess_id character varying(32) DEFAULT ''::character varying NOT NULL,
created timestamp with time zone DEFAULT now() NOT NULL,
changed timestamp with time zone DEFAULT now() NOT NULL,
+ ip character varying(16) NOT NULL,
vars text NOT NULL
);
diff --git a/UPGRADING b/UPGRADING
index cbbcdcd23..4ad188de7 100644
--- a/UPGRADING
+++ b/UPGRADING
@@ -8,7 +8,9 @@ of RoundCube Webmail.
from versions 0.1-alpha and 0.1-20050811
----------------------------------------
+- replace index.php
- replace all files in folder /program/
+- replace all files in folder /skins/default/
- rund SQL queries in order to update the database
- add these line to /config/main.inc.php
$rcmail_config['trash_mbox'] = 'Trash';
@@ -24,7 +26,9 @@ from versions 0.1-alpha and 0.1-20050811
from version 0.1-20050820
----------------------------------------
+- replace index.php
- replace all files in folder /program/
+- replace all files in folder /skins/default/
- rund SQL queries in order to update the database
- add these line to /config/main.inc.php
$rcmail_config['prettydate'] = TRUE;
diff --git a/config/main.inc.php.dist b/config/main.inc.php.dist
index e34e2f368..03e00b27b 100644
--- a/config/main.inc.php.dist
+++ b/config/main.inc.php.dist
@@ -74,7 +74,7 @@ $rcmail_config['date_short'] = 'D H:i';
$rcmail_config['date_long'] = 'd.m.Y H:i';
// add this user-agent to message headers when sending
-$rcmail_config['useragent'] = 'RoundCube Webmail/0.1a';
+$rcmail_config['useragent'] = 'RoundCube Webmail/0.1-20051011';
// only list folders within this path
$rcmail_config['imap_root'] = '';