Show spam aliases #
This commit is contained in:
168
data/web/rc/program/steps/utils/error.inc
Normal file
168
data/web/rc/program/steps/utils/error.inc
Normal file
@@ -0,0 +1,168 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
+-----------------------------------------------------------------------+
|
||||
| program/steps/utils/error.inc |
|
||||
| |
|
||||
| This file is part of the Roundcube Webmail client |
|
||||
| Copyright (C) 2005-2015, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
| PURPOSE: |
|
||||
| Display error message page |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
| Author: Thomas Bruederli <roundcube@gmail.com> |
|
||||
+-----------------------------------------------------------------------+
|
||||
*/
|
||||
|
||||
$rcmail = rcmail::get_instance();
|
||||
|
||||
// browser is not compatible with this application
|
||||
if ($ERROR_CODE == 409) {
|
||||
$user_agent = htmlentities($_SERVER['HTTP_USER_AGENT']);
|
||||
$__error_title = 'Your browser does not suit the requirements for this application';
|
||||
$__error_text = <<<EOF
|
||||
<i>Supported browsers:</i><br />
|
||||
» Microsoft Internet Explorer 7+<br />
|
||||
» Mozilla Firefox 3+<br />
|
||||
» Chrome 10+<br />
|
||||
» Safari 4+<br />
|
||||
» Opera 8+<br />
|
||||
<br />
|
||||
» JavaScript enabled<br />
|
||||
» Support for XMLHTTPRequest<br />
|
||||
|
||||
<p><i>Your configuration:</i><br />
|
||||
$user_agent</p>
|
||||
EOF;
|
||||
}
|
||||
|
||||
// authorization error
|
||||
else if ($ERROR_CODE == 401) {
|
||||
$__error_title = mb_strtoupper($rcmail->gettext('errauthorizationfailed'));
|
||||
$__error_text = nl2br($rcmail->gettext('errunauthorizedexplain') . "\n" .
|
||||
$rcmail->gettext('errcontactserveradmin'));
|
||||
}
|
||||
|
||||
// forbidden due to request check
|
||||
else if ($ERROR_CODE == 403) {
|
||||
if ($_SERVER['REQUEST_METHOD'] == 'GET' && $rcmail->request_status == rcube::REQUEST_ERROR_URL) {
|
||||
$url = $rcmail->url($_GET, true, false, true);
|
||||
$add = html::a($url, $rcmail->gettext('clicktoresumesession'));
|
||||
}
|
||||
else {
|
||||
$add = $rcmail->gettext('errcontactserveradmin');
|
||||
}
|
||||
|
||||
$__error_title = mb_strtoupper($rcmail->gettext('errrequestcheckfailed'));
|
||||
$__error_text = nl2br($rcmail->gettext('errcsrfprotectionexplain')) . '<p>' . $add . '</p>';
|
||||
}
|
||||
|
||||
// failed request (wrong step in URL)
|
||||
else if ($ERROR_CODE == 404) {
|
||||
$request_url = htmlentities($_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']);
|
||||
$__error_title = mb_strtoupper($rcmail->gettext('errnotfound'));
|
||||
$__error_text = nl2br($rcmail->gettext('errnotfoundexplain') . "\n" .
|
||||
$rcmail->gettext('errcontactserveradmin'));
|
||||
|
||||
$__error_text .= '<p><i>' . $rcmail->gettext('errfailedrequest') . ":</i><br />\n<tt>//$request_url</tt></p>";
|
||||
}
|
||||
|
||||
// invalid compose ID
|
||||
else if ($ERROR_CODE == 450 && $_SERVER['REQUEST_METHOD'] == 'GET' && $rcmail->action == 'compose') {
|
||||
$url = $rcmail->url('compose');
|
||||
|
||||
$__error_title = mb_strtoupper($rcmail->gettext('errcomposesession'));
|
||||
$__error_text = nl2br($rcmail->gettext('errcomposesessionexplain'))
|
||||
. '<p>' . html::a($url, $rcmail->gettext('clicktocompose')) . '</p>';
|
||||
}
|
||||
|
||||
// database connection error
|
||||
else if ($ERROR_CODE == 601) {
|
||||
$__error_title = "CONFIGURATION ERROR";
|
||||
$__error_text = nl2br($ERROR_MESSAGE) . "<br />Please read the INSTALL instructions!";
|
||||
}
|
||||
|
||||
// database connection error
|
||||
else if ($ERROR_CODE == 603) {
|
||||
$__error_title = "DATABASE ERROR: CONNECTION FAILED!";
|
||||
$__error_text = "Unable to connect to the database!<br />Please contact your server-administrator.";
|
||||
}
|
||||
|
||||
// system error
|
||||
else {
|
||||
$__error_title = "SERVICE CURRENTLY NOT AVAILABLE!";
|
||||
$__error_text = "Please contact your server-administrator.";
|
||||
|
||||
if (($rcmail->config->get('debug_level') & 4) && $ERROR_MESSAGE) {
|
||||
$__error_text = $ERROR_MESSAGE;
|
||||
}
|
||||
else {
|
||||
$__error_text = sprintf('Error No. [%s]', $ERROR_CODE);
|
||||
}
|
||||
}
|
||||
|
||||
// inform plugins
|
||||
if ($rcmail && $rcmail->plugins) {
|
||||
$plugin = $rcmail->plugins->exec_hook('error_page', array(
|
||||
'code' => $ERROR_CODE,
|
||||
'title' => $__error_title,
|
||||
'text' => $__error_text,
|
||||
));
|
||||
|
||||
if (!empty($plugin['title']))
|
||||
$__error_title = $plugin['title'];
|
||||
if (!empty($plugin['text']))
|
||||
$__error_text = $plugin['text'];
|
||||
}
|
||||
|
||||
$HTTP_ERR_CODE = $ERROR_CODE && $ERROR_CODE < 600 ? $ERROR_CODE : 500;
|
||||
|
||||
// Ajax request
|
||||
if ($rcmail->output && $rcmail->output->type == 'js') {
|
||||
header("HTTP/1.0 $HTTP_ERR_CODE $__error_title");
|
||||
die;
|
||||
}
|
||||
|
||||
// compose page content
|
||||
$__page_content = <<<EOF
|
||||
<div>
|
||||
<h3 class="error-title">$__error_title</h3>
|
||||
<div class="error-text">$__error_text</div>
|
||||
</div>
|
||||
EOF;
|
||||
|
||||
if ($rcmail->output && $rcmail->output->template_exists('error')) {
|
||||
$rcmail->output->reset();
|
||||
$rcmail->output->set_env('server_error', $ERROR_CODE);
|
||||
$rcmail->output->set_env('comm_path', $rcmail->comm_path);
|
||||
$rcmail->output->send('error');
|
||||
}
|
||||
|
||||
$__skin = $rcmail->config->get('skin', 'default');
|
||||
$__productname = $rcmail->config->get('product_name', 'Roundcube Webmail');
|
||||
|
||||
// print system error page
|
||||
print <<<EOF
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml"><head>
|
||||
<title>$__productname :: ERROR</title>
|
||||
<link rel="stylesheet" type="text/css" href="skins/$__skin/common.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<table border="0" cellsapcing="0" cellpadding="0" width="100%" height="80%"><tr><td align="center">
|
||||
|
||||
$__page_content
|
||||
|
||||
</td></tr></table>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
EOF;
|
||||
|
||||
exit;
|
31
data/web/rc/program/steps/utils/html2text.inc
Normal file
31
data/web/rc/program/steps/utils/html2text.inc
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
+-----------------------------------------------------------------------+
|
||||
| program/steps/utils/html2text.inc |
|
||||
| |
|
||||
| This file is part of the Roundcube Webmail client |
|
||||
| Copyright (C) 2005-2015, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
| PURPOSE: |
|
||||
| Convert HTML message to plain text |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
| Author: Thomas Bruederli <roundcube@gmail.com> |
|
||||
+-----------------------------------------------------------------------+
|
||||
*/
|
||||
|
||||
$html = stream_get_contents(fopen('php://input', 'r'));
|
||||
|
||||
$params['links'] = (bool) rcube_utils::get_input_value('_do_links', rcube_utils::INPUT_GET);
|
||||
$params['width'] = (int) rcube_utils::get_input_value('_width', rcube_utils::INPUT_GET);
|
||||
|
||||
$text = $RCMAIL->html2text($html, $params);
|
||||
|
||||
header('Content-Type: text/plain; charset=' . RCUBE_CHARSET);
|
||||
print $text;
|
||||
exit;
|
55
data/web/rc/program/steps/utils/killcache.inc
Normal file
55
data/web/rc/program/steps/utils/killcache.inc
Normal file
@@ -0,0 +1,55 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
+-----------------------------------------------------------------------+
|
||||
| program/steps/utils/killcache.inc |
|
||||
| |
|
||||
| This file is part of the Roundcube Webmail client |
|
||||
| Copyright (C) 2005-2010, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
| PURPOSE: |
|
||||
| Delete rows from cache tables |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
| Author: Dennis P. Nikolaenko <dennis@nikolaenko.ru> |
|
||||
+-----------------------------------------------------------------------+
|
||||
*/
|
||||
|
||||
// don't allow public access if not in devel_mode
|
||||
if (!$RCMAIL->config->get('devel_mode')) {
|
||||
header("HTTP/1.0 401 Access denied");
|
||||
die("Access denied!");
|
||||
}
|
||||
|
||||
// @TODO: transaction here (if supported by DB) would be a good thing
|
||||
$res = $RCMAIL->db->query("DELETE FROM " . $RCMAIL->db->table_name('cache', true));
|
||||
if ($err = $RCMAIL->db->is_error($res)) {
|
||||
exit($err);
|
||||
}
|
||||
|
||||
$res = $RCMAIL->db->query("DELETE FROM " . $RCMAIL->db->table_name('cache_shared', true));
|
||||
if ($err = $RCMAIL->db->is_error($res)) {
|
||||
exit($err);
|
||||
}
|
||||
|
||||
$res = $RCMAIL->db->query("DELETE FROM " . $RCMAIL->db->table_name('cache_messages', true));
|
||||
if ($err = $RCMAIL->db->is_error($res)) {
|
||||
exit($err);
|
||||
}
|
||||
|
||||
$res = $RCMAIL->db->query("DELETE FROM " . $RCMAIL->db->table_name('cache_index', true));
|
||||
if ($err = $RCMAIL->db->is_error($res)) {
|
||||
exit($err);
|
||||
}
|
||||
|
||||
$res = $RCMAIL->db->query("DELETE FROM " . $RCMAIL->db->table_name('cache_thread', true));
|
||||
if ($err = $RCMAIL->db->is_error($res)) {
|
||||
exit($err);
|
||||
}
|
||||
|
||||
echo "Cache cleared\n";
|
||||
exit;
|
83
data/web/rc/program/steps/utils/modcss.inc
Normal file
83
data/web/rc/program/steps/utils/modcss.inc
Normal file
@@ -0,0 +1,83 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
+-----------------------------------------------------------------------+
|
||||
| program/steps/utils/modcss.inc |
|
||||
| |
|
||||
| This file is part of the Roundcube Webmail client |
|
||||
| Copyright (C) 2007-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
| PURPOSE: |
|
||||
| Modify CSS source from a URL |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
| Author: Thomas Bruederli <roundcube@gmail.com> |
|
||||
| Author: Aleksander Machniak <alec@alec.pl> |
|
||||
+-----------------------------------------------------------------------+
|
||||
*/
|
||||
|
||||
$url = preg_replace('![^a-z0-9.-]!i', '', $_GET['_u']);
|
||||
|
||||
if ($url === null || !($realurl = $_SESSION['modcssurls'][$url])) {
|
||||
header('HTTP/1.1 403 Forbidden');
|
||||
exit("Unauthorized request");
|
||||
}
|
||||
|
||||
// don't allow any other connections than http(s)
|
||||
if (!preg_match('~^(https?)://~i', $realurl, $matches)) {
|
||||
header('HTTP/1.1 403 Forbidden');
|
||||
exit("Invalid URL");
|
||||
}
|
||||
|
||||
if (ini_get('allow_url_fopen')) {
|
||||
$scheme = strtolower($matches[1]);
|
||||
$options = array(
|
||||
$scheme => array(
|
||||
'method' => 'GET',
|
||||
'timeout' => 15,
|
||||
)
|
||||
);
|
||||
|
||||
$context = stream_context_create($options);
|
||||
$source = @file_get_contents($realurl, false, $context);
|
||||
|
||||
// php.net/manual/en/reserved.variables.httpresponseheader.php
|
||||
$headers = implode("\n", (array) $http_response_header);
|
||||
}
|
||||
else if (function_exists('curl_init')) {
|
||||
$curl = curl_init($realurl);
|
||||
curl_setopt($curl, CURLOPT_TIMEOUT, 15);
|
||||
curl_setopt($curl, CURLOPT_CONNECTTIMEOUT, 15);
|
||||
curl_setopt($curl, CURLOPT_PROTOCOLS, CURLPROTO_HTTP | CURLPROTO_HTTPS);
|
||||
curl_setopt($curl, CURLOPT_ENCODING, '');
|
||||
curl_setopt($curl, CURLOPT_HEADER, true);
|
||||
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
|
||||
$data = curl_exec($curl);
|
||||
|
||||
if ($data !== false) {
|
||||
list($headers, $source) = explode("\r\n\r\n", $data, 2);
|
||||
}
|
||||
else {
|
||||
$headers = false;
|
||||
$source = false;
|
||||
}
|
||||
}
|
||||
else {
|
||||
header('HTTP/1.1 403 Forbidden');
|
||||
exit("HTTP connections disabled");
|
||||
}
|
||||
|
||||
$ctype_regexp = '~Content-Type:\s+text/(css|plain)~i';
|
||||
|
||||
if ($source !== false && preg_match($ctype_regexp, $headers)) {
|
||||
header('Content-Type: text/css');
|
||||
echo rcube_utils::mod_css_styles($source, preg_replace('/[^a-z0-9]/i', '', $_GET['_c']));
|
||||
exit;
|
||||
}
|
||||
|
||||
header('HTTP/1.0 404 Not Found');
|
||||
exit("Invalid response returned by server");
|
68
data/web/rc/program/steps/utils/save_pref.inc
Normal file
68
data/web/rc/program/steps/utils/save_pref.inc
Normal file
@@ -0,0 +1,68 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
+-----------------------------------------------------------------------+
|
||||
| program/steps/utils/save_pref.inc |
|
||||
| |
|
||||
| This file is part of the Roundcube Webmail client |
|
||||
| Copyright (C) 2005-2013, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
| PURPOSE: |
|
||||
| Save preferences setting in database |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
| Author: Aleksander Machniak <alec@alec.pl> |
|
||||
+-----------------------------------------------------------------------+
|
||||
*/
|
||||
|
||||
$name = rcube_utils::get_input_value('_name', rcube_utils::INPUT_POST);
|
||||
$value = rcube_utils::get_input_value('_value', rcube_utils::INPUT_POST);
|
||||
$sessname = rcube_utils::get_input_value('_session', rcube_utils::INPUT_POST);
|
||||
|
||||
// Whitelisted preferences and session variables, others
|
||||
// can be added by plugins
|
||||
$whitelist = array(
|
||||
'list_cols',
|
||||
'collapsed_folders',
|
||||
'collapsed_abooks',
|
||||
);
|
||||
$whitelist_sess = array(
|
||||
'list_attrib/columns',
|
||||
);
|
||||
|
||||
$whitelist = array_merge($whitelist, $RCMAIL->plugins->allowed_prefs);
|
||||
$whitelist_sess = array_merge($whitelist_sess, $RCMAIL->plugins->allowed_session_prefs);
|
||||
|
||||
if (!in_array($name, $whitelist) || ($sessname && !in_array($sessname, $whitelist_sess))) {
|
||||
rcube::raise_error(array('code' => 500, 'type' => 'php',
|
||||
'file' => __FILE__, 'line' => __LINE__,
|
||||
'message' => sprintf("Hack attempt detected (user: %s)", $RCMAIL->get_user_name())),
|
||||
true, false);
|
||||
|
||||
$OUTPUT->reset();
|
||||
$OUTPUT->send();
|
||||
}
|
||||
|
||||
// save preference value
|
||||
$RCMAIL->user->save_prefs(array($name => $value));
|
||||
|
||||
// update also session if requested
|
||||
if ($sessname) {
|
||||
// Support multidimensional arrays...
|
||||
$vars = explode('/', $sessname);
|
||||
|
||||
// ... up to 3 levels
|
||||
if (count($vars) == 1)
|
||||
$_SESSION[$vars[0]] = $value;
|
||||
else if (count($vars) == 2)
|
||||
$_SESSION[$vars[0]][$vars[1]] = $value;
|
||||
else if (count($vars) == 3)
|
||||
$_SESSION[$vars[0]][$vars[1]][$vars[2]] = $value;
|
||||
}
|
||||
|
||||
$OUTPUT->reset();
|
||||
$OUTPUT->send();
|
64
data/web/rc/program/steps/utils/spell.inc
Normal file
64
data/web/rc/program/steps/utils/spell.inc
Normal file
@@ -0,0 +1,64 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
+-----------------------------------------------------------------------+
|
||||
| program/steps/utils/spell.inc |
|
||||
| |
|
||||
| This file is part of the Roundcube Webmail client |
|
||||
| Copyright (C) 2005-2011, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
| PURPOSE: |
|
||||
| Invoke the configured or default spell checking engine. |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
| Author: Kris Steinhoff <steinhof@umich.edu> |
|
||||
+-----------------------------------------------------------------------+
|
||||
*/
|
||||
|
||||
// read input
|
||||
$lang = rcube_utils::get_input_value('lang', rcube_utils::INPUT_GET);
|
||||
$data = file_get_contents('php://input');
|
||||
|
||||
$learn_word = strpos($data, '<learnword>');
|
||||
|
||||
// Get data string
|
||||
$left = strpos($data, '<text>');
|
||||
$right = strrpos($data, '</text>');
|
||||
$data = substr($data, $left+6, $right-($left+6));
|
||||
$data = html_entity_decode($data, ENT_QUOTES, RCUBE_CHARSET);
|
||||
|
||||
$spellchecker = new rcube_spellchecker($lang);
|
||||
|
||||
if ($learn_word) {
|
||||
$spellchecker->add_word($data);
|
||||
$result = '<?xml version="1.0" encoding="'.RCUBE_CHARSET.'"?><learnwordresult></learnwordresult>';
|
||||
}
|
||||
else if (empty($data)) {
|
||||
$result = '<?xml version="1.0" encoding="'.RCUBE_CHARSET.'"?><spellresult charschecked="0"></spellresult>';
|
||||
}
|
||||
else {
|
||||
$spellchecker->check($data);
|
||||
$result = $spellchecker->get_xml();
|
||||
}
|
||||
|
||||
if ($err = $spellchecker->error()) {
|
||||
rcube::raise_error(array('code' => 500, 'type' => 'php',
|
||||
'file' => __FILE__, 'line' => __LINE__,
|
||||
'message' => "Spell check engine error: " . trim($err)),
|
||||
true, false);
|
||||
|
||||
header("HTTP/1.0 500 Internal Server Error");
|
||||
exit;
|
||||
}
|
||||
|
||||
// set response length
|
||||
header("Content-Length: " . strlen($result));
|
||||
|
||||
// Don't use server's default Content-Type charset (#1486406)
|
||||
header("Content-Type: text/xml; charset=" . RCUBE_CHARSET);
|
||||
print $result;
|
||||
exit;
|
57
data/web/rc/program/steps/utils/spell_html.inc
Normal file
57
data/web/rc/program/steps/utils/spell_html.inc
Normal file
@@ -0,0 +1,57 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
+-----------------------------------------------------------------------+
|
||||
| program/steps/utils/spell_html.inc |
|
||||
| |
|
||||
| This file is part of the Roundcube Webmail client |
|
||||
| Copyright (C) 2005-2011, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
| PURPOSE: |
|
||||
| Spellchecker for TinyMCE |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
| Author: Aleksander Machniak <alec@alec.pl> |
|
||||
+-----------------------------------------------------------------------+
|
||||
*/
|
||||
|
||||
$method = rcube_utils::get_input_value('method', rcube_utils::INPUT_POST);
|
||||
$lang = rcube_utils::get_input_value('lang', rcube_utils::INPUT_POST);
|
||||
$result = array();
|
||||
|
||||
$spellchecker = new rcube_spellchecker($lang);
|
||||
|
||||
if ($method == 'addToDictionary') {
|
||||
$data = rcube_utils::get_input_value('word', rcube_utils::INPUT_POST);
|
||||
|
||||
$spellchecker->add_word($data);
|
||||
$result['result'] = true;
|
||||
}
|
||||
else {
|
||||
$data = rcube_utils::get_input_value('text', rcube_utils::INPUT_POST, true);
|
||||
$data = html_entity_decode($data, ENT_QUOTES, RCUBE_CHARSET);
|
||||
|
||||
if ($data && !$spellchecker->check($data)) {
|
||||
$result['words'] = $spellchecker->get();
|
||||
$result['dictionary'] = (bool) $RCMAIL->config->get('spellcheck_dictionary');
|
||||
}
|
||||
}
|
||||
|
||||
if ($error = $spellchecker->error()) {
|
||||
rcube::raise_error(array('code' => 500, 'type' => 'php',
|
||||
'file' => __FILE__, 'line' => __LINE__,
|
||||
'message' => sprintf("Spell check engine error: " . $error)),
|
||||
true, false);
|
||||
|
||||
echo json_encode(array('error' => $error));
|
||||
exit;
|
||||
}
|
||||
|
||||
// send output
|
||||
header("Content-Type: application/json; charset=".RCUBE_CHARSET);
|
||||
echo json_encode($result);
|
||||
exit;
|
28
data/web/rc/program/steps/utils/text2html.inc
Normal file
28
data/web/rc/program/steps/utils/text2html.inc
Normal file
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
+-----------------------------------------------------------------------+
|
||||
| program/steps/utils/text2html.inc |
|
||||
| |
|
||||
| This file is part of the Roundcube Webmail client |
|
||||
| Copyright (C) 2005-2014, The Roundcube Dev Team |
|
||||
| |
|
||||
| Licensed under the GNU General Public License version 3 or |
|
||||
| any later version with exceptions for skins & plugins. |
|
||||
| See the README file for a full license statement. |
|
||||
| |
|
||||
| PURPOSE: |
|
||||
| Convert plain text to HTML |
|
||||
| |
|
||||
+-----------------------------------------------------------------------+
|
||||
| Author: Thomas Bruederli <roundcube@gmail.com> |
|
||||
+-----------------------------------------------------------------------+
|
||||
*/
|
||||
|
||||
$text = stream_get_contents(fopen('php://input', 'r'));
|
||||
|
||||
$converter = new rcube_text2html($text, false, array('wrap' => true));
|
||||
|
||||
header('Content-Type: text/html; charset=' . RCUBE_CHARSET);
|
||||
print $converter->get_html();
|
||||
exit;
|
Reference in New Issue
Block a user