Better support for Courier IMAP

release-0.6
thomascube 19 years ago
parent 8884477e91
commit 49afbf5d69

@ -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

@ -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.

@ -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
);

@ -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;

@ -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'] = '';

Loading…
Cancel
Save