Skip to content

Commit

Permalink
Minor bugfixes and SMTP support
Browse files Browse the repository at this point in the history
  • Loading branch information
thomascube committed Oct 3, 2005
1 parent d3d42bd commit 52c1f28
Show file tree
Hide file tree
Showing 7 changed files with 29 additions and 1,115 deletions.
11 changes: 6 additions & 5 deletions INSTALL
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@ INSTALLATION
2. Make shure that the following directories are writable by the webserver 2. Make shure that the following directories are writable by the webserver
- /temp - /temp
- /logs - /logs
3. Modify the files in /config to suit your local environment 3. Rename the files config/*.inc.php.dist to config/*.inc.php
4. Create database tables using the queries in file 'SQL/initial.sql' 4. Modify the files in config/* to suit your local environment
Rename tables if you like, but make shure the names are also changed in /config/db.inc 5. Create database tables using the queries in file 'SQL/*.initial.sql'
5. Done! Rename tables if you like, but make shure the names are also changed in config/db.inc.php
6. Done!




REQUIREMENTS REQUIREMENTS
Expand All @@ -28,5 +29,5 @@ REQUIREMENTS
CONFIGURATION CONFIGURATION
============= =============


Change the files in /config/ according your environment and you needs. Change the files in config/* according your environment and you needs.
Details about the config paramaters can be found in the config files. Details about the config paramaters can be found in the config files.
18 changes: 15 additions & 3 deletions README
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -9,14 +9,26 @@ message filters. RoundCube Webmail is written in PHP and requires the MySQL
database. The user interface is fully skinnable using XHTML and CSS 2. database. The user interface is fully skinnable using XHTML and CSS 2.


This project is meant to be a modern webmail solution which is easy to This project is meant to be a modern webmail solution which is easy to
install/configure and that runs on a standard PHP plus MySQL or Postgres configuration. install/configure and that runs on a standard PHP plus MySQL or Postgres
It includes open-source classes/libraries like PEAR (http://pear.php.net) and the configuration. It includes open-source classes/libraries like PEAR
IMAP wrapper from IlohaMail (http://www.ilohamail.org). (http://pear.php.net) and the IMAP wrapper from IlohaMail
(http://www.ilohamail.org).


The current development skin uses icons designed by Stephen Horlander and Kevin The current development skin uses icons designed by Stephen Horlander and Kevin
Gerich for Mozilla.org. Gerich for Mozilla.org.




How it works:
-------------
The main authority for the RoundCube access is the IMAP server. If
'auto_create_user' is set to TRUE in config/main.inc.php a new record in the
user table will be created once the IMAP login succeeded. This user record does
not store a password, it's just used to assign identities, contacts and cache
records. If you have 'auto_create_user' set to FALSE only IMAP logins which
already have a corresponding entry in the user's table (username and hostname)
will be allowed.


Installation: Installation:
------------- -------------
For detailed instructions on how to install SquirrelMail on your server, For detailed instructions on how to install SquirrelMail on your server,
Expand Down
2 changes: 1 addition & 1 deletion config/db.inc.php.dist
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
| | | |
| This file is part of the RoundCube Webmail client | | This file is part of the RoundCube Webmail client |
| Copyright (C) 2005, RoundCube Dev. - Switzerland | | Copyright (C) 2005, RoundCube Dev. - Switzerland |
| All rights reserved. | | Licensed under the GNU GPL |
| | | |
+-----------------------------------------------------------------------+ +-----------------------------------------------------------------------+


Expand Down
2 changes: 1 addition & 1 deletion config/main.inc.php.dist
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
| | | |
| This file is part of the RoundCube Webmail client | | This file is part of the RoundCube Webmail client |
| Copyright (C) 2005, RoundCube Dev. - Switzerland | | Copyright (C) 2005, RoundCube Dev. - Switzerland |
| All rights reserved. | | Licensed under the GNU GPL |
| | | |
+-----------------------------------------------------------------------+ +-----------------------------------------------------------------------+


Expand Down
Loading

0 comments on commit 52c1f28

Please sign in to comment.