3 * @file src/Protocol/Email.php
5 namespace Friendica\Protocol;
7 use Friendica\Core\Hook;
8 use Friendica\Core\Logger;
9 use Friendica\Content\Text\BBCode;
10 use Friendica\Content\Text\HTML;
11 use Friendica\Model\Item;
12 use Friendica\Util\Strings;
20 * @param string $mailbox The mailbox name
21 * @param string $username The username
22 * @param string $password The password
26 public static function connect($mailbox, $username, $password)
28 if (!function_exists('imap_open')) {
32 $mbox = @imap_open($mailbox, $username, $password);
34 $errors = imap_errors();
35 if (!empty($errors)) {
36 Logger::log('IMAP Errors occured: ' . json_encode($errors));
39 $alerts = imap_alerts();
40 if (!empty($alerts)) {
41 Logger::log('IMAP Alerts occured: ' . json_encode($alerts));
48 * @param resource $mbox mailbox
49 * @param string $email_addr email
53 public static function poll($mbox, $email_addr)
55 if (!$mbox || !$email_addr) {
59 $search1 = @imap_search($mbox, 'UNDELETED FROM "' . $email_addr . '"', SE_UID);
63 Logger::log("Found mails from ".$email_addr, Logger::DEBUG);
66 $search2 = @imap_search($mbox, 'UNDELETED TO "' . $email_addr . '"', SE_UID);
70 Logger::log("Found mails to ".$email_addr, Logger::DEBUG);
73 $search3 = @imap_search($mbox, 'UNDELETED CC "' . $email_addr . '"', SE_UID);
77 Logger::log("Found mails cc ".$email_addr, Logger::DEBUG);
80 $res = array_unique(array_merge($search1, $search2, $search3));
86 * @param array $mailacct mail account
89 public static function constructMailboxName($mailacct)
91 $ret = '{' . $mailacct['server'] . ((intval($mailacct['port'])) ? ':' . $mailacct['port'] : '');
92 $ret .= (($mailacct['ssltype']) ? '/' . $mailacct['ssltype'] . '/novalidate-cert' : '');
93 $ret .= '}' . $mailacct['mailbox'];
98 * @param resource $mbox mailbox
99 * @param integer $uid user id
102 public static function messageMeta($mbox, $uid)
104 $ret = (($mbox && $uid) ? @imap_fetch_overview($mbox, $uid, FT_UID) : [[]]); // POSSIBLE CLEANUP --> array(array()) is probably redundant now
105 return (count($ret)) ? $ret : [];
109 * @param resource $mbox mailbox
110 * @param integer $uid user id
111 * @param string $reply reply
113 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
115 public static function getMessage($mbox, $uid, $reply, $item)
119 $struc = (($mbox && $uid) ? @imap_fetchstructure($mbox, $uid, FT_UID) : null);
122 Logger::notice("IMAP structure couldn't be fetched", ['uid' => $uid]);
126 if (empty($struc->parts)) {
127 $html = trim(self::messageGetPart($mbox, $uid, $struc, 0, 'html'));
130 $message = ['text' => '', 'html' => $html, 'item' => $ret];
131 Hook::callAll('email_getmessage', $message);
132 $ret = $message['item'];
133 if (empty($ret['body'])) {
134 $ret['body'] = HTML::toBBCode($message['html']);
138 if (empty($ret['body'])) {
139 $text = self::messageGetPart($mbox, $uid, $struc, 0, 'plain');
141 $message = ['text' => $text, 'html' => '', 'item' => $ret];
142 Hook::callAll('email_getmessage', $message);
143 $ret = $message['item'];
144 $ret['body'] = $message['text'];
149 foreach ($struc->parts as $ptop => $p) {
150 $x = self::messageGetPart($mbox, $uid, $p, $ptop + 1, 'plain');
155 $x = self::messageGetPart($mbox, $uid, $p, $ptop + 1, 'html');
161 $message = ['text' => trim($text), 'html' => trim($html), 'item' => $ret];
162 Hook::callAll('email_getmessage', $message);
163 $ret = $message['item'];
165 if (empty($ret['body']) && !empty($message['html'])) {
166 $ret['body'] = HTML::toBBCode($message['html']);
169 if (empty($ret['body'])) {
170 $ret['body'] = $message['text'];
174 $ret['body'] = self::removeGPG($ret['body']);
175 $msg = self::removeSig($ret['body']);
176 $ret['body'] = $msg['body'];
177 $ret['body'] = self::convertQuote($ret['body'], $reply);
179 if (trim($html) != '') {
180 $ret['body'] = self::removeLinebreak($ret['body']);
183 $ret['body'] = self::unifyAttributionLine($ret['body']);
185 $ret['body'] = Strings::escapeHtml($ret['body']);
186 $ret['body'] = BBCode::limitBodySize($ret['body']);
188 Hook::callAll('email_getmessage_end', $ret);
194 * fetch the specified message part number with the specified subtype
196 * @param resource $mbox mailbox
197 * @param integer $uid user id
198 * @param object $p parts
199 * @param integer $partno part number
200 * @param string $subtype sub type
203 private static function messageGetPart($mbox, $uid, $p, $partno, $subtype)
205 // $partno = '1', '2', '2.1', '2.1.3', etc for multipart, 0 if simple
206 global $htmlmsg,$plainmsg,$charset,$attachments;
210 ? @imap_fetchbody($mbox, $uid, $partno, FT_UID|FT_PEEK)
211 : @imap_body($mbox, $uid, FT_UID|FT_PEEK);
213 // Any part may be encoded, even plain text messages, so check everything.
214 if ($p->encoding == 4) {
215 $data = quoted_printable_decode($data);
216 } elseif ($p->encoding == 3) {
217 $data = base64_decode($data);
221 // get all parameters, like charset, filenames of attachments, etc.
223 if ($p->parameters) {
224 foreach ($p->parameters as $x) {
225 $params[strtolower($x->attribute)] = $x->value;
229 if (isset($p->dparameters) && $p->dparameters) {
230 foreach ($p->dparameters as $x) {
231 $params[strtolower($x->attribute)] = $x->value;
236 // Any part with a filename is an attachment,
237 // so an attached text file (type 0) is not mistaken as the message.
239 if ((isset($params['filename']) && $params['filename']) || (isset($params['name']) && $params['name'])) {
240 // filename may be given as 'Filename' or 'Name' or both
241 $filename = ($params['filename'])? $params['filename'] : $params['name'];
242 // filename may be encoded, so see imap_mime_header_decode()
243 $attachments[$filename] = $data; // this is a problem if two files have same name
247 if ($p->type == 0 && $data) {
248 // Messages may be split in different parts because of inline attachments,
249 // so append parts together with blank row.
250 if (strtolower($p->subtype)==$subtype) {
251 $data = iconv($params['charset'], 'UTF-8//IGNORE', $data);
252 return (trim($data) ."\n\n");
257 // $htmlmsg .= $data ."<br><br>";
258 $charset = $params['charset']; // assume all parts are same charset
262 // Many bounce notifications embed the original message as type 2,
263 // but AOL uses type 1 (multipart), which is not handled here.
264 // There are no PHP functions to parse embedded messages,
265 // so this just appends the raw source to the main message.
266 // elseif ($p->type==2 && $data) {
267 // $plainmsg .= $data."\n\n";
271 if (isset($p->parts) && $p->parts) {
273 foreach ($p->parts as $partno0 => $p2) {
274 $x .= self::messageGetPart($mbox, $uid, $p2, $partno . '.' . ($partno0+1), $subtype); // 1.2, 1.2.1, etc.
281 * @param string $in_str in string
282 * @param string $charset character set
285 public static function encodeHeader($in_str, $charset)
288 $need_to_convert = false;
290 for ($x = 0; $x < strlen($in_str); $x ++) {
291 if ((ord($in_str[$x]) == 0) || ((ord($in_str[$x]) > 128))) {
292 $need_to_convert = true;
296 if (!$need_to_convert) {
300 if ($out_str && $charset) {
301 // define start delimimter, end delimiter and spacer
303 $start = "=?" . $charset . "?B?";
304 $spacer = $end . "\r\n " . $start;
306 // determine length of encoded text within chunks
307 // and ensure length is even
308 $length = 75 - strlen($start) - strlen($end);
311 [EDIT BY danbrown AT php DOT net: The following
312 is a bugfix provided by (gardan AT gmx DOT de)
313 on 31-MAR-2005 with the following note:
314 "This means: $length should not be even,
315 but divisible by 4. The reason is that in
316 base64-encoding 3 8-bit-chars are represented
317 by 4 6-bit-chars. These 4 chars must not be
318 split between two encoded words, according
321 $length = $length - ($length % 4);
323 // encode the string and split it into chunks
324 // with spacers after each chunk
325 $out_str = base64_encode($out_str);
326 $out_str = chunk_split($out_str, $length, $spacer);
328 // remove trailing spacer and
329 // add start and end delimiters
330 $spacer = preg_quote($spacer, '/');
331 $out_str = preg_replace("/" . $spacer . "$/", "", $out_str);
332 $out_str = $start . $out_str . $end;
338 * Function send is used by Protocol::EMAIL code
339 * (not to notify the user, but to send items to email contacts)
341 * @param string $addr address
342 * @param string $subject subject
343 * @param string $headers headers
344 * @param array $item item
348 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
349 * @throws \ImagickException
350 * @todo This could be changed to use the Emailer class
352 public static function send($addr, $subject, $headers, $item)
354 //$headers .= 'MIME-Version: 1.0' . "\n";
355 //$headers .= 'Content-Type: text/html; charset=UTF-8' . "\n";
356 //$headers .= 'Content-Type: text/plain; charset=UTF-8' . "\n";
357 //$headers .= 'Content-Transfer-Encoding: 8bit' . "\n\n";
359 $part = uniqid("", true);
361 $html = Item::prepareBody($item);
363 $headers .= "Mime-Version: 1.0\n";
364 $headers .= 'Content-Type: multipart/alternative; boundary="=_'.$part.'"'."\n\n";
366 $body = "\n--=_".$part."\n";
367 $body .= "Content-Transfer-Encoding: 8bit\n";
368 $body .= "Content-Type: text/plain; charset=utf-8; format=flowed\n\n";
370 $body .= HTML::toPlaintext($html)."\n";
372 $body .= "--=_".$part."\n";
373 $body .= "Content-Transfer-Encoding: 8bit\n";
374 $body .= "Content-Type: text/html; charset=utf-8\n\n";
376 $body .= '<html><head></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; ">'.$html."</body></html>\n";
378 $body .= "--=_".$part."--";
380 //$message = '<html><body>' . $html . '</body></html>';
381 //$message = html2plain($html);
382 Logger::log('notifier: email delivery to ' . $addr);
383 mail($addr, $subject, $body, $headers);
387 * @param string $iri string
390 public static function iri2msgid($iri)
392 if (!strpos($iri, "@")) {
393 $msgid = preg_replace("/urn:(\S+):(\S+)\.(\S+):(\d+):(\S+)/i", "urn!$1!$4!$5@$2.$3", $iri);
402 * @param string $msgid msgid
405 public static function msgid2iri($msgid)
407 if (strpos($msgid, "@")) {
408 $iri = preg_replace("/urn!(\S+)!(\d+)!(\S+)@(\S+)\.(\S+)/i", "urn:$1:$4.$5:$2:$3", $msgid);
416 private static function saveReplace($pattern, $replace, $text)
420 $text = preg_replace($pattern, $replace, $text);
428 private static function unifyAttributionLine($message)
430 $quotestr = ['quote', 'spoiler'];
431 foreach ($quotestr as $quote) {
432 $message = self::saveReplace('/----- Original Message -----\s.*?From: "([^<"].*?)" <(.*?)>\s.*?To: (.*?)\s*?Cc: (.*?)\s*?Sent: (.*?)\s.*?Subject: ([^\n].*)\s*\['.$quote.'\]/i', "[".$quote."='$1']\n", $message);
433 $message = self::saveReplace('/----- Original Message -----\s.*?From: "([^<"].*?)" <(.*?)>\s.*?To: (.*?)\s*?Sent: (.*?)\s.*?Subject: ([^\n].*)\s*\['.$quote.'\]/i', "[".$quote."='$1']\n", $message);
435 $message = self::saveReplace('/-------- Original-Nachricht --------\s*\['.$quote.'\]\nDatum: (.*?)\nVon: (.*?) <(.*?)>\nAn: (.*?)\nBetreff: (.*?)\n/i', "[".$quote."='$2']\n", $message);
436 $message = self::saveReplace('/-------- Original-Nachricht --------\s*\['.$quote.'\]\sDatum: (.*?)\s.*Von: "([^<"].*?)" <(.*?)>\s.*An: (.*?)\n.*/i', "[".$quote."='$2']\n", $message);
437 $message = self::saveReplace('/-------- Original-Nachricht --------\s*\['.$quote.'\]\nDatum: (.*?)\nVon: (.*?)\nAn: (.*?)\nBetreff: (.*?)\n/i', "[".$quote."='$2']\n", $message);
439 $message = self::saveReplace('/-----Urspr.*?ngliche Nachricht-----\sVon: "([^<"].*?)" <(.*?)>\s.*Gesendet: (.*?)\s.*An: (.*?)\s.*Betreff: ([^\n].*?).*:\s*\['.$quote.'\]/i', "[".$quote."='$1']\n", $message);
440 $message = self::saveReplace('/-----Urspr.*?ngliche Nachricht-----\sVon: "([^<"].*?)" <(.*?)>\s.*Gesendet: (.*?)\s.*An: (.*?)\s.*Betreff: ([^\n].*?)\s*\['.$quote.'\]/i', "[".$quote."='$1']\n", $message);
442 $message = self::saveReplace('/Am (.*?), schrieb (.*?):\s*\['.$quote.'\]/i', "[".$quote."='$2']\n", $message);
444 $message = self::saveReplace('/Am .*?, \d+ .*? \d+ \d+:\d+:\d+ \+\d+\sschrieb\s(.*?)\s<(.*?)>:\s*\['.$quote.'\]/i', "[".$quote."='$1']\n", $message);
446 $message = self::saveReplace('/Am (.*?) schrieb (.*?) <(.*?)>:\s*\['.$quote.'\]/i', "[".$quote."='$2']\n", $message);
447 $message = self::saveReplace('/Am (.*?) schrieb <(.*?)>:\s*\['.$quote.'\]/i', "[".$quote."='$2']\n", $message);
448 $message = self::saveReplace('/Am (.*?) schrieb (.*?):\s*\['.$quote.'\]/i', "[".$quote."='$2']\n", $message);
449 $message = self::saveReplace('/Am (.*?) schrieb (.*?)\n(.*?):\s*\['.$quote.'\]/i', "[".$quote."='$2']\n", $message);
451 $message = self::saveReplace('/(\d+)\/(\d+)\/(\d+) ([^<"].*?) <(.*?)>\s*\['.$quote.'\]/i', "[".$quote."='$4']\n", $message);
453 $message = self::saveReplace('/On .*?, \d+ .*? \d+ \d+:\d+:\d+ \+\d+\s(.*?)\s<(.*?)>\swrote:\s*\['.$quote.'\]/i', "[".$quote."='$1']\n", $message);
455 $message = self::saveReplace('/On (.*?) at (.*?), (.*?)\s<(.*?)>\swrote:\s*\['.$quote.'\]/i', "[".$quote."='$3']\n", $message);
456 $message = self::saveReplace('/On (.*?)\n([^<].*?)\s<(.*?)>\swrote:\s*\['.$quote.'\]/i', "[".$quote."='$2']\n", $message);
457 $message = self::saveReplace('/On (.*?), (.*?), (.*?)\s<(.*?)>\swrote:\s*\['.$quote.'\]/i', "[".$quote."='$3']\n", $message);
458 $message = self::saveReplace('/On ([^,].*?), (.*?)\swrote:\s*\['.$quote.'\]/i', "[".$quote."='$2']\n", $message);
459 $message = self::saveReplace('/On (.*?), (.*?)\swrote\s*\['.$quote.'\]/i', "[".$quote."='$2']\n", $message);
461 // Der loescht manchmal den Body - was eigentlich unmoeglich ist
462 $message = self::saveReplace('/On (.*?),(.*?),(.*?),(.*?), (.*?) wrote:\s*\['.$quote.'\]/i', "[".$quote."='$5']\n", $message);
464 $message = self::saveReplace('/Zitat von ([^<].*?) <(.*?)>:\s*\['.$quote.'\]/i', "[".$quote."='$1']\n", $message);
466 $message = self::saveReplace('/Quoting ([^<].*?) <(.*?)>:\s*\['.$quote.'\]/i', "[".$quote."='$1']\n", $message);
468 $message = self::saveReplace('/From: "([^<"].*?)" <(.*?)>\s*\['.$quote.'\]/i', "[".$quote."='$1']\n", $message);
469 $message = self::saveReplace('/From: <(.*?)>\s*\['.$quote.'\]/i', "[".$quote."='$1']\n", $message);
471 $message = self::saveReplace('/Du \(([^)].*?)\) schreibst:\s*\['.$quote.'\]/i', "[".$quote."='$1']\n", $message);
473 $message = self::saveReplace('/--- (.*?) <.*?> schrieb am (.*?):\s*\['.$quote.'\]/i', "[".$quote."='$1']\n", $message);
474 $message = self::saveReplace('/--- (.*?) schrieb am (.*?):\s*\['.$quote.'\]/i', "[".$quote."='$1']\n", $message);
476 $message = self::saveReplace('/\* (.*?) <(.*?)> hat geschrieben:\s*\['.$quote.'\]/i', "[".$quote."='$1']\n", $message);
478 $message = self::saveReplace('/(.*?) <(.*?)> schrieb (.*?)\):\s*\['.$quote.'\]/i', "[".$quote."='$1']\n", $message);
479 $message = self::saveReplace('/(.*?) <(.*?)> schrieb am (.*?) um (.*):\s*\['.$quote.'\]/i', "[".$quote."='$1']\n", $message);
480 $message = self::saveReplace('/(.*?) schrieb am (.*?) um (.*):\s*\['.$quote.'\]/i', "[".$quote."='$1']\n", $message);
481 $message = self::saveReplace('/(.*?) \((.*?)\) schrieb:\s*\['.$quote.'\]/i', "[".$quote."='$2']\n", $message);
482 $message = self::saveReplace('/(.*?) schrieb:\s*\['.$quote.'\]/i', "[".$quote."='$1']\n", $message);
484 $message = self::saveReplace('/(.*?) <(.*?)> writes:\s*\['.$quote.'\]/i', "[".$quote."='$1']\n", $message);
485 $message = self::saveReplace('/(.*?) \((.*?)\) writes:\s*\['.$quote.'\]/i', "[".$quote."='$2']\n", $message);
486 $message = self::saveReplace('/(.*?) writes:\s*\['.$quote.'\]/i', "[".$quote."='$1']\n", $message);
488 $message = self::saveReplace('/\* (.*?) wrote:\s*\['.$quote.'\]/i', "[".$quote."='$1']\n", $message);
489 $message = self::saveReplace('/(.*?) wrote \(.*?\):\s*\['.$quote.'\]/i', "[".$quote."='$1']\n", $message);
490 $message = self::saveReplace('/(.*?) wrote:\s*\['.$quote.'\]/i', "[".$quote."='$1']\n", $message);
492 $message = self::saveReplace('/([^<].*?) <.*?> hat am (.*?)\sum\s(.*)\sgeschrieben:\s*\['.$quote.'\]/i', "[".$quote."='$1']\n", $message);
494 $message = self::saveReplace('/(\d+)\/(\d+)\/(\d+) ([^<"].*?) <(.*?)>:\s*\['.$quote.'\]/i', "[".$quote."='$4']\n", $message);
495 $message = self::saveReplace('/(\d+)\/(\d+)\/(\d+) (.*?) <(.*?)>\s*\['.$quote.'\]/i', "[".$quote."='$4']\n", $message);
496 $message = self::saveReplace('/(\d+)\/(\d+)\/(\d+) <(.*?)>:\s*\['.$quote.'\]/i', "[".$quote."='$4']\n", $message);
497 $message = self::saveReplace('/(\d+)\/(\d+)\/(\d+) <(.*?)>\s*\['.$quote.'\]/i', "[".$quote."='$4']\n", $message);
499 $message = self::saveReplace('/(.*?) <(.*?)> schrubselte:\s*\['.$quote.'\]/i', "[".$quote."='$1']\n", $message);
500 $message = self::saveReplace('/(.*?) \((.*?)\) schrubselte:\s*\['.$quote.'\]/i', "[".$quote."='$2']\n", $message);
505 private static function removeGPG($message)
507 $pattern = '/(.*)\s*-----BEGIN PGP SIGNED MESSAGE-----\s*[\r\n].*Hash:.*?[\r\n](.*)'.
508 '[\r\n]\s*-----BEGIN PGP SIGNATURE-----\s*[\r\n].*'.
509 '[\r\n]\s*-----END PGP SIGNATURE-----(.*)/is';
511 if (preg_match($pattern, $message, $result)) {
512 $cleaned = trim($result[1].$result[2].$result[3]);
514 $cleaned = str_replace(["\n- --\n", "\n- -"], ["\n-- \n", "\n-"], $cleaned);
522 private static function removeSig($message)
524 $sigpos = strrpos($message, "\n-- \n");
525 $quotepos = strrpos($message, "[/quote]");
528 // Especially for web.de who are using that as a separator
529 $message = str_replace("\n___________________________________________________________\n", "\n-- \n", $message);
530 $sigpos = strrpos($message, "\n-- \n");
531 $quotepos = strrpos($message, "[/quote]");
534 // When the signature separator is inside a quote, we don't separate
535 if (($sigpos < $quotepos) && ($sigpos != 0)) {
536 return ['body' => $message, 'sig' => ''];
539 $pattern = '/(.*)[\r\n]-- [\r\n](.*)/is';
541 preg_match($pattern, $message, $result);
543 if (!empty($result[1]) && !empty($result[2])) {
544 $cleaned = trim($result[1])."\n";
545 $sig = trim($result[2]);
551 return ['body' => $cleaned, 'sig' => $sig];
554 private static function removeLinebreak($message)
556 $arrbody = explode("\n", trim($message));
561 foreach ($arrbody as $i => $line) {
564 while ((strlen($currline)>0) && ((substr($currline, 0, 1) == '>')
565 || (substr($currline, 0, 1) == ' '))) {
566 if (substr($currline, 0, 1) == '>') {
570 $currline = ltrim(substr($currline, 1));
574 $nextline = trim($arrbody[$i + 1] ?? '');
575 while ((strlen($nextline)>0) && ((substr($nextline, 0, 1) == '>')
576 || (substr($nextline, 0, 1) == ' '))) {
577 if (substr($nextline, 0, 1) == '>') {
581 $nextline = ltrim(substr($nextline, 1));
584 if (!empty($lines[$lineno])) {
585 if (substr($lines[$lineno], -1) != ' ') {
586 $lines[$lineno] .= ' ';
589 while ((strlen($line)>0) && ((substr($line, 0, 1) == '>')
590 || (substr($line, 0, 1) == ' '))) {
592 $line = ltrim(substr($line, 1));
595 $lines[$lineno] = '';
598 $lines[$lineno] .= $line;
599 if (((substr($line, -1, 1) != ' '))
600 || ($quotelevel != $currquotelevel)) {
604 return implode("\n", $lines);
607 private static function convertQuote($body, $reply)
610 $arrbody = explode("\n", trim($body));
613 for ($i = 0; $i < count($arrbody); $i++) {
615 $quoteline = $arrbody[$i];
617 while ((strlen($quoteline)>0) and ((substr($quoteline, 0, 1) == '>')
618 || (substr($quoteline, 0, 1) == ' '))) {
619 if (substr($quoteline, 0, 1) == '>')
622 $quoteline = ltrim(substr($quoteline, 1));
625 $arrlevel[$i] = $quotelevel;
626 $arrbody[$i] = $quoteline;
632 for ($i = 0; $i < count($arrbody); $i++) {
633 $previousquote = $quotelevel;
634 $quotelevel = $arrlevel[$i];
636 while ($previousquote < $quotelevel) {
638 $arrbody[$i] = $quote.$arrbody[$i];
642 while ($previousquote > $quotelevel) {
643 $arrbody[$i] = '[/quote]'.$arrbody[$i];
647 $arrbodyquoted[] = $arrbody[$i];
649 while ($quotelevel > 0) {
650 $arrbodyquoted[] = '[/quote]';
654 $body = implode("\n", $arrbodyquoted);
656 if (strlen($body) > 0) {
657 $body = $body."\n\n";
661 $body = self::removeToFu($body);
667 private static function removeToFu($message)
669 $message = trim($message);
672 $oldmessage = $message;
673 $message = preg_replace('=\[/quote\][\s](.*?)\[quote\]=i', '$1', $message);
674 $message = str_replace("[/quote][quote]", "", $message);
675 } while ($message != $oldmessage);
683 while (($pos = strpos($message, '[quote', $start)) > 0) {
692 while (($pos = strpos($message, '[/quote]', $start)) > 0) {
697 while ($endquotes < $startquotes) {
698 $message .= '[/quote]';
704 while (($pos = strpos($message, '[/quote]', $start)) > 0) {
709 if (strtolower(substr($message, -8)) != '[/quote]')
716 foreach ($quotes as $index => $quote) {
717 $quotelevel += $quote;
719 if (($quotelevel == 0) and ($quotestart == 0))
720 $quotestart = $index;
723 if ($quotestart != 0) {
724 $message = trim(substr($message, 0, $quotestart))."\n[spoiler]".substr($message, $quotestart+7, -8).'[/spoiler]';