Source for file imap_general.php

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

Documentation generated on Fri, 10 Feb 2012 04:18:04 +0100 by phpDocumentor 1.4.3