You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
roundcubemail/program/lib/Roundcube
Aleksander Machniak ee89c6dff6 Display notice that message is encrypted also for application/pkcs7-mime messages (#1488526) 12 years ago
..
README.md Add github syntax highlighting to php code snippet 12 years ago
bootstrap.php Revert "Make autoloading of the framework classes work from any location". 12 years ago
html.php Better @package/@subpackage assignment 12 years ago
rcube.php Set default error code (500) if not specified in raise_error() 12 years ago
rcube_addressbook.php Move rcmail_contact_key() to rcube_addressbook::compose_contact_key() 12 years ago
rcube_base_replacer.php Better @package/@subpackage assignment 12 years ago
rcube_browser.php Better @package/@subpackage assignment 12 years ago
rcube_cache.php Cleanup, remove file paths from doc 12 years ago
rcube_charset.php Improve charset detection by prioritizing charset according to user language (#1485669) 12 years ago
rcube_config.php Cleanup, remove file paths from doc 12 years ago
rcube_contacts.php Rename $date_types -> $date_cols 12 years ago
rcube_content_filter.php Better @package/@subpackage assignment 12 years ago
rcube_csv2vcard.php Support more Thunderbird CSV fields, added zh_TW localization for csv2vcard map (#1488901) 12 years ago
rcube_db.php When connection to read-only db fails try to connect to write-master, but only if it is defined 12 years ago
rcube_db_mssql.php Cleanup, remove file paths from doc 12 years ago
rcube_db_mysql.php Force autocommit mode in mysql database driver (#1488902) 12 years ago
rcube_db_pgsql.php Cleanup, remove file paths from doc 12 years ago
rcube_db_sqlite.php Fix Call to undefined method rcube_db_sqlite::_get_result() 12 years ago
rcube_db_sqlsrv.php Cleanup, remove file paths from doc 12 years ago
rcube_enriched.php Cleanup, remove file paths from doc 12 years ago
rcube_html2text.php Bring back lost text braking width adjustment when quoting blockquote parts 12 years ago
rcube_image.php Better GD module functions detection, should fix "Call to undefined function imagecreatefromjpeg()" error 12 years ago
rcube_imap.php Add workaround for invalid message charset detection by IMAP servers (#1488968) 12 years ago
rcube_imap_cache.php Cleanup, remove file paths from doc 12 years ago
rcube_imap_generic.php Send LOGOUT only when closing connection in logged state (#1487784) 12 years ago
rcube_ldap.php Use LDAP fallback hosts on connect + bind because with OpenLDAP 2.x ldap_connect() always succeeds but ldap_bind() will fail if host isn't reachable. 12 years ago
rcube_message.php Display notice that message is encrypted also for application/pkcs7-mime messages (#1488526) 12 years ago
rcube_message_header.php Cleanup, remove file paths from doc 12 years ago
rcube_message_part.php Cleanup, remove file paths from doc 12 years ago
rcube_mime.php Rtrim() quoted lines on conversion to flowed format (according to RFC2646) 12 years ago
rcube_output.php Cleanup, remove file paths from doc 12 years ago
rcube_plugin.php CS fixes 12 years ago
rcube_plugin_api.php CS fixes 12 years ago
rcube_result_index.php Cleanup, remove file paths from doc 12 years ago
rcube_result_set.php Make rcube_result_set implement the PHP iterator interface 12 years ago
rcube_result_thread.php Cleanup, remove file paths from doc 12 years ago
rcube_session.php Add methods to append certain nodes to session data in order to avoid session saving race conditions. Fixes #1488422 12 years ago
rcube_smtp.php Add option to use envelope From address for MDN responses (#1488880) 12 years ago
rcube_spellchecker.php Fix plain text spellchecker icorrect highlighting in non-ASCII text (#1488973) 12 years ago
rcube_storage.php Display 'Sender' header in message preview 12 years ago
rcube_string_replacer.php Don't convert to link a text with < and > characters 12 years ago
rcube_user.php Cleanup, remove file paths from doc 12 years ago
rcube_utils.php Use the right variable for IPv6 check 12 years ago
rcube_vcard.php Make cleanup() method public 12 years ago
rcube_washtml.php Fix handling link href attribute value with (valid) newline characters (#1488940) 12 years ago

README.md

Roundcube Framework

INTRODUCTION

The Roundcube Framework is the basic library used for the Roundcube Webmail application. It is an extract of classes providing the core functionality for an email system. They can be used individually or as package for the following tasks:

  • IMAP mailbox access with optional caching
  • MIME message handling
  • Email message creation and sending through SMTP
  • General caching utilities using the local database
  • Database abstraction using PDO
  • VCard parsing and writing

INSTALLATION

Copy all files of this directory to your project or install it in the default include_path directory of your webserver. Some classes of the framework require one or multiple of the following PEAR libraries:

USAGE

The Roundcube Framework provides a bootstrapping file which registers an autoloader and sets up the environment necessary for the Roundcube classes. In order to make use of the framework, simply include the bootstrap.php file from this directory in your application and start using the classes by simply instantiating them.

If you wanna use more complex functionality like IMAP access with database caching or plugins, the rcube singleton helps you loading the necessary files:

<?php

define('RCUBE_CONFIG_DIR',  '<path-to-config-directory>');
define('RCUBE_PLUGINS_DIR', '<path-to-roundcube-plugins-directory');

require_once '<path-to-roundcube-framework/bootstrap.php';

$rcube = rcube::get_instance(rcube::INIT_WITH_DB | rcube::INIT_WITH_PLUGINS);
$imap = $rcube->get_storage();

// do cool stuff here...

?>

LICENSE

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License (with exceptions for plugins) as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see www.gnu.org/licenses/.

This file forms part of the Roundcube Webmail Framework for which the following exception is added: Plugins which merely make function calls to the Roundcube Webmail Framework, and for that purpose include it by reference shall not be considered modifications of the software.

If you wish to use this file in another project or create a modified version that will not be part of the Roundcube Webmail Framework, you may remove the exception above and use this source code under the original version of the license.

For more details about licensing and the exceptions for skins and plugins see roundcube.net/license

CONTACT

For any bug reports or feature requests please refer to the tracking system at trac.roundcube.net or subscribe to our mailing list. See roundcube.net/support for details.

You're always welcome to send a message to the project admins: hello(at)roundcube(dot)net