From 49afbf5d698eb7d57ae10a553b6dcb14117727dd Mon Sep 17 00:00:00 2001
From: thomascube <thomas@roundcube.net>
Date: Tue, 11 Oct 2005 17:06:21 -0400
Subject: [PATCH] Better support for Courier IMAP

---
 CHANGELOG                |    1 +
 README                   |    2 +-
 SQL/postgres.initial.sql |    1 +
 UPGRADING                |    4 ++++
 config/main.inc.php.dist |    2 +-
 5 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/CHANGELOG b/CHANGELOG
index 8a3cdb7..bd121e6 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -39,5 +39,6 @@
 - 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 b7b33a6..8d632cb 100644
--- a/README
+++ b/README
@@ -31,7 +31,7 @@
 
 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 1259573..01b36af 100755
--- a/SQL/postgres.initial.sql
+++ b/SQL/postgres.initial.sql
@@ -134,6 +134,7 @@
     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 cbbcdcd..4ad188d 100644
--- a/UPGRADING
+++ b/UPGRADING
@@ -8,7 +8,9 @@
 
 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 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 e34e2f3..03e00b2 100644
--- a/config/main.inc.php.dist
+++ b/config/main.inc.php.dist
@@ -74,7 +74,7 @@
 $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'] = '';

--
Gitblit v1.9.1