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
Thomas Bruederli 85e60ada15 First version of the local storage compose data saving feature; some behavioral improvements and encrytion are still to be added 11 years ago
..
README.md Add github syntax highlighting to php code snippet 12 years ago
bootstrap.php Fix error_reporting directive check (#1489323) 11 years ago
html.php Merge branch 'dev-canned-responses' 11 years ago
rcube.php Fix typo: occured -> occurred (#1489366) 11 years ago
rcube_addressbook.php Add contact_listname hook to handle special name order 11 years ago
rcube_base_replacer.php Some micro-optimizations 11 years ago
rcube_browser.php Better @package/@subpackage assignment 12 years ago
rcube_cache.php Fix database cache expunge issues (#1489149) - added 'expires' column 11 years ago
rcube_cache_shared.php Fix database cache expunge issues (#1489149) - added 'expires' column 11 years ago
rcube_charset.php - Fix detecting Turkish language in ISO-8859-9 encoding (#1489252) 11 years ago
rcube_config.php Support HTTP_HOST, SERVER_NAME and SERVER_ADDR values in include_host_config feature 11 years ago
rcube_contacts.php Require name or email for sql address book only 11 years ago
rcube_content_filter.php Better @package/@subpackage assignment 12 years ago
rcube_csv2vcard.php Fix categories/groups import from csv 11 years ago
rcube_db.php Small performance improvements, use str_replace() instead of strtr(), 11 years ago
rcube_db_mssql.php Execute connection config queries on db handle direclty 11 years ago
rcube_db_mysql.php Execute connection config queries on db handle direclty 11 years ago
rcube_db_pgsql.php Execute connection config queries on db handle direclty 11 years ago
rcube_db_sqlite.php Simplified db connection initialisation code 11 years ago
rcube_db_sqlsrv.php Execute connection config queries on db handle direclty 11 years ago
rcube_enriched.php Avoid uninitialized/unused variables 11 years ago
rcube_html2text.php Fix typo in method name 11 years ago
rcube_image.php Fix image scaling issues when image has only one dimension smaller than the limit (#1489274) 11 years ago
rcube_imap.php Add possibility to programmatically set cache mode, so it is possible 11 years ago
rcube_imap_cache.php Fix regression where wrong set of message identifiers was used 11 years ago
rcube_imap_generic.php Workaround cyrus-murder bug in SETANNOTATION arguments handling 11 years ago
rcube_ldap.php Fix function calls after refactoring 11 years ago
rcube_ldap_generic.php Handle nicely situation when normalize_entry is executed on already normalized entry 11 years ago
rcube_ldap_result.php Optimmize memory usage by only fetching the necessary attributes used for contacts listing 12 years ago
rcube_message.php Fix HTML part detection when encapsulated inside multipart/signed (#1489372) 11 years ago
rcube_message_header.php Fix handling of invalid characters in message headers and output (#1489032) 11 years ago
rcube_message_part.php Cleanup, remove file paths from doc 12 years ago
rcube_mime.php Fix mime.types parsing (#1489391) 11 years ago
rcube_output.php * fixed: modsecurity warning: AppDefect: Cache-Control Response Header Missing 'no-store' flag. http://websecuritytool.codeplex.com/wikipage?title=Checks#http-cache-control-header-no-store 11 years ago
rcube_plugin.php Added rcube_plugin::add_label() method 11 years ago
rcube_plugin_api.php Fix vulnerability in handling _session argument of utils/save-prefs (#1489382) 11 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 Avoid rcube_session::reload() to reset previous changes. This fixes parallel attachment uploads that could get lost when using the database_attachments plugin 11 years ago
rcube_smtp.php Simplify/fix debug lines truncation 11 years ago
rcube_spellcheck_atd.php Get supported spell-check languages from the configured backend; replace suspended google spell service with our new service at spell.roundcube.net 11 years ago
rcube_spellcheck_enchant.php Get supported spell-check languages from the configured backend; replace suspended google spell service with our new service at spell.roundcube.net 11 years ago
rcube_spellcheck_engine.php Get supported spell-check languages from the configured backend; replace suspended google spell service with our new service at spell.roundcube.net 11 years ago
rcube_spellcheck_googie.php Get supported spell-check languages from the configured backend; replace suspended google spell service with our new service at spell.roundcube.net 11 years ago
rcube_spellcheck_pspell.php Get supported spell-check languages from the configured backend; replace suspended google spell service with our new service at spell.roundcube.net 11 years ago
rcube_spellchecker.php Remove duplicate languages on spellchecker langs list (#1489395) 11 years ago
rcube_storage.php Fix setting of Junk and NonJunk flags by markasjunk plugin (#1489285) 11 years ago
rcube_string_replacer.php Fix infinite loop in rcube_utils::mod_css_styles() after recent changes in rcube_string_replacer 11 years ago
rcube_user.php First version of the local storage compose data saving feature; some behavioral improvements and encrytion are still to be added 11 years ago
rcube_utils.php Fixed saving contact birthday/anniversary dates before 01-01-1970 11 years ago
rcube_vcard.php Fix categories/groups import from csv 11 years ago
rcube_washtml.php Fixed issues where HTML comments inside style tag would hang Internet Explorer 11 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