56cc9bae445d0cf2cd394b35be64b5e43ffd8f91
[squirrelmail.git] / functions / imap_general.php
1 <?php
2
3 /**
4 * imap_general.php
5 *
6 * This implements all functions that do general IMAP functions.
7 *
8 * @copyright 1999-2014 The SquirrelMail Project Team
9 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
10 * @version $Id$
11 * @package squirrelmail
12 * @subpackage imap
13 */
14
15 /** Includes.. */
16
17 require_once(SM_PATH . 'functions/rfc822address.php');
18
19
20 /**
21 * Generates a new session ID by incrementing the last one used;
22 * this ensures that each command has a unique ID.
23 * @param bool $unique_id (since 1.3.0) controls use of unique
24 * identifiers/message sequence numbers in IMAP commands. See IMAP
25 * rfc 'UID command' chapter.
26 * @return string IMAP session id of the form 'A000'.
27 * @since 1.2.0
28 */
29 function sqimap_session_id($unique_id = FALSE) {
30 static $sqimap_session_id = 1;
31
32 if (!$unique_id) {
33 return( sprintf("A%03d", $sqimap_session_id++) );
34 } else {
35 return( sprintf("A%03d", $sqimap_session_id++) . ' UID' );
36 }
37 }
38
39 /**
40 * Both send a command and accept the result from the command.
41 * This is to allow proper session number handling.
42 * @param stream $imap_stream imap connection resource
43 * @param string $query imap command
44 * @param boolean $handle_errors see sqimap_retrieve_imap_response()
45 * @param array $response
46 * @param array $message
47 * @param boolean $unique_id (since 1.3.0) see sqimap_session_id().
48 * @return mixed returns false on imap error. displays error message
49 * if imap stream is not available.
50 * @since 1.2.3
51 */
52 function sqimap_run_command_list ($imap_stream, $query, $handle_errors, &$response, &$message, $unique_id = false) {
53 if ($imap_stream) {
54 $sid = sqimap_session_id($unique_id);
55 fputs ($imap_stream, $sid . ' ' . $query . "\r\n");
56 $tag_uid_a = explode(' ',trim($sid));
57 $tag = $tag_uid_a[0];
58 $read = sqimap_retrieve_imap_response ($imap_stream, $tag, $handle_errors, $response, $message, $query );
59 /* get the response and the message */
60 $message = $message[$tag];
61 $response = $response[$tag];
62 return $read[$tag];
63 //FIXME: obey $handle_errors below!
64 } else {
65 global $squirrelmail_language, $color;
66 set_up_language($squirrelmail_language);
67 //FIXME: NO HTML IN CORE!
68 $string = "<b><font color=\"$color[2]\">\n" .
69 _("ERROR: No available IMAP stream.") .
70 //FIXME: NO HTML IN CORE!
71 "</b></font>\n";
72 error_box($string);
73 return false;
74 }
75 }
76
77 /**
78 * @param stream $imap_stream imap connection resource
79 * @param string $query imap command
80 * @param boolean $handle_errors see sqimap_retrieve_imap_response()
81 * @param array $response empty string, if return = false
82 * @param array $message empty string, if return = false
83 * @param boolean $unique_id (since 1.3.0) see sqimap_session_id()
84 * @param boolean $filter (since 1.4.1 and 1.5.0) see sqimap_fread()
85 * @param mixed $outputstream (since 1.4.1 and 1.5.0) see sqimap_fread()
86 * @param boolean $no_return (since 1.4.1 and 1.5.0) see sqimap_fread()
87 * @return mixed returns false on imap error. displays error message
88 * if imap stream is not available.
89 * @since 1.2.3
90 */
91 function sqimap_run_command ($imap_stream, $query, $handle_errors, &$response,
92 &$message, $unique_id = false,$filter=false,
93 $outputstream=false,$no_return=false) {
94 if ($imap_stream) {
95 $sid = sqimap_session_id($unique_id);
96 fputs ($imap_stream, $sid . ' ' . $query . "\r\n");
97 $tag_uid_a = explode(' ',trim($sid));
98 $tag = $tag_uid_a[0];
99
100 $read = sqimap_read_data ($imap_stream, $tag, $handle_errors, $response,
101 $message, $query,$filter,$outputstream,$no_return);
102 if (empty($read)) { //IMAP server dropped its connection
103 $response = '';
104 $message = '';
105 return false;
106 }
107 /* retrieve the response and the message */
108 $response = $response[$tag];
109 $message = $message[$tag];
110
111 if (!empty($read[$tag])) {
112 /* sqimap_read_data should be called for one response
113 but since it just calls sqimap_retrieve_imap_response
114 which handles multiple responses we need to check for
115 that and merge the $read[$tag] array IF they are
116 separated and IF it was a FETCH response. */
117
118 if (isset($read[$tag][1]) && is_array($read[$tag][1]) && isset($read[$tag][1][0])
119 && preg_match('/^\* \d+ FETCH/', $read[$tag][1][0])) {
120 $result = array();
121 foreach($read[$tag] as $index => $value) {
122 $result = array_merge($result, $read[$tag]["$index"]);
123 }
124 return $result;
125 }
126
127 return $read[$tag][0];
128 } else {
129 return $read[$tag];
130 }
131 //FIXME: obey $handle_errors below!
132 } else {
133 global $squirrelmail_language, $color;
134 set_up_language($squirrelmail_language);
135 //FIXME: NO HTML IN CORE!
136 $string = "<b><font color=\"$color[2]\">\n" .
137 _("ERROR: No available IMAP stream.") .
138 //FIXME: NO HTML IN CORE!
139 "</b></font>\n";
140 error_box($string);
141 return false;
142 }
143 }
144
145 /**
146 * @param mixed $new_query
147 * @param string $tag
148 * @param array $aQuery
149 * @param boolean $unique_id see sqimap_session_id()
150 * @since 1.5.0
151 */
152 function sqimap_prepare_pipelined_query($new_query,&$tag,&$aQuery,$unique_id) {
153 $sid = sqimap_session_id($unique_id);
154 $tag_uid_a = explode(' ',trim($sid));
155 $tag = $tag_uid_a[0];
156 $query = $sid . ' '.$new_query."\r\n";
157 $aQuery[$tag] = $query;
158 }
159
160 /**
161 * @param stream $imap_stream imap stream
162 * @param array $aQueryList
163 * @param boolean $handle_errors
164 * @param array $aServerResponse
165 * @param array $aServerMessage
166 * @param boolean $unique_id see sqimap_session_id()
167 * @param boolean $filter see sqimap_fread()
168 * @param mixed $outputstream see sqimap_fread()
169 * @param boolean $no_return see sqimap_fread()
170 * @since 1.5.0
171 */
172 function sqimap_run_pipelined_command ($imap_stream, $aQueryList, $handle_errors,
173 &$aServerResponse, &$aServerMessage, $unique_id = false,
174 $filter=false,$outputstream=false,$no_return=false) {
175 $aResponse = false;
176
177 /*
178 Do not fire all calls at once to the IMAP server but split the calls up
179 in portions of $iChunkSize. If we do not do that I think we misbehave as
180 IMAP client or should handle BYE calls if the IMAP server drops the
181 connection because the number of queries is to large. This isn't tested
182 but a wild guess how it could work in the field.
183
184 After testing it on Exchange 2000 we discovered that a chunksize of 32
185 was quicker then when we raised it to 128.
186 */
187 $iQueryCount = count($aQueryList);
188 $iChunkSize = 32;
189 // array_chunk would also do the job but it's supported from php > 4.2
190 $aQueryChunks = array();
191 $iLoops = floor($iQueryCount / $iChunkSize);
192
193 if ($iLoops * $iChunkSize != $iQueryCount) ++$iLoops;
194
195 if (!function_exists('array_chunk')) { // arraychunk replacement
196 reset($aQueryList);
197 for($i=0;$i<$iLoops;++$i) {
198 for($j=0;$j<$iChunkSize;++$j) {
199 $key = key($aQueryList);
200 $aTmp[$key] = $aQueryList[$key];
201 if (next($aQueryList) === false) break;
202 }
203 $aQueryChunks[] = $aTmp;
204 }
205 } else {
206 $aQueryChunks = array_chunk($aQueryList,$iChunkSize,true);
207 }
208
209 for ($i=0;$i<$iLoops;++$i) {
210 $aQuery = $aQueryChunks[$i];
211 foreach($aQuery as $tag => $query) {
212 fputs($imap_stream,$query);
213 $aResults[$tag] = false;
214 }
215 foreach($aQuery as $tag => $query) {
216 if ($aResults[$tag] == false) {
217 $aReturnedResponse = sqimap_retrieve_imap_response ($imap_stream, $tag,
218 $handle_errors, $response, $message, $query,
219 $filter,$outputstream,$no_return);
220 foreach ($aReturnedResponse as $returned_tag => $aResponse) {
221 if (!empty($aResponse)) {
222 $aResults[$returned_tag] = $aResponse[0];
223 } else {
224 $aResults[$returned_tag] = $aResponse;
225 }
226 $aServerResponse[$returned_tag] = $response[$returned_tag];
227 $aServerMessage[$returned_tag] = $message[$returned_tag];
228 }
229 }
230 }
231 }
232 return $aResults;
233 }
234
235 /**
236 * Custom fgets function: gets a line from the IMAP server,
237 * no matter how big it may be.
238 * @param stream $imap_stream the stream to read from
239 * @return string a line
240 * @since 1.2.8
241 */
242 function sqimap_fgets($imap_stream) {
243 $read = '';
244 $buffer = 4096;
245 $results = '';
246 $offset = 0;
247 while (strpos($results, "\r\n", $offset) === false) {
248 if (!($read = fgets($imap_stream, $buffer))) {
249 /* this happens in case of an error */
250 /* reset $results because it's useless */
251 $results = false;
252 break;
253 }
254 if ( $results != '' ) {
255 $offset = strlen($results) - 1;
256 }
257 $results .= $read;
258 }
259 return $results;
260 }
261
262 /**
263 * @param stream $imap_stream
264 * @param integer $iSize
265 * @param boolean $filter
266 * @param mixed $outputstream stream or 'php://stdout' string
267 * @param boolean $no_return controls data returned by function
268 * @return string
269 * @since 1.4.1
270 */
271 function sqimap_fread($imap_stream,$iSize,$filter=false,
272 $outputstream=false, $no_return=false) {
273 if (!$filter || !$outputstream) {
274 $iBufferSize = $iSize;
275 } else {
276 // see php bug 24033. They changed fread behaviour %$^&$%
277 $iBufferSize = 7800; // multiple of 78 in case of base64 decoding.
278 }
279 if ($iSize < $iBufferSize) {
280 $iBufferSize = $iSize;
281 }
282
283 $iRetrieved = 0;
284 $results = '';
285 $sRead = $sReadRem = '';
286 // NB: fread can also stop at end of a packet on sockets.
287 while ($iRetrieved < $iSize) {
288 $sRead = fread($imap_stream,$iBufferSize);
289 $iLength = strlen($sRead);
290 $iRetrieved += $iLength ;
291 $iRemaining = $iSize - $iRetrieved;
292 if ($iRemaining < $iBufferSize) {
293 $iBufferSize = $iRemaining;
294 }
295 if ($sRead == '') {
296 $results = false;
297 break;
298 }
299 if ($sReadRem != '') {
300 $sRead = $sReadRem . $sRead;
301 $sReadRem = '';
302 }
303
304 if ($filter && $sRead != '') {
305 // in case the filter is base64 decoding we return a remainder
306 $sReadRem = $filter($sRead);
307 }
308 if ($outputstream && $sRead != '') {
309 if (is_resource($outputstream)) {
310 fwrite($outputstream,$sRead);
311 } else if ($outputstream == 'php://stdout') {
312 echo $sRead;
313 }
314 }
315 if ($no_return) {
316 $sRead = '';
317 } else {
318 $results .= $sRead;
319 }
320 }
321 return $results;
322 }
323
324
325 /**
326 * Obsolete function, inform plugins that use it
327 * @param stream $imap_stream
328 * @param string $tag
329 * @param boolean $handle_errors
330 * @param array $response
331 * @param array $message
332 * @param string $query
333 * @since 1.1.3
334 * @deprecated (since 1.5.0) use sqimap_run_command or sqimap_run_command_list instead
335 */
336 function sqimap_read_data_list($imap_stream, $tag, $handle_errors,
337 &$response, &$message, $query = '') {
338 global $color, $oTemplate, $squirrelmail_language;
339 set_up_language($squirrelmail_language);
340 //FIXME: NO HTML IN CORE!
341 $string = "<b><font color=\"$color[2]\">\n" .
342 _("ERROR: Bad function call.") .
343 //FIXME: NO HTML IN CORE!
344 "</b><br />\n" .
345 _("Reason:") . ' '.
346 'There is a plugin installed which make use of the <br />' .
347 'SquirrelMail internal function sqimap_read_data_list.<br />'.
348 'Please adapt the installed plugin and let it use<br />'.
349 'sqimap_run_command or sqimap_run_command_list instead<br /><br />'.
350 'The following query was issued:<br />'.
351 //FIXME: NO HTML IN CORE!
352 sm_encode_html_special_chars($query) . '<br />' . "</font><br />\n";
353 error_box($string);
354 $oTemplate->display('footer.tpl');
355 exit;
356 }
357
358 /**
359 * Function to display an error related to an IMAP query.
360 * @param string title the caption of the error box
361 * @param string query the query that went wrong
362 * @param string message_title optional message title
363 * @param string message optional error message
364 * @param string $link an optional link to try again
365 * @return void
366 * @since 1.5.0
367 */
368 function sqimap_error_box($title, $query = '', $message_title = '', $message = '', $link = '')
369 {
370 global $color, $squirrelmail_language;
371
372 set_up_language($squirrelmail_language);
373 //FIXME: NO HTML IN CORE!
374 $string = "<font color=\"$color[2]\"><b>\n" . $title . "</b><br />\n";
375 $cmd = explode(' ',$query);
376 $cmd= strtolower($cmd[0]);
377
378 if ($query != '' && $cmd != 'login')
379 $string .= _("Query:") . ' ' . sm_encode_html_special_chars($query) . '<br />';
380 if ($message_title != '')
381 $string .= $message_title;
382 if ($message != '')
383 $string .= sm_encode_html_special_chars($message);
384 //FIXME: NO HTML IN CORE!
385 $string .= "</font><br />\n";
386 if ($link != '')
387 $string .= $link;
388 error_box($string);
389 }
390
391 /**
392 * Reads the output from the IMAP stream. If handle_errors is set to true,
393 * this will also handle all errors that are received. If it is not set,
394 * the errors will be sent back through $response and $message.
395 * @param stream $imap_stream imap stream
396 * @param string $tag
397 * @param boolean $handle_errors handle errors internally or send them in $response and $message.
398 * @param array $response
399 * @param array $message
400 * @param string $query command that can be printed if something fails
401 * @param boolean $filter see sqimap_fread()
402 * @param mixed $outputstream see sqimap_fread()
403 * @param boolean $no_return see sqimap_fread()
404 * @since 1.5.0
405 */
406 function sqimap_retrieve_imap_response($imap_stream, $tag, $handle_errors,
407 &$response, &$message, $query = '',
408 $filter = false, $outputstream = false, $no_return = false) {
409 global $color, $squirrelmail_language;
410 $read = '';
411 if (!is_array($message)) $message = array();
412 if (!is_array($response)) $response = array();
413 $aResponse = '';
414 $resultlist = array();
415 $data = array();
416 $sCommand = '';
417 if (preg_match("/^(\w+)\s*/",$query,$aMatch)) {
418 $sCommand = strtoupper($aMatch[1]);
419 } else {
420 // error reporting (shouldn't happen)
421 }
422 $read = sqimap_fgets($imap_stream);
423 $i = 0;
424 while ($read) {
425 $char = $read{0};
426 switch ($char)
427 {
428 case '+':
429 default:
430 $read = sqimap_fgets($imap_stream);
431 break;
432
433 case $tag{0}:
434 {
435 /* get the command */
436 $arg = '';
437 $i = strlen($tag)+1;
438 $s = substr($read,$i);
439 if (($j = strpos($s,' ')) || ($j = strpos($s,"\n"))) {
440 $arg = substr($s,0,$j);
441 }
442 $found_tag = substr($read,0,$i-1);
443 if ($found_tag) {
444 switch ($arg)
445 {
446 case 'OK':
447 case 'BAD':
448 case 'NO':
449 case 'BYE':
450 case 'PREAUTH':
451 $response[$found_tag] = $arg;
452 $message[$found_tag] = trim(substr($read,$i+strlen($arg)));
453 if (!empty($data)) {
454 $resultlist[] = $data;
455 }
456 $aResponse[$found_tag] = $resultlist;
457 $data = $resultlist = array();
458 if ($found_tag == $tag) {
459 break 3; /* switch switch while */
460 }
461 break;
462 default:
463 /* this shouldn't happen */
464 $response[$found_tag] = $arg;
465 $message[$found_tag] = trim(substr($read,$i+strlen($arg)));
466 if (!empty($data)) {
467 $resultlist[] = $data;
468 }
469 $aResponse[$found_tag] = $resultlist;
470 $data = $resultlist = array();
471 if ($found_tag == $tag) {
472 break 3; /* switch switch while */
473 }
474 }
475 }
476 $read = sqimap_fgets($imap_stream);
477 if ($read === false) { /* error */
478 break 2; /* switch while */
479 }
480 break;
481 } // end case $tag{0}
482
483 case '*':
484 {
485 if (($sCommand == "FETCH" || $sCommand == "STORE") && preg_match('/^\*\s\d+\sFETCH/',$read)) {
486 /* check for literal */
487 $s = substr($read,-3);
488 $fetch_data = array();
489 do { /* outer loop, continue until next untagged fetch
490 or tagged reponse */
491 do { /* innerloop for fetching literals. with this loop
492 we prohibid that literal responses appear in the
493 outer loop so we can trust the untagged and
494 tagged info provided by $read */
495 $read_literal = false;
496 if ($s === "}\r\n") {
497 $j = strrpos($read,'{');
498 $iLit = substr($read,$j+1,-3);
499 $fetch_data[] = $read;
500 $sLiteral = sqimap_fread($imap_stream,$iLit,$filter,$outputstream,$no_return);
501 if ($sLiteral === false) { /* error */
502 break 4; /* while while switch while */
503 }
504 /* backwards compattibility */
505 $aLiteral = explode("\n", $sLiteral);
506 /* release not neaded data */
507 unset($sLiteral);
508 foreach ($aLiteral as $line) {
509 $fetch_data[] = $line ."\n";
510 }
511 /* release not neaded data */
512 unset($aLiteral);
513 /* next fgets belongs to this fetch because
514 we just got the exact literalsize and there
515 must follow data to complete the response */
516 $read = sqimap_fgets($imap_stream);
517 if ($read === false) { /* error */
518 break 4; /* while while switch while */
519 }
520 $s = substr($read,-3);
521 $read_literal = true;
522 continue;
523 } else {
524 $fetch_data[] = $read;
525 }
526 /* retrieve next line and check in the while
527 statements if it belongs to this fetch response */
528 $read = sqimap_fgets($imap_stream);
529 if ($read === false) { /* error */
530 break 4; /* while while switch while */
531 }
532 /* check for next untagged reponse and break */
533 if ($read{0} == '*') break 2;
534 $s = substr($read,-3);
535 } while ($s === "}\r\n" || $read_literal);
536 $s = substr($read,-3);
537 } while ($read{0} !== '*' &&
538 substr($read,0,strlen($tag)) !== $tag);
539 $resultlist[] = $fetch_data;
540 /* release not neaded data */
541 unset ($fetch_data);
542 } else {
543 $s = substr($read,-3);
544 do {
545 if ($s === "}\r\n") {
546 $j = strrpos($read,'{');
547 $iLit = substr($read,$j+1,-3);
548 // check for numeric value to avoid that untagged responses like:
549 // * OK [PARSE] Unexpected characters at end of address: {SET:debug=51}
550 // will trigger literal fetching ({SET:debug=51} !== int )
551 if (is_numeric($iLit)) {
552 $data[] = $read;
553 $sLiteral = fread($imap_stream,$iLit);
554 if ($sLiteral === false) { /* error */
555 $read = false;
556 break 3; /* while switch while */
557 }
558 $data[] = $sLiteral;
559 $data[] = sqimap_fgets($imap_stream);
560 } else {
561 $data[] = $read;
562 }
563 } else {
564 $data[] = $read;
565 }
566 $read = sqimap_fgets($imap_stream);
567 if ($read === false) {
568 break 3; /* while switch while */
569 } else if ($read{0} == '*') {
570 break;
571 }
572 $s = substr($read,-3);
573 } while ($s === "}\r\n");
574 break 1;
575 }
576 break;
577 } // end case '*'
578 } // end switch
579 } // end while
580
581 /* error processing in case $read is false */
582 if ($read === false) {
583 // try to retrieve an untagged bye respons from the results
584 $sResponse = array_pop($data);
585 if ($sResponse !== NULL && strpos($sResponse,'* BYE') !== false) {
586 if (!$handle_errors) {
587 $query = '';
588 }
589 sqimap_error_box(_("ERROR: IMAP server closed the connection."), $query, _("Server responded:"),$sResponse);
590 //FIXME: NO HTML IN CORE!
591 echo '</body></html>';
592 exit;
593 } else if ($handle_errors) {
594 unset($data);
595 sqimap_error_box(_("ERROR: Connection dropped by IMAP server."), $query);
596 exit;
597 }
598 }
599
600 /* Set $resultlist array */
601 if (!empty($data)) {
602 //$resultlist[] = $data;
603 }
604 elseif (empty($resultlist)) {
605 $resultlist[] = array();
606 }
607
608 /* Return result or handle errors */
609 if ($handle_errors == false) {
610 return $aResponse;
611 }
612 switch ($response[$tag]) {
613 case 'OK':
614 return $aResponse;
615 break;
616 case 'NO':
617 /* ignore this error from M$ exchange, it is not fatal (aka bug) */
618 if (strstr($message[$tag], 'command resulted in') === false) {
619 sqimap_error_box(_("ERROR: Could not complete request."), $query, _("Reason Given:") . ' ', $message[$tag]);
620 echo '</body></html>';
621 exit;
622 }
623 break;
624 case 'BAD':
625 sqimap_error_box(_("ERROR: Bad or malformed request."), $query, _("Server responded:") . ' ', $message[$tag]);
626 //FIXME: NO HTML IN CORE!
627 echo '</body></html>';
628 exit;
629 case 'BYE':
630 sqimap_error_box(_("ERROR: IMAP server closed the connection."), $query, _("Server responded:") . ' ', $message[$tag]);
631 //FIXME: NO HTML IN CORE!
632 echo '</body></html>';
633 exit;
634 default:
635 sqimap_error_box(_("ERROR: Unknown IMAP response."), $query, _("Server responded:") . ' ', $message[$tag]);
636 /* the error is displayed but because we don't know the reponse we
637 return the result anyway */
638 return $aResponse;
639 break;
640 }
641 }
642
643 /**
644 * @param stream $imap_stream imap string
645 * @param string $tag_uid
646 * @param boolean $handle_errors
647 * @param array $response
648 * @param array $message
649 * @param string $query (since 1.2.5)
650 * @param boolean $filter (since 1.4.1) see sqimap_fread()
651 * @param mixed $outputstream (since 1.4.1) see sqimap_fread()
652 * @param boolean $no_return (since 1.4.1) see sqimap_fread()
653 */
654 function sqimap_read_data ($imap_stream, $tag_uid, $handle_errors,
655 &$response, &$message, $query = '',
656 $filter=false,$outputstream=false,$no_return=false) {
657
658 $tag_uid_a = explode(' ',trim($tag_uid));
659 $tag = $tag_uid_a[0];
660
661 $res = sqimap_retrieve_imap_response($imap_stream, $tag, $handle_errors,
662 $response, $message, $query,$filter,$outputstream,$no_return);
663 return $res;
664 }
665
666 /**
667 * Connects to the IMAP server and returns a resource identifier for use with
668 * the other SquirrelMail IMAP functions. Does NOT login!
669 * @param string server hostname of IMAP server
670 * @param int port port number to connect to
671 * @param integer $tls whether to use plain text(0), TLS(1) or STARTTLS(2) when connecting.
672 * Argument was boolean before 1.5.1.
673 * @param array $ssl_options SSL context options, see config_local.php
674 * for more details (OPTIONAL)
675 * @return imap-stream resource identifier
676 * @since 1.5.0 (usable only in 1.5.1 or later)
677 */
678 function sqimap_create_stream($server,$port,$tls=0,$ssl_options=array()) {
679 global $squirrelmail_language;
680
681 if (strstr($server,':') && ! preg_match("/^\[.*\]$/",$server)) {
682 // numerical IPv6 address must be enclosed in square brackets
683 $server = '['.$server.']';
684 }
685
686 // NB: Using "ssl://" ensures the highest possible TLS version
687 // will be negotiated with the server (whereas "tls://" only
688 // uses TLS version 1.0)
689 //
690 if ($tls == 1) {
691 if ((check_php_version(4,3)) and (extension_loaded('openssl'))) {
692 if (function_exists('stream_socket_client')) {
693 $server_address = 'ssl://' . $server . ':' . $port;
694 $ssl_context = @stream_context_create($ssl_options);
695 $connect_timeout = ini_get('default_socket_timeout');
696 // null timeout is broken
697 if ($connect_timeout == 0)
698 $connect_timeout = 15;
699 $imap_stream = @stream_socket_client($server_address, $error_number, $error_string, $connect_timeout, STREAM_CLIENT_CONNECT, $ssl_context);
700 } else {
701 $imap_stream = @fsockopen('ssl://' . $server, $port, $error_number, $error_string, 15);
702 }
703 } else {
704 require_once(SM_PATH . 'functions/display_messages.php');
705 logout_error( sprintf(_("Error connecting to IMAP server: %s."), $server).
706 '<br />'.
707 _("TLS is enabled, but this version of PHP does not support TLS sockets, or is missing the openssl extension.").
708 '<br /><br />'.
709 _("Please contact your system administrator and report this error."),
710 sprintf(_("Error connecting to IMAP server: %s."), $server));
711 }
712 } else {
713 $imap_stream = @fsockopen($server, $port, $error_number, $error_string, 15);
714 }
715
716
717 /* Do some error correction */
718 if (!$imap_stream) {
719 set_up_language($squirrelmail_language, true);
720 require_once(SM_PATH . 'functions/display_messages.php');
721 logout_error( sprintf(_("Error connecting to IMAP server: %s."), $server).
722 //FIXME: NO HTML IN CORE!
723 "<br />\r\n$error_number : $error_string<br />\r\n",
724 sprintf(_("Error connecting to IMAP server: %s."), $server) );
725 exit;
726 }
727 $server_info = fgets ($imap_stream, 1024);
728
729 /**
730 * Implementing IMAP STARTTLS (rfc2595) in php 5.1.0+
731 * http://www.php.net/stream-socket-enable-crypto
732 */
733 if ($tls === 2) {
734 if (function_exists('stream_socket_enable_crypto')) {
735 // check starttls capability, don't use cached capability version
736 if (! sqimap_capability($imap_stream, 'STARTTLS', false)) {
737 // imap server does not declare starttls support
738 sqimap_error_box(sprintf(_("Error connecting to IMAP server: %s."), $server),
739 '','',
740 _("IMAP STARTTLS is enabled in SquirrelMail configuration, but used IMAP server does not support STARTTLS."));
741 exit;
742 }
743
744 // issue starttls command and check response
745 sqimap_run_command($imap_stream, 'STARTTLS', false, $starttls_response, $starttls_message);
746 // check response
747 if ($starttls_response!='OK') {
748 // starttls command failed
749 sqimap_error_box(sprintf(_("Error connecting to IMAP server: %s."), $server),
750 'STARTTLS',
751 _("Server replied:") . ' ',
752 $starttls_message);
753 exit();
754 }
755
756 // start crypto on connection. suppress function errors.
757 if (@stream_socket_enable_crypto($imap_stream,true,STREAM_CRYPTO_METHOD_TLS_CLIENT)) {
758 // starttls was successful
759
760 /**
761 * RFC 2595 requires to discard CAPABILITY information after successful
762 * STARTTLS command. We don't follow RFC, because SquirrelMail stores CAPABILITY
763 * information only after successful login (src/redirect.php) and cached information
764 * is used only in other php script connections after successful STARTTLS. If script
765 * issues sqimap_capability() call before sqimap_login() and wants to get initial
766 * capability response, script should set third sqimap_capability() argument to false.
767 */
768 //sqsession_unregister('sqimap_capabilities');
769 } else {
770 /**
771 * stream_socket_enable_crypto() call failed. Possible issues:
772 * - broken ssl certificate (uw drops connection, error is in syslog mail facility)
773 * - some ssl error (can reproduce with STREAM_CRYPTO_METHOD_SSLv3_CLIENT, PHP E_WARNING
774 * suppressed in stream_socket_enable_crypto() call)
775 */
776 sqimap_error_box(sprintf(_("Error connecting to IMAP server: %s."), $server),
777 '','',
778 _("Unable to start TLS."));
779 /**
780 * Bug: stream_socket_enable_crypto() does not register SSL errors in
781 * openssl_error_string() or stream notification wrapper and displays
782 * them in E_WARNING level message. It is impossible to retrieve error
783 * message without own error handler.
784 */
785 exit;
786 }
787 } else {
788 // php install does not support stream_socket_enable_crypto() function
789 sqimap_error_box(sprintf(_("Error connecting to IMAP server: %s."), $server),
790 '','',
791 _("IMAP STARTTLS is enabled in SquirrelMail configuration, but used PHP version does not support functions that allow to enable encryption on open socket."));
792 exit;
793 }
794 }
795 return $imap_stream;
796 }
797
798 /**
799 * Logs the user into the IMAP server. If $hide is set, no error messages
800 * will be displayed (if set to 1, just exits, if set to 2, returns FALSE).
801 * This function returns the IMAP connection handle.
802 * @param string $username user name
803 * @param string $password password encrypted with onetimepad. Since 1.5.2
804 * function can use internal password functions, if parameter is set to
805 * boolean false.
806 * @param string $imap_server_address address of imap server
807 * @param integer $imap_port port of imap server
808 * @param int $hide controls display connection errors:
809 * 0 = do not hide
810 * 1 = show no errors (just exit)
811 * 2 = show no errors (return FALSE)
812 * 3 = show no errors (return error string)
813 * @param array $ssl_options SSL context options, see config_local.php
814 * for more details (OPTIONAL)
815 * @return mixed The IMAP connection stream, or if the connection fails,
816 * FALSE if $hide is set to 2 or an error string if $hide
817 * is set to 3.
818 */
819 function sqimap_login ($username, $password, $imap_server_address,
820 $imap_port, $hide, $ssl_options=array()) {
821 global $color, $squirrelmail_language, $onetimepad, $use_imap_tls,
822 $imap_auth_mech, $sqimap_capabilities, $display_imap_login_error;
823
824 // Note/TODO: This hack grabs the $authz argument from the session. In the short future,
825 // a new argument in function sqimap_login() will be used instead.
826 $authz = '';
827 global $authz;
828 sqgetglobalvar('authz' , $authz , SQ_SESSION);
829
830 if(!empty($authz)) {
831 /* authz plugin - specific:
832 * Get proxy login parameters from authz plugin configuration. If they
833 * exist, they will override the current ones.
834 * This is useful if we want to use different SASL authentication mechanism
835 * and/or different TLS settings for proxy logins. */
836 global $authz_imap_auth_mech, $authz_use_imap_tls, $authz_imapPort_tls;
837 $imap_auth_mech = !empty($authz_imap_auth_mech) ? strtolower($authz_imap_auth_mech) : $imap_auth_mech;
838 $use_imap_tls = !empty($authz_use_imap_tls)? $authz_use_imap_tls : $use_imap_tls;
839 $imap_port = !empty($authz_use_imap_tls)? $authz_imapPort_tls : $imap_port;
840
841 if($imap_auth_mech == 'login' || $imap_auth_mech == 'cram-md5') {
842 logout_error("Misconfigured Plugin (authz or equivalent):<br/>".
843 "The LOGIN and CRAM-MD5 authentication mechanisms cannot be used when attempting proxy login.");
844 exit;
845 }
846 }
847
848 /* get imap login password */
849 if ($password===false) {
850 /* standard functions */
851 $password = sqauth_read_password();
852 } else {
853 /* old way. $key must be extracted from cookie */
854 if (!isset($onetimepad) || empty($onetimepad)) {
855 sqgetglobalvar('onetimepad' , $onetimepad , SQ_SESSION );
856 }
857 /* Decrypt the password */
858 $password = OneTimePadDecrypt($password, $onetimepad);
859 }
860
861 if (!isset($sqimap_capabilities)) {
862 sqgetglobalvar('sqimap_capabilities' , $sqimap_capabilities , SQ_SESSION );
863 }
864
865 $host = $imap_server_address;
866 $imap_server_address = sqimap_get_user_server($imap_server_address, $username);
867
868 $imap_stream = sqimap_create_stream($imap_server_address,$imap_port,$use_imap_tls,$ssl_options);
869
870 if (($imap_auth_mech == 'cram-md5') OR ($imap_auth_mech == 'digest-md5')) {
871 // We're using some sort of authentication OTHER than plain or login
872 $tag=sqimap_session_id(false);
873 if ($imap_auth_mech == 'digest-md5') {
874 $query = $tag . " AUTHENTICATE DIGEST-MD5\r\n";
875 } elseif ($imap_auth_mech == 'cram-md5') {
876 $query = $tag . " AUTHENTICATE CRAM-MD5\r\n";
877 }
878 fputs($imap_stream,$query);
879 $answer=sqimap_fgets($imap_stream);
880 // Trim the "+ " off the front
881 $response=explode(" ",$answer,3);
882 if ($response[0] == '+') {
883 // Got a challenge back
884 $challenge=$response[1];
885 if ($imap_auth_mech == 'digest-md5') {
886 $reply = digest_md5_response($username,$password,$challenge,'imap',$host,$authz);
887 } elseif ($imap_auth_mech == 'cram-md5') {
888 $reply = cram_md5_response($username,$password,$challenge);
889 }
890 fputs($imap_stream,$reply);
891 $read=sqimap_fgets($imap_stream);
892 if ($imap_auth_mech == 'digest-md5') {
893 // DIGEST-MD5 has an extra step..
894 if (substr($read,0,1) == '+') { // OK so far..
895 fputs($imap_stream,"\r\n");
896 $read=sqimap_fgets($imap_stream);
897 }
898 }
899 $results=explode(" ",$read,3);
900 $response=$results[1];
901 $message=$results[2];
902 } else {
903 // Fake the response, so the error trap at the bottom will work
904 $response="BAD";
905 $message='IMAP server does not appear to support the authentication method selected.';
906 $message .= ' Please contact your system administrator.';
907 }
908 } elseif ($imap_auth_mech == 'login') {
909 // Original IMAP login code
910 $query = 'LOGIN "' . quoteimap($username) . '" "' . quoteimap($password) . '"';
911 $read = sqimap_run_command ($imap_stream, $query, false, $response, $message);
912 } elseif ($imap_auth_mech == 'plain') {
913 /***
914 * SASL PLAIN, RFC 4616 (updates 2595)
915 *
916 * The mechanism consists of a single message, a string of [UTF-8]
917 * encoded [Unicode] characters, from the client to the server. The
918 * client presents the authorization identity (identity to act as),
919 * followed by a NUL (U+0000) character, followed by the authentication
920 * identity (identity whose password will be used), followed by a NUL
921 * (U+0000) character, followed by the clear-text password. As with
922 * other SASL mechanisms, the client does not provide an authorization
923 * identity when it wishes the server to derive an identity from the
924 * credentials and use that as the authorization identity.
925 */
926 $tag=sqimap_session_id(false);
927 $sasl = (isset($sqimap_capabilities['SASL-IR']) && $sqimap_capabilities['SASL-IR']) ? true : false;
928 if(!empty($authz)) {
929 $auth = base64_encode("$username\0$authz\0$password");
930 } else {
931 $auth = base64_encode("$username\0$username\0$password");
932 }
933 if ($sasl) {
934 // IMAP Extension for SASL Initial Client Response
935 // <draft-siemborski-imap-sasl-initial-response-01b.txt>
936 $query = $tag . " AUTHENTICATE PLAIN $auth\r\n";
937 fputs($imap_stream, $query);
938 $read = sqimap_fgets($imap_stream);
939 } else {
940 $query = $tag . " AUTHENTICATE PLAIN\r\n";
941 fputs($imap_stream, $query);
942 $read=sqimap_fgets($imap_stream);
943 if (substr($read,0,1) == '+') { // OK so far..
944 fputs($imap_stream, "$auth\r\n");
945 $read = sqimap_fgets($imap_stream);
946 }
947 }
948 $results=explode(" ",$read,3);
949 $response=$results[1];
950 $message=$results[2];
951
952 } else {
953 $response="BAD";
954 $message="Internal SquirrelMail error - unknown IMAP authentication method chosen. Please contact the developers.";
955 }
956
957 /* If the connection was not successful, lets see why */
958 if ($response != 'OK') {
959 if (!$hide || $hide == 3) {
960 //FIXME: UUURG... We don't want HTML in error messages, should also do html sanitizing of error messages elsewhere; should't assume output is destined for an HTML browser here
961 if ($response != 'NO') {
962 /* "BAD" and anything else gets reported here. */
963 $message = sm_encode_html_special_chars($message);
964 set_up_language($squirrelmail_language, true);
965 if ($response == 'BAD') {
966 if ($hide == 3) return sprintf(_("Bad request: %s"), $message);
967 $string = sprintf (_("Bad request: %s")."<br />\r\n", $message);
968 } else {
969 if ($hide == 3) return sprintf(_("Unknown error: %s"), $message);
970 $string = sprintf (_("Unknown error: %s") . "<br />\n", $message);
971 }
972 if (isset($read) && is_array($read)) {
973 $string .= '<br />' . _("Read data:") . "<br />\n";
974 foreach ($read as $line) {
975 $string .= sm_encode_html_special_chars($line) . "<br />\n";
976 }
977 }
978 error_box($string);
979 exit;
980 } else {
981 /*
982 * If the user does not log in with the correct
983 * username and password it is not possible to get the
984 * correct locale from the user's preferences.
985 * Therefore, apply the same hack as on the login
986 * screen.
987 *
988 * $squirrelmail_language is set by a cookie when
989 * the user selects language and logs out
990 */
991
992 set_up_language($squirrelmail_language, true);
993 sqsession_destroy();
994
995 /* terminate the session nicely */
996 sqimap_logout($imap_stream);
997
998 // determine what error message to use
999 //
1000 $fail_msg = _("Unknown user or password incorrect.");
1001 if ($display_imap_login_error) {
1002 // See if there is an error message from the server
1003 // Skip any rfc5530 response code: '[something]' at the
1004 // start of the message
1005 if (!empty($message)
1006 && $message{0} == '['
1007 && ($end = strstr($message, ']'))
1008 && $end != ']') {
1009 $message = substr($end, 1);
1010 }
1011 // Remove surrounding spaces and if there
1012 // is anything left, display that as the
1013 // error message:
1014 $message = trim($message);
1015 if (strlen($message))
1016 $fail_msg = _($message);
1017 }
1018
1019 if ($hide == 3) return $fail_msg;
1020 logout_error($fail_msg);
1021 exit;
1022 }
1023 } else {
1024 if ($hide == 2) return FALSE;
1025 exit;
1026 }
1027 }
1028
1029 /* Special error case:
1030 * Login referrals. The server returns:
1031 * ? OK [REFERRAL <imap url>]
1032 * Check RFC 2221 for details. Since we do not support login referrals yet
1033 * we log the user out.
1034 */
1035 if ( stristr($message, 'REFERRAL imap') === TRUE ) {
1036 sqimap_logout($imap_stream);
1037 set_up_language($squirrelmail_language, true);
1038 sqsession_destroy();
1039 logout_error( _("Your mailbox is not located at this server. Try a different server or consult your system administrator") );
1040 exit;
1041 }
1042
1043 return $imap_stream;
1044 }
1045
1046 /**
1047 * Simply logs out the IMAP session
1048 * @param stream $imap_stream the IMAP connection to log out.
1049 * @return void
1050 */
1051 function sqimap_logout ($imap_stream) {
1052 /* Logout is not valid until the server returns 'BYE'
1053 * If we don't have an imap_ stream we're already logged out */
1054 if(isset($imap_stream) && $imap_stream)
1055 sqimap_run_command($imap_stream, 'LOGOUT', false, $response, $message);
1056 }
1057
1058 /**
1059 * Retrieve the CAPABILITY string from the IMAP server.
1060 * If capability is set, returns only that specific capability,
1061 * else returns array of all capabilities.
1062 * @param stream $imap_stream
1063 * @param string $capability (since 1.3.0)
1064 * @param boolean $bUseCache (since 1.5.1) Controls use of capability data stored in session
1065 * @return mixed (string if $capability is set and found,
1066 * false, if $capability is set and not found,
1067 * array if $capability not set)
1068 */
1069 function sqimap_capability($imap_stream, $capability='', $bUseCache=true) {
1070 // sqgetGlobalVar('sqimap_capabilities', $sqimap_capabilities, SQ_SESSION);
1071
1072 if (!$bUseCache || ! sqgetGlobalVar('sqimap_capabilities', $sqimap_capabilities, SQ_SESSION)) {
1073 $read = sqimap_run_command($imap_stream, 'CAPABILITY', true, $a, $b);
1074 $c = explode(' ', $read[0]);
1075 for ($i=2; $i < count($c); $i++) {
1076 $cap_list = explode('=', $c[$i]);
1077 if (isset($cap_list[1])) {
1078 if(isset($sqimap_capabilities[trim($cap_list[0])]) &&
1079 !is_array($sqimap_capabilities[trim($cap_list[0])])) {
1080 // Remove array key that was added in 'else' block below
1081 // This is to accomodate for capabilities like:
1082 // SORT SORT=MODSEQ
1083 unset($sqimap_capabilities[trim($cap_list[0])]);
1084 }
1085 $sqimap_capabilities[trim($cap_list[0])][] = $cap_list[1];
1086 } else {
1087 if(!isset($sqimap_capabilities[trim($cap_list[0])])) {
1088 $sqimap_capabilities[trim($cap_list[0])] = TRUE;
1089 }
1090 }
1091 }
1092 }
1093 if ($capability) {
1094 if (isset($sqimap_capabilities[$capability])) {
1095 return $sqimap_capabilities[$capability];
1096 } else {
1097 return false;
1098 }
1099 }
1100 return $sqimap_capabilities;
1101 }
1102
1103 /**
1104 * Returns the delimiter between mailboxes: INBOX/Test, or INBOX.Test
1105 * @param stream $imap_stream
1106 * @return string
1107 */
1108 function sqimap_get_delimiter ($imap_stream = false) {
1109 global $sqimap_delimiter, $optional_delimiter;
1110
1111 /* Use configured delimiter if set */
1112 if((!empty($optional_delimiter)) && $optional_delimiter != 'detect') {
1113 return $optional_delimiter;
1114 }
1115
1116 /* Delimiter is stored in the session from redirect. Try fetching from there first */
1117 if (empty($sqimap_delimiter)) {
1118 sqgetGlobalVar('delimiter',$sqimap_delimiter,SQ_SESSION);
1119 }
1120
1121 /* Do some caching here */
1122 if (!$sqimap_delimiter) {
1123 if (sqimap_capability($imap_stream, 'NAMESPACE')
1124 /*
1125 * According to something that I can't find, this is supposed to work on all systems
1126 * OS: This won't work in Courier IMAP.
1127 * OS: According to rfc2342 response from NAMESPACE command is:
1128 * OS: * NAMESPACE (PERSONAL NAMESPACES) (OTHER_USERS NAMESPACE) (SHARED NAMESPACES)
1129 * OS: We want to lookup all personal NAMESPACES...
1130 *
1131 * TODO: remove this in favour of the information from sqimap_get_namespace()
1132 */
1133 && ($read = sqimap_run_command($imap_stream, 'NAMESPACE', true, $a, $b))
1134 && preg_match('/\* NAMESPACE +(\( *\(.+\) *\)|NIL) +(\( *\(.+\) *\)|NIL) +(\( *\(.+\) *\)|NIL)/i', $read[0], $data)
1135 && preg_match('/^\( *\((.*)\) *\)/', $data[1], $data2)) {
1136 $pn = $data2[1];
1137 $pna = explode(')(', $pn);
1138 $delnew = array();
1139 while (list($k, $v) = each($pna)) {
1140 $lst = explode('"', $v);
1141 if (isset($lst[3])) {
1142 $delnew[$lst[1]] = $lst[3];
1143 } else {
1144 $delnew[$lst[1]] = '';
1145 }
1146 }
1147 $sqimap_delimiter = array_shift($delnew);
1148 } else {
1149 fputs ($imap_stream, ". LIST \"INBOX\" \"\"\r\n");
1150 $read = sqimap_read_data($imap_stream, '.', true, $a, $b);
1151 $read = $read['.'][0]; //sqimap_read_data() now returns a tag array of response array
1152 $quote_position = strpos ($read[0], '"');
1153 $sqimap_delimiter = substr ($read[0], $quote_position+1, 1);
1154 }
1155 }
1156 return $sqimap_delimiter;
1157 }
1158
1159 /**
1160 * Retrieves the namespaces from the IMAP server.
1161 * NAMESPACE is an IMAP extension defined in RFC 2342.
1162 *
1163 * @param stream $imap_stream
1164 * @return array
1165 */
1166 function sqimap_get_namespace($imap_stream) {
1167 $read = sqimap_run_command($imap_stream, 'NAMESPACE', true, $a, $b);
1168 return sqimap_parse_namespace($read[0]);
1169 }
1170
1171 /**
1172 * Parses a NAMESPACE response and returns an array with the available
1173 * personal, users and shared namespaces.
1174 *
1175 * @param string $input
1176 * @return array The returned array has the following format:
1177 * <pre>
1178 * array(
1179 * 'personal' => array(
1180 * 0 => array('prefix'=>'INBOX.','delimiter' =>'.'),
1181 * 1 => ...
1182 * ),
1183 * 'users' => array(..
1184 * ),
1185 * 'shared' => array( ..
1186 * )
1187 * )
1188 * </pre>
1189 * Note that if a namespace is not defined in the server, then the corresponding
1190 * array will be empty.
1191 */
1192 function sqimap_parse_namespace(&$input) {
1193 $ns_strings = array(1=>'personal', 2=>'users', 3=>'shared');
1194 $namespace = array();
1195
1196 if (preg_match('/NAMESPACE (\(\(.*\)\)|NIL) (\(\(.*\)\)|NIL) (\(\(.*\)\)|NIL)/', $input, $regs)) {
1197 for($i=1; $i<=3; $i++) {
1198 if($regs[$i] == 'NIL') {
1199 $namespace[$ns_strings[$i]] = array();
1200 } else {
1201 // Pop-out the first ( and last ) for easier parsing
1202 $ns = substr($regs[$i], 1, sizeof($regs[$i])-2);
1203 if($c = preg_match_all('/\((?:(.*?)\s*?)\)/', $ns, $regs2)) {
1204 $namespace[$ns_strings[$i]] = array();
1205 for($j=0; $j<sizeof($regs2[1]); $j++) {
1206 preg_match('/"(.*)"\s+("(.*)"|NIL)/', $regs2[1][$j], $regs3);
1207 $namespace[$ns_strings[$i]][$j]['prefix'] = $regs3[1];
1208 if($regs3[2] == 'NIL') {
1209 $namespace[$ns_strings[$i]][$j]['delimiter'] = null;
1210 } else {
1211 // $regs[3] is $regs[2] without the quotes
1212 $namespace[$ns_strings[$i]][$j]['delimiter'] = $regs3[3];
1213 }
1214 unset($regs3);
1215 }
1216 }
1217 unset($ns);
1218 }
1219 }
1220 }
1221 return($namespace);
1222 }
1223
1224 /**
1225 * This encodes a mailbox name for use in IMAP commands.
1226 * @param string $what the mailbox to encode
1227 * @return string the encoded mailbox string
1228 * @since 1.5.0
1229 */
1230 function sqimap_encode_mailbox_name($what)
1231 {
1232 if (preg_match('/["\\\r\n]/', $what))
1233 return '{' . strlen($what) . "}\r\n" . $what; /* 4.3 literal form */
1234 return '"' . $what . '"'; /* 4.3 quoted string form */
1235 }
1236
1237 /**
1238 * Gets the number of messages in the current mailbox.
1239 *
1240 * OBSOLETE use sqimap_status_messages instead.
1241 * @param stream $imap_stream imap stream
1242 * @param string $mailbox
1243 * @deprecated
1244 */
1245 function sqimap_get_num_messages ($imap_stream, $mailbox) {
1246 $aStatus = sqimap_status_messages($imap_stream,$mailbox,array('MESSAGES'));
1247 return $aStatus['MESSAGES'];
1248 }
1249
1250 /**
1251 * OBSOLETE FUNCTION should be removed after mailbox_display,
1252 * printMessage function is adapted
1253 * $addr_ar = array(), $group = '' and $host='' arguments are used in 1.4.0
1254 * @param string $address
1255 * @param integer $max
1256 * @since 1.4.0
1257 * @deprecated See Rfc822Address.php
1258 */
1259 function parseAddress($address, $max=0) {
1260 $aAddress = parseRFC822Address($address,array('limit'=> $max));
1261 /*
1262 * Because the expected format of the array element is changed we adapt it now.
1263 * This also implies that this function is obsolete and should be removed after the
1264 * rest of the source is adapted. See Rfc822Address.php for the new function.
1265 */
1266 array_walk($aAddress, '_adaptAddress');
1267 return $aAddress;
1268 }
1269
1270 /**
1271 * OBSOLETE FUNCTION should be removed after mailbox_display,
1272 * printMessage function is adapted
1273 *
1274 * callback function used for formating of addresses array in
1275 * parseAddress() function
1276 * @param array $aAddr
1277 * @param integer $k array key
1278 * @since 1.5.1
1279 * @deprecated
1280 */
1281 function _adaptAddress(&$aAddr,$k) {
1282 $sPersonal = (isset($aAddr[SQM_ADDR_PERSONAL]) && $aAddr[SQM_ADDR_PERSONAL]) ?
1283 $aAddr[SQM_ADDR_PERSONAL] : '';
1284 $sEmail = ($aAddr[SQM_ADDR_HOST]) ?
1285 $aAddr[SQM_ADDR_MAILBOX] . '@'.$aAddr[SQM_ADDR_HOST] :
1286 $aAddr[SQM_ADDR_MAILBOX];
1287 $aAddr = array($sEmail,$sPersonal);
1288 }
1289
1290 /**
1291 * Returns the number of unseen messages in this folder.
1292 * obsoleted by sqimap_status_messages !
1293 * Arguments differ in 1.0.x
1294 * @param stream $imap_stream
1295 * @param string $mailbox
1296 * @return integer
1297 * @deprecated
1298 */
1299 function sqimap_unseen_messages ($imap_stream, $mailbox) {
1300 $aStatus = sqimap_status_messages($imap_stream,$mailbox,array('UNSEEN'));
1301 return $aStatus['UNSEEN'];
1302 }
1303
1304 /**
1305 * Returns the status items of a mailbox.
1306 * Default it returns MESSAGES,UNSEEN and RECENT
1307 * Supported status items are MESSAGES, UNSEEN, RECENT (since 1.4.0),
1308 * UIDNEXT (since 1.5.1) and UIDVALIDITY (since 1.5.1)
1309 * @param stream $imap_stream imap stream
1310 * @param string $mailbox mail folder
1311 * @param array $aStatusItems status items
1312 * @return array
1313 * @since 1.3.2
1314 */
1315 function sqimap_status_messages ($imap_stream, $mailbox,
1316 $aStatusItems = array('MESSAGES','UNSEEN','RECENT')) {
1317
1318 $aStatusItems = implode(' ',$aStatusItems);
1319 $read_ary = sqimap_run_command ($imap_stream, 'STATUS ' . sqimap_encode_mailbox_name($mailbox) .
1320 " ($aStatusItems)", false, $result, $message);
1321 $i = 0;
1322 $messages = $unseen = $recent = $uidnext = $uidvalidity = false;
1323 $regs = array(false,false);
1324 while (isset($read_ary[$i])) {
1325 if (preg_match('/UNSEEN\s+([0-9]+)/i', $read_ary[$i], $regs)) {
1326 $unseen = $regs[1];
1327 }
1328 if (preg_match('/MESSAGES\s+([0-9]+)/i', $read_ary[$i], $regs)) {
1329 $messages = $regs[1];
1330 }
1331 if (preg_match('/RECENT\s+([0-9]+)/i', $read_ary[$i], $regs)) {
1332 $recent = $regs[1];
1333 }
1334 if (preg_match('/UIDNEXT\s+([0-9]+)/i', $read_ary[$i], $regs)) {
1335 $uidnext = $regs[1];
1336 }
1337 if (preg_match('/UIDVALIDITY\s+([0-9]+)/i', $read_ary[$i], $regs)) {
1338 $uidvalidity = $regs[1];
1339 }
1340 $i++;
1341 }
1342
1343 $status=array('MESSAGES' => $messages,
1344 'UNSEEN'=>$unseen,
1345 'RECENT' => $recent,
1346 'UIDNEXT' => $uidnext,
1347 'UIDVALIDITY' => $uidvalidity);
1348
1349 if (!empty($messages)) { $hook_status['MESSAGES']=$messages; }
1350 if (!empty($unseen)) { $hook_status['UNSEEN']=$unseen; }
1351 if (!empty($recent)) { $hook_status['RECENT']=$recent; }
1352 if (!empty($hook_status)) {
1353 $hook_status['MAILBOX']=$mailbox;
1354 $hook_status['CALLER']='sqimap_status_messages';
1355 do_hook('folder_status', $hook_status);
1356 }
1357 return $status;
1358 }
1359
1360
1361 /**
1362 * Saves a message to a given folder -- used for saving sent messages
1363 * @param stream $imap_stream
1364 * @param string $sent_folder
1365 * @param $length
1366 * @return string $sid
1367 */
1368 function sqimap_append ($imap_stream, $sMailbox, $length) {
1369 $sid = sqimap_session_id();
1370 $query = $sid . ' APPEND ' . sqimap_encode_mailbox_name($sMailbox) . " (\\Seen) {".$length."}";
1371 fputs ($imap_stream, "$query\r\n");
1372 $tmp = fgets ($imap_stream, 1024);
1373 sqimap_append_checkresponse($tmp, $sMailbox,$sid, $query);
1374 return $sid;
1375 }
1376
1377 /**
1378 * @param stream imap_stream
1379 * @param string $folder (since 1.3.2)
1380 */
1381 function sqimap_append_done ($imap_stream, $sMailbox='') {
1382 fputs ($imap_stream, "\r\n");
1383 $tmp = fgets ($imap_stream, 1024);
1384 while (!sqimap_append_checkresponse($tmp, $sMailbox)) {
1385 $tmp = fgets ($imap_stream, 1024);
1386 }
1387 }
1388
1389 /**
1390 * Displays error messages, if there are errors in responses to
1391 * commands issues by sqimap_append() and sqimap_append_done() functions.
1392 * @param string $response
1393 * @param string $sMailbox
1394 * @return bool $bDone
1395 * @since 1.5.1 and 1.4.5
1396 */
1397 function sqimap_append_checkresponse($response, $sMailbox, $sid='', $query='') {
1398 // static vars to keep them available when sqimap_append_done calls this function.
1399 static $imapquery, $imapsid;
1400
1401 $bDone = false;
1402
1403 if ($query) {
1404 $imapquery = $query;
1405 }
1406 if ($sid) {
1407 $imapsid = $sid;
1408 }
1409 if ($response{0} == '+') {
1410 // continuation request triggerd by sqimap_append()
1411 $bDone = true;
1412 } else {
1413 $i = strpos($response, ' ');
1414 $sRsp = substr($response,0,$i);
1415 $sMsg = substr($response,$i+1);
1416 $aExtra = array('MAILBOX' => $sMailbox);
1417 switch ($sRsp) {
1418 case '*': //untagged response
1419 $i = strpos($sMsg, ' ');
1420 $sRsp = strtoupper(substr($sMsg,0,$i));
1421 $sMsg = substr($sMsg,$i+1);
1422 if ($sRsp == 'NO' || $sRsp == 'BAD') {
1423 // for the moment disabled. Enable after 1.5.1 release.
1424 // Notices could give valueable information about the mailbox
1425 // Update: seems this was forgotten, but now it is finally enabled
1426 sqm_trigger_imap_error('SQM_IMAP_APPEND_NOTICE',$imapquery,$sRsp,$sMsg);
1427 }
1428 $bDone = false;
1429 case $imapsid:
1430 // A001 OK message
1431 // $imapsid<space>$sRsp<space>$sMsg
1432 $bDone = true;
1433 $i = strpos($sMsg, ' ');
1434 $sRsp = strtoupper(substr($sMsg,0,$i));
1435 $sMsg = substr($sMsg,$i+1);
1436 switch ($sRsp) {
1437 case 'NO':
1438 if (preg_match("/(.*)(quota)(.*)$/i", $sMsg, $aMatch)) {
1439 sqm_trigger_imap_error('SQM_IMAP_APPEND_QUOTA_ERROR',$imapquery,$sRsp,$sMsg,$aExtra);
1440 } else {
1441 sqm_trigger_imap_error('SQM_IMAP_APPEND_ERROR',$imapquery,$sRsp,$sMsg,$aExtra);
1442 }
1443 break;
1444 case 'BAD':
1445 sqm_trigger_imap_error('SQM_IMAP_ERROR',$imapquery,$sRsp,$sMsg,$aExtra);
1446 break;
1447 case 'BYE':
1448 sqm_trigger_imap_error('SQM_IMAP_BYE',$imapquery,$sRsp,$sMsg,$aExtra);
1449 break;
1450 case 'OK':
1451 break;
1452 default:
1453 break;
1454 }
1455 break;
1456 default:
1457 // should be false because of the unexpected response but i'm not sure if
1458 // that will cause an endless loop in sqimap_append_done
1459 $bDone = true;
1460 }
1461 }
1462 return $bDone;
1463 }
1464
1465 /**
1466 * Allows mapping of IMAP server address with custom function
1467 * see map_yp_alias()
1468 * @param string $imap_server imap server address or mapping
1469 * @param string $username
1470 * @return string
1471 * @since 1.3.0
1472 */
1473 function sqimap_get_user_server ($imap_server, $username) {
1474 if (substr($imap_server, 0, 4) != "map:") {
1475 return $imap_server;
1476 }
1477 $function = substr($imap_server, 4);
1478 return $function($username);
1479 }
1480
1481 /**
1482 * This is an example that gets IMAP servers from yellowpages (NIS).
1483 * you can simple put map:map_yp_alias in your $imap_server_address
1484 * in config.php use your own function instead map_yp_alias to map your
1485 * LDAP whatever way to find the users IMAP server.
1486 *
1487 * Requires access to external ypmatch program
1488 * FIXME: it can be implemented in php yp extension or pecl (since php 5.1.0)
1489 * @param string $username
1490 * @return string
1491 * @since 1.3.0
1492 */
1493 function map_yp_alias($username) {
1494 $safe_username = escapeshellarg($username);
1495 $yp = `ypmatch $safe_username aliases`;
1496 return chop(substr($yp, strlen($username)+1));
1497 }