source: trunk/expressoMail1_2/inc/class.imap_functions.inc.php @ 4781

Revision 4781, 157.2 KB checked in by airton, 13 years ago (diff)

Ticket #2138 - Caracter ndesejado na visualizacao de mensagem vinda do MS Outlook

  • Property svn:eol-style set to native
  • Property svn:executable set to *
Line 
1<?php
2
3include_once("class.functions.inc.php");
4include_once("class.ldap_functions.inc.php");
5include_once("class.exporteml.inc.php");
6
7class imap_functions
8{
9        var $public_functions = array
10        (
11                'get_range_msgs'                                => True,
12                'get_info_msg'                                  => True,
13                'get_info_msgs'                                 => True,
14                'get_folders_list'                              => True,
15                'import_msgs'                                   => True,
16                'msgs_to_archive'                               => True
17        );
18
19        var $ldap;
20        var $mbox;
21        var $imap_port;
22        var $has_cid;
23        var $imap_options = '';
24        var $functions;
25        var $prefs;
26        var $foldersLimit;
27        var $imap_sentfolder;
28
29        function imap_functions (){
30                $this->foldersLimit = $_SESSION['phpgw_info']['user']['preferences']['expressoMail']['imap_max_folders'] ?  $_SESSION['phpgw_info']['user']['preferences']['expressoMail']['imap_max_folders'] : 20000; //Limit of folders (mailboxes) user can see
31                $this->username           = $_SESSION['phpgw_info']['expressomail']['user']['userid'];
32                $this->password           = $_SESSION['phpgw_info']['expressomail']['user']['passwd'];
33                $this->imap_server        = $_SESSION['phpgw_info']['expressomail']['email_server']['imapServer'];
34                $this->imap_port          = $_SESSION['phpgw_info']['expressomail']['email_server']['imapPort'];
35                $this->imap_delimiter = $_SESSION['phpgw_info']['expressomail']['email_server']['imapDelimiter'];
36                $this->functions          = new functions();
37                $this->imap_sentfolder = $_SESSION['phpgw_info']['expressomail']['email_server']['imapDefaultSentFolder']   ? $_SESSION['phpgw_info']['expressomail']['email_server']['imapDefaultSentFolder']   : str_replace("*","", $this->functions->getLang("Sent"));
38                $this->has_cid = false;
39                $this->prefs = $_SESSION['phpgw_info']['user']['preferences']['expressoMail'];
40
41
42                if ($_SESSION['phpgw_info']['expressomail']['email_server']['imapTLSEncryption'] == 'yes')
43                {
44                        $this->imap_options = '/tls/novalidate-cert';
45                }
46                else
47                {
48                        $this->imap_options = '/notls/novalidate-cert';
49                }
50        }
51        // BEGIN of functions.
52        function open_mbox($folder = False,$force_die=true)
53        {
54                $folder = mb_convert_encoding($folder, "UTF7-IMAP","ISO_8859-1");
55                if (is_resource($this->mbox))
56                {
57                     if ($force_die)
58                     {
59                        @imap_reopen($this->mbox, "{".$this->imap_server.":".$this->imap_port.$this->imap_options."}".$folder) or die(serialize(array('imap_error' => $this->parse_error(imap_last_error()))));
60                     }
61                     else
62                        {
63                            @imap_reopen($this->mbox, "{".$this->imap_server.":".$this->imap_port.$this->imap_options."}".$folder);
64                        }
65                }
66                else
67                    {
68                        if($force_die)
69                        {
70                            $this->mbox = @imap_open("{".$this->imap_server.":".$this->imap_port.$this->imap_options."}".$folder, $this->username, $this->password) or die(serialize(array('imap_error' => $this->parse_error(imap_last_error()))));
71                        }
72                        else
73                            {
74                                $this->mbox = @imap_open("{".$this->imap_server.":".$this->imap_port.$this->imap_options."}".$folder, $this->username, $this->password);
75                            }
76                       
77                    }
78                    return $this->mbox;
79         }
80
81        function parse_error($error){
82                // This error is returned from Imap.
83                if(strstr($error,'Connection refused')) {
84                        return str_replace("%1", $this->functions->getLang("Mail"), $this->functions->getLang("Connection failed with %1 Server. Try later."));
85                }
86                elseif(strstr($error,'virus')) {
87                        return str_replace("%1", $this->functions->getLang("Mail"), $this->functions->getLang("Your message was rejected by antivirus. Perhaps your attachment has been infected."));
88                }
89                // This condition verifies if SESSION is expired.
90                elseif(!count($_SESSION))                       
91                        return "nosession";
92
93                return $error;
94        }
95
96        function get_range_msgs2($params)
97        {
98                // Free others requests
99                session_write_close();
100                $folder = $params['folder'];
101                $msg_range_begin = $params['msg_range_begin'];
102                $msg_range_end = $params['msg_range_end'];
103                $sort_box_type = $params['sort_box_type'];
104                $sort_box_reverse = $params['sort_box_reverse'];
105                $search_box_type = $params['search_box_type'] != "ALL" && $params['search_box_type'] != "" ? $params['search_box_type'] : false;
106
107                $folder                         = $params['folder'];
108                $msg_range_begin        = $params['msg_range_begin'];
109                $msg_range_end          = $params['msg_range_end'];
110                $sort_box_type          = $params['sort_box_type'];
111                $sort_box_reverse       = $params['sort_box_reverse'];
112                $search_box_type        = $params['search_box_type'] != "ALL" && $params['search_box_type'] != "" ? $params['search_box_type'] : false;
113
114                if( !$this->mbox || !is_resource( $this->mbox ) )
115                        $this->mbox = $this->open_mbox($folder);
116
117        $return = array();
118
119        $return['folder'] = $folder;
120
121        //Para enviar o offset entre o timezone definido pelo usuário e GMT
122        $return['offsetToGMT'] = $this->functions->CalculateDateOffset();
123
124        if(!$search_box_type || $search_box_type=="UNSEEN" || $search_box_type=="SEEN") {
125                        $msgs_info = imap_status($this->mbox,"{".$this->imap_server.":".$this->imap_port.$this->imap_options."}".mb_convert_encoding( $folder, "UTF7-IMAP", "ISO_8859-1" ) ,SA_ALL);
126
127
128                        $return['tot_unseen'] = $search_box_type == "SEEN" ? 0 : $msgs_info->unseen;
129
130                        $sort_array_msg = $this-> get_msgs($folder, $sort_box_type, $search_box_type, $sort_box_reverse,$msg_range_begin,$msg_range_end);
131
132                        $num_msgs = ($search_box_type=="UNSEEN") ? $msgs_info->unseen : (($search_box_type=="SEEN") ? ($msgs_info->messages - $msgs_info->unseen) : $msgs_info->messages);
133
134                        $i = 0;
135                        if(is_array($sort_array_msg)){
136                                foreach($sort_array_msg as $msg_number => $value)
137                                {
138                                        $temp = $this->get_info_head_msg($msg_number);
139                                        //$temp['msg_sample'] = $this->get_msg_sample($msg_number,$folder);
140                                        if(!$temp)
141                                                return false;
142
143                                        $return[$i] = $temp;
144                                        $i++;
145                                }
146                        }
147                        $return['num_msgs'] =  $num_msgs;
148                }
149                else {
150                        $num_msgs = imap_num_msg($this->mbox);
151                        $sort_array_msg = $this-> get_msgs($folder, $sort_box_type, $search_box_type, $sort_box_reverse,$msg_range_begin,$num_msgs);
152
153
154                        $return['tot_unseen'] = 0;
155                        $i = 0;
156
157                        if(is_array($sort_array_msg)){
158
159                            foreach($sort_array_msg as $msg_number => $value)
160                            {
161                                $temp = $this->get_info_head_msg($msg_number);
162                                if(!$temp)
163                                    return false;
164
165                                if($temp['Unseen'] == 'U' || $temp['Recent'] == 'N'){
166                                                $return['tot_unseen']++;
167                                        }
168
169                                if($i <= ($msg_range_end-$msg_range_begin))
170                                    $return[$i] = $temp;
171                                $i++;
172                            }
173                        }
174                        $return['num_msgs'] = count($sort_array_msg)+($msg_range_begin-1);
175                }
176                return $return;
177    }
178
179        function get_info_head_msg($msg_number)
180        {
181                $head_array = array();
182                include_once("class.imap_attachment.inc.php");
183
184                $imap_attachment = new imap_attachment();
185                //if ($this->prefs['use_important_flag'] )
186                //{
187                        /*Como eu preciso do atributo Importance para saber se o email é
188                         * importante ou não, uso abaixo a função imap_fetchheader e busco
189                         * o atributo importance nela. Isso faz com que eu acesse o cabeçalho
190                         * duas vezes e de duas formas diferentes, mas em contrapartida, eu
191                         * não preciso reimplementar o método utilizando o fetchheader.
192                         * Como as mensagens são renderizadas em um número pequeno por vez,
193                         * não parece ter perda considerável de performance.
194                         */
195
196                        $tempHeader = imap_fetchheader($this->mbox, imap_msgno($this->mbox, $msg_number));
197                        $flag = preg_match('/importance *: *(.*)\r/i', $tempHeader, $importance);
198                //}
199                // Reimplementado código para identificação dos e-mails assinados e cifrados
200                // no método getMessageType(). Mário César Kolling <mario.kolling@serpro.gov.br>
201                $head_array['ContentType'] = $this->getMessageType($msg_number, $tempHeader);
202                $head_array['Importance'] = $flag==0?"Normal":$importance[1];
203
204                $header = $this->get_header($msg_number);
205                if (!is_object($header))
206                        return false;
207                $head_array['Recent'] = $header->Recent;
208                $head_array['Unseen'] = $header->Unseen;
209                if($header->Answered =='A' && $header->Draft == 'X'){
210                        $head_array['Forwarded'] = 'F';
211                }
212                else {
213                        $head_array['Answered'] = $header->Answered;
214                        $head_array['Draft']    = $header->Draft;
215                }
216                $head_array['Deleted'] = $header->Deleted;
217                $head_array['Flagged'] = $header->Flagged;
218                $head_array['msg_number'] = $msg_number;
219                $head_array['udate'] = $header->udate;
220                $head_array['offsetToGMT'] = $this->functions->CalculateDateOffset();
221
222                $msgTimestamp = $header->udate + $head_array['offsetToGMT'];
223                $head_array['timestamp'] = $msgTimestamp;
224               
225                $date_msg = gmdate("d/m/Y",$msgTimestamp);
226//              if (date("d/m/Y") == $date_msg)
227//                      $return['udate'] = $header->udate;
228//              else
229
230                if (date("d/m/Y") == $date_msg) //no dia
231                {
232                        $head_array['smalldate'] = gmdate("H:i",$msgTimestamp);
233                }
234                else
235                {
236                        $head_array['smalldate'] = gmdate("d/m/Y",$msgTimestamp);
237                }
238
239                $from = $header->from;
240                $head_array['from'] = array();
241                $head_array['from']['name'] = ( isset( $from[0]->personal ) ) ? $this->decode_string($from[0]->personal) : NULL;
242                $head_array['from']['email'] = $this->decode_string($from[0]->mailbox) . "@" . $from[0]->host;
243                if(!$head_array['from']['name'])
244                        $head_array['from']['name'] = $head_array['from']['email'];
245                $to = $header->to;
246                $head_array['to'] = array();
247                if($to[1] && $to[1]->host == ".SYNTAX-ERROR.") { //E-mails que não possuem o campo "para", vêm com o recipiente preenchido, porém com um recipiente a mais alegando erro de sintaxe.
248                        $head_array['to']['name'] = $head_array['to']['email'] = NULL;
249                }
250                else {
251                        $tmp = ( isset( $to[0]->personal ) ) ? imap_mime_header_decode($to[0]->personal) : NULL;
252                        $head_array['to']['name'] = ( isset( $tmp[0]->text ) ) ? $this->decode_string($this->decode_string($tmp[0]->text)) : NULL;
253                        $head_array['to']['email'] = ( isset( $to[0]->mailbox ) ) ? ( $this->decode_string($to[0]->mailbox) . "@" . ( ( isset( $to[0]->host ) ) ? $to[0]->host : '' ) ) : NULL;
254                        if(!$head_array['to']['name'])
255                                $head_array['to']['name'] = $head_array['to']['email'];
256                }
257                $cc = $header->cc;
258                $cco = $header->bcc;
259                if ( ($cc) && (!$head_array['to']['name']) ){
260                        $head_array['to']['name'] = ( isset( $cc[0]->personal ) ) ? $this->decode_string($cc[0]->personal) : NULL;
261                        $head_array['to']['email'] = $this->decode_string($cc[0]->mailbox) . "@" . $cc[0]->host;
262                        if(!$head_array['to']['name'])
263                                $head_array['to']['name'] = $head_array['from']['email'];
264                }
265                else if ( ($cco) && (!$head_array['to']['name']) ){
266                        $head_array['to']['name'] = ( isset( $cco[0]->personal ) ) ? $this->decode_string($cco[0]->personal) : NULL;
267                        $head_array['to']['email'] = $this->decode_string($cco[0]->mailbox) . "@" . $cco[0]->host;
268                        if(!$head_array['to']['name'])
269                                $head_array['to']['name'] = $head_array['from']['email'];
270                }
271                $head_array['subject'] = ( isset( $header->fetchsubject ) ) ? $this->decode_string($header->fetchsubject) : '';
272
273                $head_array['Size'] = $header->Size;
274
275                $head_array['attachment'] = array();
276                $head_array['attachment'] = $imap_attachment->get_attachment_headerinfo($this->mbox, $msg_number);
277
278                return $head_array;
279        }
280
281        /**
282        *
283        * @license    http://www.gnu.org/copyleft/gpl.html GPL
284        * @param      string $string String a ser decodificada
285        * @return     string
286        * @todo       Verificar a possibilidade de se utilizar a função iconv_mime_decode, que é capaz de identificar a codificação por si só, mas que pode ser interpretada de forma diversa dependendo da implementação do sistema
287        * @todo       Executar testes suficientes para validar a funçao iconv_mime_decode em substituição à este método decode_string
288        */
289        function decode_string($string)
290    {   
291        if ((strpos(strtolower($string), '=?iso-8859-1') !== false) || (strpos(strtolower($string), '=?windows-1252') !== false))
292        {
293            $retun = '';
294            $tmp = imap_mime_header_decode($string);
295            foreach ($tmp as $tmp1)
296            {
297                $return .= $this->htmlspecialchars_encode($tmp1->text);
298            }
299           
300            return str_replace("\t", "", $return);
301        }
302        else if (strpos(strtolower($string), '=?utf-8') !== false)
303        {
304            $elements = imap_mime_header_decode($string);
305
306              for($i = 0;$i < count($elements);$i++)
307              {
308                                        $charset = strtolower($elements[$i]->charset);
309                                        $text = $elements[$i]->text;
310                                        if(!strcasecmp($charset, "utf-8") || !strcasecmp($charset, "utf-7"))
311                                                $decoded .= $this->functions->utf8_to_ncr($text);
312                  else
313                  {
314                    if( strcasecmp($charset,"default") )
315                        $decoded .= $this->htmlspecialchars_encode(iconv($charset, "iso-8859-1", $text));
316                    else
317                        $decoded .= $this->htmlspecialchars_encode($text);
318                  }
319              }
320
321              return str_replace("\t", "", $decoded);
322        }
323                else if(strpos(strtolower($string), '=?us-ascii') !== false)
324           {
325                        $retun = '';
326                        $tmp = imap_mime_header_decode($string);
327                        foreach ($tmp as $tmp1)
328                                $return .= $this->htmlspecialchars_encode(quoted_printable_decode($tmp1->text));
329               
330                        return str_replace("\t", "", $return);
331         
332            }
333        else if (eregi('=?', $string))
334            return iconv_mime_decode($string);
335       
336
337        return $this->htmlspecialchars_encode($string);
338    }
339        /**
340        * Função que importa arquivos .eml exportados pelo expresso para a caixa do usuário. Testado apenas
341        * com .emls gerados pelo expresso, e o arquivo pode ser um zip contendo vários emls ou um .eml.
342        */
343        function import_msgs($params) {
344                if(!$this->mbox)
345                        $this->mbox = $this->open_mbox();
346
347                if( preg_match('/local_/',$params["folder"]) )
348                {
349                        // PLEASE, BE CAREFULL!!! YOU SHOULD USE EMAIL CONFIGURATION VALUES (EMAILADMIN MODULE)
350                        $tmp_box = mb_convert_encoding('INBOX'.$this->imap_delimiter.$_SESSION['phpgw_info']['expressomail']['email_server']['imapDefaultTrashFolder'].$this->imap_delimiter.'tmpMoveToLocal', "UTF7-IMAP", "UTF-8");
351                        if ( ! imap_createmailbox( $this -> mbox,"{".$this -> imap_server."}$tmp_box" ) )
352                                return $this->functions->getLang( 'Import to Local : fail...' );
353                        imap_reopen($this->mbox, "{".$this->imap_server.":".$this->imap_port.$this->imap_options."}".$tmp_box);
354                        $params["folder"] = $tmp_box;
355                }
356                $errors = array();
357                $invalid_format = false;
358                $filename = $params['FILES'][0]['name'];
359                $params["folder"] = mb_convert_encoding($params["folder"], "UTF7-IMAP","ISO_8859-1");
360                $quota = imap_get_quotaroot($this->mbox, $params["folder"]);
361                if((($quota['limit'] - $quota['usage'])*1024) <= $params['FILES'][0]['size']){
362                        return array( 'error' => $this->functions->getLang("fail in import:").
363                                                        " ".$this->functions->getLang("Over quota"));
364                }
365                if(substr($filename,strlen($filename)-4)==".zip") {
366                        $zip = zip_open($params['FILES'][0]['tmp_name']);
367
368                        if ($zip) {
369                                while ($zip_entry = zip_read($zip)) {
370
371                                        if (zip_entry_open($zip, $zip_entry, "r")) {
372                                                $email = zip_entry_read($zip_entry, zip_entry_filesize($zip_entry));
373                                                $status = @imap_append($this->mbox,
374                                                                "{".$this->imap_server.":".$this->imap_port.$this->imap_options."}".$params["folder"],
375                                                                        $email
376                                                                        );
377                                                if(!$status)
378                                                        array_push($errors,zip_entry_name($zip_entry));
379                                                zip_entry_close($zip_entry);
380                                        }
381                                }
382                                zip_close($zip);
383                        }
384
385                        if ( isset( $tmp_box ) && ! sizeof( $errors ) )
386                        {
387
388                                $mc = imap_check($this->mbox);
389
390                                $result = imap_fetch_overview( $this -> mbox, "1:{$mc -> Nmsgs}", 0 );
391
392                                $ids = array( );
393                                foreach ($result as $overview)
394                                        $ids[ ] = $overview -> uid;
395
396                                return implode( ',', $ids );
397                        }
398                        }
399                else if(substr($filename,strlen($filename)-4)==".eml") {
400                        $email = implode("",file($params['FILES'][0]['tmp_name']));
401                        $status = @imap_append($this->mbox,
402                                                                "{".$this->imap_server.":".$this->imap_port.$this->imap_options."}".$params["folder"],
403                                                                        $email
404                                                                        );
405                        if(!$status){
406                                array_push($errors,zip_entry_name($zip_entry));
407                                zip_entry_close($zip_entry);
408                        }
409                }
410                else
411                {
412                        if ( isset( $tmp_box ) )
413                                imap_deletemailbox( $this->mbox,"{".$this -> imap_server."}$tmp_box" );
414
415                        return array("error" => $this->functions->getLang("wrong file format"));
416                        $invalid_format = true;
417                }
418
419                if(!$invalid_format) {
420                        if(count($errors)>0) {
421                                $message = $this->functions->getLang("fail in import:")."\n";
422                                foreach($errors as $arquivo) {
423                                        $message.=$arquivo."\n";
424                                }
425                                return array("error" => $message);
426                        }
427                        else
428                                return $this->functions->getLang("The import was executed successfully.");
429                }
430        }
431        /*
432                Remove os anexos de uma mensagem. A estratégia para isso é criar uma mensagem nova sem os anexos, mantendo apenas
433                a primeira parte do e-mail, que é o texto, sem anexos.
434                O método considera que o email é multpart.
435        */
436        function remove_attachments($params) {
437                include_once("class.message_components.inc.php");
438                if(!$this->mbox || !is_resource($this->mbox))
439                        $this->mbox = $this->open_mbox($params["folder"]);
440                $return["status"] = true;
441                $header = "";
442
443                $headertemp = explode("\n",imap_fetchheader($this->mbox, imap_msgno($this->mbox, $params["msg_num"])));
444                foreach($headertemp as $head) {//Se eu colocar todo o header do email dá pau no append, então procuro apenas o que interessa.
445                        $head1 = explode(":",$head);
446                        if ( (strtoupper($head1[0]) == "TO") ||
447                                        (strtoupper($head1[0]) == "FROM") ||
448                                        (strtoupper($head1[0]) == "SUBJECT") ||
449                                        (strtoupper($head1[0]) == "DATE") )
450                                $header .= $head."\r\n";
451                }
452
453                $msg = &new message_components($this->mbox);
454                $msg->fetch_structure($params["msg_num"]);/* O fetchbody tava trazendo o email com problemas na acentuação.
455                                                             Então uso essa classe para verificar a codificação e o charset,
456                                                             para que o método decodeBody do expresso possa trazer tudo certinho*/
457
458                $all_body_type = strtolower($msg->file_type[$params["msg_num"]][0]);
459                $all_body_encoding = $msg->encoding[$params["msg_num"]][0];
460                $all_body_charset = $msg->charset[$params["msg_num"]][0];
461               
462                if($all_body_type=='multipart/alternative') {
463                        if(strtolower($msg->file_type[$params["msg_num"]][2]=='text/html') &&
464                                        $msg->pid[$params["msg_num"]][2] == '1.2') {
465                                $body_part_to_show = '1.2';
466                                $all_body_type = strtolower($msg->file_type[$params["msg_num"]][2]);
467                                $all_body_encoding = $msg->encoding[$params["msg_num"]][2];
468                                $all_body_charset = $msg->charset[$params["msg_num"]][2];
469                        }
470                        else {
471                                $body_part_to_show = '1.1';
472                                $all_body_type = strtolower($msg->file_type[$params["msg_num"]][1]);
473                                $all_body_encoding = $msg->encoding[$params["msg_num"]][1];
474                                $all_body_charset = $msg->charset[$params["msg_num"]][1];
475                        }
476                }
477                else
478                        $body_part_to_show = '1';
479
480                $status = imap_append($this->mbox,
481                                "{".$this->imap_server.":".$this->imap_port.$this->imap_options."}".$params["folder"],
482                                        $header.
483                                        "Content-Type: ".$all_body_type."; charset = \"".$all_body_charset."\"".
484                                        "\r\n".
485                                        "Content-Transfer-Encoding: ".$all_body_encoding.
486                                        "\r\n".
487                                        "\r\n".
488                                        str_replace("\n","\r\n",$this->decodeBody(
489                                                        imap_fetchbody($this->mbox,imap_msgno($this->mbox, $params["msg_num"]),$body_part_to_show),
490                                                        $all_body_encoding, $all_body_charset
491                                                        )
492                                        ), "\\Seen"); //Append do novo email, só com header e conteúdo sem anexos.
493
494                if(!$status)
495                {
496                        $return["status"] = false;
497                        $return["msg"] = lang("error appending mail on delete attachments");
498                }
499                else
500                {
501                        $status = imap_status($this->mbox, "{".$this->imap_server.":".$this->imap_port."}".$params['folder'], SA_UIDNEXT);
502                        $return['msg_no'] = $status->uidnext - 1;
503                        imap_delete($this->mbox, imap_msgno($this->mbox, $params["msg_num"]));
504                        imap_expunge($this->mbox);
505                }
506
507                return $return;
508
509        }
510       
511        function msgs_to_archive($params) {
512               
513                $folder = $params['folder'];
514                $all_ids = $this-> get_msgs($folder, 'SORTARRIVAL', false, 0,-1,-1);
515
516                $messages_not_to_copy = explode(",",$params['mails']);
517                $ids = array();
518               
519                $cont = 0;
520               
521                foreach($all_ids as $each_id=>$value) {
522                        if(!in_array($each_id,$messages_not_to_copy)) {
523                                array_push($ids,$each_id);
524                                $cont++;
525                        }
526                        if($cont>=100)
527                                break;
528                }
529
530                if (empty($ids))
531                        return array();
532
533                $params = array("folder"=>$folder,"msgs_number"=>implode(",",$ids));
534               
535               
536                return $this->get_info_msgs($params);
537               
538               
539        }
540
541/**
542         *
543         * @return
544         * @param $params Object
545         */
546        function get_info_msgs($params) {
547                include_once("class.exporteml.inc.php");
548                $return = array();
549                $new_params = array();
550                $attach_params = array();
551                $new_params["msg_folder"]=$params["folder"];
552                $attach_params["folder"] = $params["folder"];
553                $msgs = explode(",",$params["msgs_number"]);
554                $exporteml = new ExportEml();
555                $unseen_msgs = array();
556                foreach($msgs as $msg_number) {
557                        $new_params["msg_number"] = $msg_number;
558                        //ini_set("display_errors","1");
559                        $msg_info = $this->get_info_msg($new_params);
560
561                        $this->mbox = $this->open_mbox($params['folder']); //Não sei porque, mas se não abrir de novo a caixa dá erro.
562                        $msg_info['header'] = $this->get_info_head_msg($msg_number);
563
564                        $attach_params["num_msg"] = $msg_number;
565                        $msg_info['array_attach'] = $exporteml->get_attachments_in_array($attach_params);
566                        $msg_info['url_export_file'] = $exporteml->export_to_archive($msg_number,$params["folder"]);
567                        imap_close($this->mbox);
568                        $this->mbox=false;
569                        array_push($return,serialize($msg_info));
570
571                        if($msg_info['Unseen'] == "U" || $msg_info['Recent'] == "N"){
572                                        array_push($unseen_msgs,$msg_number);
573                        }
574                }
575                if($unseen_msgs){
576                        $msgs_list = implode(",",$unseen_msgs);
577                        $array_msgs = array('folder' => $new_params["msg_folder"], "msgs_to_set" => $msgs_list, "flag" => "unseen");
578                        $this->set_messages_flag($array_msgs);
579                }
580
581                return $return;
582        }
583       
584        /**
585        * @license   http://www.gnu.org/copyleft/gpl.html GPL
586        * @author    Consórcio Expresso Livre - 4Linux (www.4linux.com.br) e Prognus Software Livre (www.prognus.com.br)
587        * @param     $msg_number numero da mensagem
588        */
589        function getRawHeader($msg_number)
590    {
591                return imap_fetchheader($this->mbox, $msg_number, FT_UID);
592        }
593       
594        /**
595        * @license   http://www.gnu.org/copyleft/gpl.html GPL
596        * @author    Consórcio Expresso Livre - 4Linux (www.4linux.com.br) e Prognus Software Livre (www.prognus.com.br)
597        * @param     $msg_number numero da mensagem
598        */
599        function getRawBody($msg_number)
600    {
601                return  imap_body($this->mbox, $msg_number, FT_UID);   
602        }
603
604       
605        /**
606        * @license   http://www.gnu.org/copyleft/gpl.html GPL
607        * @author    Consórcio Expresso Livre - 4Linux (www.4linux.com.br) e Prognus Software Livre (www.prognus.com.br)
608        * @param     $msg mensagem
609        */
610        function builderMsgHeader($msg)
611    {
612
613 
614            $fromMail =  str_replace('<','', str_replace('>','',$msg->headers['from']));
615            $tosMails =  str_replace('<','', str_replace('>','',$msg->headers['to']));
616
617            $tos = explode(',',$tosMails);
618            $to = '';
619            foreach ($tos as $value)
620            {
621                $to .= '<a href="mailto:'.str_replace(' ','',$value).'">'.$value.'</a>, ';
622            }
623
624            $header = '
625                <table style="margin: 2px; border: 1px solid black; background: none repeat scroll 0% 0% rgb(234, 234, 234);">
626                <tbody>
627                <tr><td><b>'.$this->functions->getLang('Subject').':</b></td><td>'.$msg->headers['subject'].'</td></tr>
628                <tr><td><b>'.$this->functions->getLang('From').':</b></td><td><a href="mailto:'.$fromMail.'">'.$fromMail.'</a></td></tr>
629                <tr><td><b>'.$this->functions->getLang('Date').':</b></td><td>'.$msg->headers['date'].'</td></tr>
630                <tr><td><b>'.$this->functions->getLang('To').':</b></td><td>'.$to.'</td></tr>
631                </tbody>
632                </table>
633                <br />'
634            ;
635
636          return $header;
637    }
638       
639                /**
640        * Constroe o corpo da msg direto na variavel de conteudo
641        * @param Mail_mimeDecode $structure
642        * @param <type> $content Ponteiro para Variavel de conteudo da msg
643        */
644        function builderMsgBody($structure , &$content , $printHeader = false)
645        {
646            if(strtolower($structure->ctype_primary) == 'multipart' && strtolower($structure->ctype_secondary) == 'alternative')
647            {
648                $numParts = count($structure->parts) - 1;
649
650                for($i = $numParts; $i >= 0; $i--)
651                {
652                    $part = $structure->parts[$i];
653
654                    switch (strtolower($part->ctype_primary))
655                    {
656                       case 'text':
657                           $disposition = strtolower($part->disposition);
658                           if($disposition != 'attachment')
659                           {
660                                if(strtolower($part->ctype_secondary) == 'html')
661                                {
662                                   if($printHeader)
663                                        $content .= $this->builderMsgHeader($part);
664
665                                   $content .= $this->decodeMailPart($part->body,$part->ctype_parameters['charset']);
666                                }
667
668                                if(strtolower($part->ctype_secondary) == 'plain' )
669                                {
670                                  if($printHeader)
671                                      $content .= $this->builderMsgHeader($part);
672
673                                   $content .= '<pre>'. htmlentities($this->decodeMailPart($part->body,$part->ctype_parameters['charset'],false)).'</pre>';
674                                }
675
676
677
678                           }
679
680                            $i = -1;
681                            break;
682
683                       case 'multipart':
684
685                            if($printHeader)
686                               $content .= $this->builderMsgHeader($part);
687
688                            $this->builderMsgBody($part,$content);
689
690                            $i = -1;
691                            break;
692
693                       case 'message':
694
695                            if(!is_array($part->parts))
696                            {
697                                $content .= "<hr align='left' width='95%' style='border:1px solid #DCDCDC'>";
698                                $content .= '<pre>'. htmlentities($this->decodeMailPart($part->body, $structure->ctype_parameters['charset'],false)).'</pre>';
699                                $content .= "<hr align='left' width='95%' style='border:1px solid #DCDCDC'>";
700                            }
701                            else
702                                $this->builderMsgBody($part,$content,true);
703
704                            $i = -1;
705                            break;
706                    }
707                }
708            }
709            else
710            {
711                foreach ($structure->parts  as $index => $part)
712                {
713                   switch (strtolower($part->ctype_primary))
714                   {
715                       case 'text':
716                           
717                           $disposition = strtolower($part->disposition);
718                           if($disposition != 'attachment')
719                           {
720                                if(strtolower($part->ctype_secondary) == 'html')
721                                {
722                                   if($printHeader)
723                                        $content .= $this->builderMsgHeader($part);
724
725                                   $content .= $this->decodeMailPart($part->body,$part->ctype_parameters['charset']);
726                                }
727
728                                if(strtolower($part->ctype_secondary) == 'plain')
729                                {
730                                  if($printHeader)
731                                      $content .= $this->builderMsgHeader($part);
732
733                                   $content .= '<pre>'. htmlentities($this->decodeMailPart($part->body,$part->ctype_parameters['charset'],false)).'</pre>';
734                                }
735
736                       
737                           }
738                            break;
739                       case 'multipart':
740
741                            if($printHeader)
742                               $content .= $this->builderMsgHeader($part);
743
744                            $this->builderMsgBody($part,$content);
745
746                            break;
747                       case 'message':
748
749                            if(!is_array($part->parts))
750                            {
751                                $content .= "<hr align='left' width='95%' style='border:1px solid #DCDCDC'>";
752                                $content .= '<pre>'.  htmlentities($this->decodeMailPart($part->body, $structure->ctype_parameters['charset'],false)).'</pre>';
753                                $content .= "<hr align='left' width='95%' style='border:1px solid #DCDCDC'>";
754                            }
755                            else
756                                $this->builderMsgBody($part,$content,true);
757                        break;
758                 }
759               }
760            }
761        }
762       
763       
764       
765        /**
766        * @license   http://www.gnu.org/copyleft/gpl.html GPL
767        * @author    Consórcio Expresso Livre - 4Linux (www.4linux.com.br) e Prognus Software Livre (www.prognus.com.br)
768        * @param     $msg_number numero da mensagem
769        */
770        function get_msg_sample($msg_number)
771        {
772
773                $return = "";
774                if( (!isset($this->prefs['preview_msg_subject']) || ($this->prefs['preview_msg_subject'] != "1")) &&
775                        (!isset($this->prefs['preview_msg_tip']    ) || ($this->prefs['preview_msg_tip']     != "1")) )
776                {
777                        $return['body'] = "";
778                        return $return;
779                }
780
781                include_once("class.message_components.inc.php");
782                $msg = &new message_components($this->mbox);
783                $msg->fetch_structure($msg_number); 
784
785                if(!$msg->structure[$msg_number]->parts)
786                {
787                        $content = '';
788                        if (strtolower($msg->structure[$msg_number]->subtype) == "plain" || strtolower($msg->structure[$msg_number]->subtype) == "html")
789                        {
790                                $content = $this->decodeBody(imap_body($this->mbox, $msg_number, FT_UID|FT_PEEK), $msg->encoding[$msg_number][0], $msg->charset[$msg_number][0]);
791                        }
792                }
793                else
794                {
795                        foreach($msg->pid[$msg_number] as $values => $msg_part)
796                        {
797
798                                $file_type = strtolower($msg->file_type[$msg_number][$values]);
799                                if($file_type == "text/plain" || $file_type == "text/html") {
800                                        $content = $this->decodeBody(imap_fetchbody($this->mbox, $msg_number, $msg_part, FT_UID|FT_PEEK), $msg->encoding[$msg_number][$values], $msg->charset[$msg_number][$values]);
801                                        break;
802                                }
803                        }
804                }
805                $content = $this->replace_special_characters($content);
806                $tags_replace = array("<br>","<br/>","<br />");
807                $content = str_replace($tags_replace," ", $content);
808                $content = strip_tags($content);
809                $content = str_replace(array("{","}","&nbsp;"), " ", $content);
810                $content = trim($content);
811                $content = html_entity_decode(substr($content,0,300));
812                $content != "" ? $return['body'] = " - " . $content: $return['body'] = "";
813                return $return;
814        }
815       
816       
817        function get_info_msg($params)
818        {
819                $return = array();
820                $msg_number = $params['msg_number'];
821                $msg_folder = urldecode($params['msg_folder']);
822               
823                if(preg_match('(.+)(_[a-zA-Z0-9]+)',$msg_number,$matches)) { //Verifies if it comes from a tab diferent of the main one.
824                        $msg_number = $matches[1];
825                        $plus_id = $matches[2];
826                }
827                else {
828                        $plus_id = '';
829                }
830               
831                if(!$this->mbox || !is_resource($this->mbox))
832                        $this->mbox = $this->open_mbox($msg_folder);           
833               
834                $header = $this->get_header($msg_number);
835                if (!$header) {
836                        $return['status_get_msg_info'] = "false";                       
837                        return $return;
838                }
839               
840                $header_ = imap_fetchheader($this->mbox, $msg_number, FT_UID);         
841                $return_get_body = $this->get_body_msg($msg_number, $msg_folder);
842                $body = $return_get_body['body'];
843               
844                if($return_get_body['body']=='isCripted'){
845                        $exporteml = new ExportEml();
846                        $return['source']=$exporteml->export_msg_data($msg_number,$msg_folder);
847                        $return['body']                 = "";
848                        $return['attachments']  =  "";
849                        $return['thumbs']               =  "";
850                        $return['signature']    =  "";
851                        //return $return;
852                }else{
853            $return['body']             = $body;
854            $return['attachments']      = $return_get_body['attachments'];
855            $return['thumbs']           = $return_get_body['thumbs'];
856            $return['signature']        = $return_get_body['signature'];
857        }
858                $pattern = '/^[ \t]*Disposition-Notification-To:[ ]*<?[[:alnum:]\._-]+@[[:alnum:]_-]+[\.[:alnum:]]+>?/sm';
859                if (preg_match($pattern, $header_, $fields))
860                {
861                        if(preg_match('/[[:alnum:]\._\-]+@[[:alnum:]_\-\.]+/',$fields[0], $matches)){
862                                $return['DispositionNotificationTo'] = "<".$matches[0].">";
863                        }
864                }
865
866                $return['Recent']       = $header->Recent;
867                $return['Unseen']       = $header->Unseen;
868                $return['Deleted']      = $header->Deleted;             
869                $return['Flagged']      = $header->Flagged;
870
871                if($header->Answered =='A' && $header->Draft == 'X'){
872                        $return['Forwarded'] = 'F';
873                }
874 
875                else {
876                        $return['Answered']     = $header->Answered;
877                        $return['Draft']        = $header->Draft;       
878                }
879
880                $return['msg_number'] = $msg_number.$plus_id;
881                $return['msg_folder'] = $msg_folder;
882       
883                $date_msg = gmdate("d/m/Y",$header->udate);
884                if (date("d/m/Y") == $date_msg)
885                        $return['udate'] = gmdate("H:i",$header->udate);
886                else
887                        $return['udate'] = $date_msg;
888               
889                $return['msg_day'] = $date_msg;
890                $return['msg_hour'] = gmdate("H:i",$header->udate);
891               
892                if (date("d/m/Y") == $date_msg) //no dia
893                {
894                        $return['fulldate'] = gmdate("d/m/Y H:i",$header->udate);
895                        $return['smalldate'] = gmdate("H:i",$header->udate);
896
897                        $timestamp_now = strtotime("now") + $offset;                   
898                        $timestamp_msg_time = $header->udate;
899                        // $timestamp_now is GMT and $timestamp_msg_time is MailDate TZ.
900                        // The variable $timestamp_diff is calculated without MailDate TZ.
901                        $pdate = date_parse($header->MailDate);
902                        $timestamp_diff = $timestamp_now - $timestamp_msg_time  + ($pdate['zone']*(-60));
903                       
904                        if (gmdate("H",$timestamp_diff) > 0)
905                        {
906                                $return['fulldate'] .= " (" . gmdate("H:i", $timestamp_diff) . ' ' . $this->functions->getLang('hours ago') . ')';
907                        }
908                        else
909                        {
910                                if (gmdate("i",$timestamp_diff) == 0){
911                                        $return['fulldate'] .= ' ('. $this->functions->getLang('now').')';
912                                }
913                                elseif (gmdate("i",$timestamp_diff) == 1){
914                                        $return['fulldate'] .= ' (1 '. $this->functions->getLang('minute ago').')';
915                                }
916                                else{
917                                        $return['fulldate'] .= " (" . gmdate("i",$timestamp_diff) .' '. $this->functions->getLang('minutes ago') . ')';
918                                }
919                        }
920                }
921                else{
922                        $return['fulldate'] = gmdate("d/m/Y H:i",$header->udate);
923                        $return['smalldate'] = gmdate("d/m/Y",$header->udate);
924                }
925               
926                $from = $header->from;
927                $return['from'] = array();
928                $return['from']['name'] = $this->decode_string($from[0]->personal);
929                $return['from']['email'] = $this->decode_string($from[0]->mailbox . "@" . $from[0]->host);
930                if ($return['from']['name'])
931                {
932                        if (substr($return['from']['name'], 0, 1) == '"')
933                                $return['from']['full'] = $return['from']['name'] . ' ' . '&lt;' . $return['from']['email'] . '&gt;';
934                        else
935                                $return['from']['full'] = '"' . $return['from']['name'] . '" ' . '&lt;' . $return['from']['email'] . '&gt;';
936                }
937                else
938                        $return['from']['full'] = $return['from']['email'];
939               
940                // Sender attribute
941                $sender = $header->sender;
942                $return['sender'] = array();           
943                $return['sender']['name'] = $this->decode_string($sender[0]->personal);
944                $return['sender']['email'] = $this->decode_string($sender[0]->mailbox . "@" . $sender[0]->host);
945                if ($return['sender']['name'])
946                {
947                        if (substr($return['sender']['name'], 0, 1) == '"')
948                                $return['sender']['full'] = $return['sender']['name'] . ' ' . '&lt;' . $return['sender']['email'] . '&gt;';
949                        else
950                                $return['sender']['full'] = '"' . $return['sender']['name'] . '" ' . '&lt;' . $return['sender']['email'] . '&gt;';
951                }
952                else
953                        $return['sender']['full'] = $return['sender']['email'];
954
955                if($return['from']['full'] == $return['sender']['full'])
956                        $return['sender'] = null;
957                $to = $header->to;
958                $return['toaddress2'] = "";
959                if (!empty($to))
960                {
961                        foreach ($to as $tmp)
962                        {
963                                if (!empty($tmp->personal))
964                                {
965                                        $personal_tmp = imap_mime_header_decode($tmp->personal);
966                                        $return['toaddress2'] .= '"' . $personal_tmp[0]->text . '"';
967                                        $return['toaddress2'] .= " ";
968                                        $return['toaddress2'] .= "&lt;";
969                                        if ($tmp->host != 'unspecified-domain')
970                                                $return['toaddress2'] .= $tmp->mailbox . "@" . $tmp->host;
971                                        else
972                                                $return['toaddress2'] .= $tmp->mailbox;
973                                        $return['toaddress2'] .= "&gt;";
974                                        $return['toaddress2'] .= ", ";
975                                }
976                                else
977                                {
978                                        if ($tmp->host != 'unspecified-domain')
979                                                $return['toaddress2'] .= $tmp->mailbox . "@" . $tmp->host;
980                                        else
981                                                $return['toaddress2'] .= $tmp->mailbox;
982                                        $return['toaddress2'] .= ", ";
983                                }
984                        }
985                        $return['toaddress2'] = $this->del_last_two_caracters($return['toaddress2']);
986                }
987                else
988                {
989                        $return['toaddress2'] = "";
990                }       
991               
992                $cc = $header->cc;
993                $return['cc'] = "";
994                if (!empty($cc))
995                {
996                        foreach ($cc as $tmp_cc)
997                        {
998                                if (!empty($tmp_cc->personal))
999                                {
1000                                        $personal_tmp_cc = imap_mime_header_decode($tmp_cc->personal);
1001                                        $return['cc'] .= '"' . $personal_tmp_cc[0]->text . '"';
1002                                        $return['cc'] .= " ";
1003                                        $return['cc'] .= "&lt;";
1004                                        $return['cc'] .= $tmp_cc->mailbox . "@" . $tmp_cc->host;
1005                                        $return['cc'] .= "&gt;";
1006                                        $return['cc'] .= ", ";
1007                                }
1008                                else
1009                                {
1010                                        $return['cc'] .= $tmp_cc->mailbox . "@" . $tmp_cc->host;
1011                                        $return['cc'] .= ", ";
1012                                }
1013                        }
1014                        $return['cc'] = $this->del_last_two_caracters($return['cc']);
1015                }
1016                else
1017                {
1018                        $return['cc'] = "";
1019                }       
1020
1021                ##
1022                # @AUTHOR Rodrigo Souza dos Santos
1023                # @DATE 2008/09/12
1024                # @BRIEF Adding the BCC field.
1025                ##
1026               
1027                $bcc = $header->bcc;
1028                $return['bcc'] = "";
1029                if (!empty($bcc))
1030                {
1031                        foreach ($bcc as $tmp_bcc)
1032                        {
1033                                if (!empty($tmp_bcc->personal))
1034                                {
1035                                        $personal_tmp_bcc = imap_mime_header_decode($tmp_bcc->personal);
1036                                        $return['bcc'] .= '"' . $personal_tmp_bcc[0]->text . '"';
1037                                        $return['bcc'] .= " ";
1038                                        $return['bcc'] .= "&lt;";
1039                                        $return['bcc'] .= $tmp_bcc->mailbox . "@" . $tmp_bcc->host;
1040                                        $return['bcc'] .= "&gt;";
1041                                        $return['bcc'] .= ", ";
1042                                }
1043                                else
1044                                {
1045                                        $return['bcc'] .= $tmp_bcc->mailbox . "@" . $tmp_bcc->host;
1046                                        $return['bcc'] .= ", ";
1047                                }
1048                        }
1049                        $return['bcc'] = $this->del_last_two_caracters($return['bcc']);
1050                }
1051                else
1052                {
1053                        $return['bcc'] = "";
1054                }       
1055
1056                $reply_to = $header->reply_to;
1057                $return['reply_to'] = "";
1058                if (is_object($reply_to[0]))
1059                {
1060                        if ($return['from']['email'] != ($reply_to[0]->mailbox."@".$reply_to[0]->host))
1061                        {
1062                                if (!empty($reply_to[0]->personal))
1063                                {
1064                                        $personal_reply_to = imap_mime_header_decode($tmp_reply_to->personal);
1065                                        if(!empty($personal_reply_to[0]->text)) {
1066                                                $return['reply_to'] .= '"' . $personal_reply_to[0]->text . '"';
1067                                                $return['reply_to'] .= " ";
1068                                                $return['reply_to'] .= "&lt;";
1069                                                $return['reply_to'] .= $reply_to[0]->mailbox . "@" . $reply_to[0]->host;
1070                                                $return['reply_to'] .= "&gt;";
1071                                        }
1072                                        else {
1073                                                $return['reply_to'] .= $reply_to[0]->mailbox . "@" . $reply_to[0]->host;
1074                                        }
1075                                }
1076                                else
1077                                {
1078                                        $return['reply_to'] .= $reply_to[0]->mailbox . "@" . $reply_to[0]->host;
1079                                }
1080                        }
1081                }
1082                $return['reply_to'] = $this->decode_string($return['reply_to']);
1083                $return['subject'] = $this->decode_string($header->fetchsubject);
1084                $return['Size'] = $header->Size;               
1085                $return['reply_toaddress'] = $header->reply_toaddress;
1086               
1087                //All this is to help in local messages
1088                $return['timestamp'] = $header->udate;
1089                $return['login'] = $_SESSION['phpgw_info']['expressomail']['user']['account_id'];//$GLOBALS['phpgw_info']['user']['account_id'];
1090                $return['reply_toaddress'] = $header->reply_toaddress;
1091       
1092                return $return;
1093        }
1094
1095        /*
1096         * Converte textos utf8 para o padrão html.
1097         * @link http://php.net/manual/en/function.utf8-decode.php
1098         * @author luka8088 <luka8088@gmail.com>
1099         */
1100        function utf8_to_html ($data)
1101        {
1102            return preg_replace("/([\\xC0-\\xF7]{1,1}[\\x80-\\xBF]+)/e", '$this->_utf8_to_html("\\1")', $data);
1103        }
1104                 
1105        function _utf8_to_html ($data)
1106        {
1107            $ret = 0;
1108                foreach((str_split(strrev(chr((ord($data{0}) % 252 % 248 % 240 % 224 % 192) + 128) . substr($data, 1)))) as $k => $v)
1109                        $ret += (ord($v) % 128) * pow(64, $k);
1110                    return "&#$ret;";
1111        }
1112        //------------------------------------------------------------------------------//
1113       
1114       
1115       
1116       
1117                /**
1118         * Decodifica uma part da mensagem para iso-8859-1
1119         * @param <type> $part parte do email
1120         * @param <type> $encode codificação da parte
1121         * @return <type> string decodificada
1122         */
1123        function decodeMailPart($part, $encode, $html = true)
1124        {
1125            switch (strtolower($encode))
1126            {
1127                case 'iso-8859-1':
1128                    return $part;
1129                    break;
1130
1131                case 'utf-8':
1132                    if ($html)
1133                                                return  $this->utf8_to_html($part);
1134                        else       
1135                                                return  utf8_decode ($part);
1136                    break;
1137
1138                default:
1139                    return mb_convert_encoding($part, 'iso-8859-1');
1140                    break;
1141            }
1142        }
1143       
1144       
1145        function get_body_msg($msg_number, $msg_folder)
1146        {
1147            /*
1148             * Requires of librarys
1149             */
1150            require_once $_SESSION['rootPath'].'/library/mime/mimePart.php';
1151            require_once $_SESSION['rootPath'].'/library/mime/mimeDecode.php';
1152            require_once $_SESSION['rootPath'].'/expressoMail1_2/inc/class.attachment.inc.php';
1153            include_once ("class.message_components.inc.php");
1154            //--------------------------------------------------------------------//
1155
1156            $return = array();
1157
1158            $msg = &new message_components($this->mbox);
1159            $msg->fetch_structure($msg_number);
1160
1161            $content = '';
1162
1163            $rawMessageData = $this->getRawHeader($msg_number).$this->getRawBody($msg_number);
1164
1165            $decoder = new Mail_mimeDecode($rawMessageData);
1166
1167            $params['include_bodies'] = true;
1168            $params['decode_bodies']  = true;
1169            $params['decode_headers'] = true;
1170            $structure = $decoder->decode($params);
1171
1172            /*
1173             * Inicia Gerenciador de Anexos
1174             */
1175            $attachmentManager = new attachment();
1176            $attachmentManager->setStructure($structure);
1177            //----------------------------------------------//
1178
1179            /*
1180             * Monta informações dos anexos para o cabecalhos
1181             */
1182            $attachments = $attachmentManager->getAttachmentsInfo();
1183            $return['attachments'] = $attachments;
1184            //----------------------------------------------//
1185
1186            /*
1187             * Monta informações das imagens
1188             */
1189            $images = $attachmentManager->getEmbeddedImagesInfo();
1190            //----------------------------------------------//
1191
1192            if(!$this->has_cid)
1193            {
1194                    $return['thumbs']    = $this->get_thumbs($images,$msg_number,$msg_folder);
1195                    $return['signature'] = $this->get_signature($msg,$msg_number,$msg_folder);
1196            }
1197
1198            switch (strtolower($structure->ctype_primary))
1199            {
1200                case 'text':
1201                        if(strtolower($structure->ctype_secondary) == 'x-pkcs7-mime')
1202                        {
1203                                $return['body']='isCripted';
1204                                return $return;
1205                        }
1206                        $attachment = array();
1207
1208                        $msg_subtype = strtolower($structure->ctype_secondary);
1209                        $disposition = strtolower($structure->disposition);
1210
1211                        if(($msg_subtype == "html" || $msg_subtype == 'plain') && ($disposition != 'attachment'))
1212                        {
1213                               
1214
1215                                if(strtolower($msg_subtype) == 'plain')
1216                                {
1217                                        $content = $this->decodeMailPart($structure->body, $structure->ctype_parameters['charset'],false);
1218                                                                                $content = str_replace(array('<', '>'), array(' #$<$# ', ' #$>$# '), $content);
1219                                        $content = htmlentities($content);
1220                                        $content = $this -> replace_links($content);
1221                                        $content = str_replace(array(' #$&lt;$# ', ' #$&gt;$# '), array('&lt;', '&gt;'), $content);
1222                                        $content = '<pre>' . $content . '</pre>';
1223                                        $return[ 'body' ] = $content;
1224                                        return $return;
1225                                }
1226                                                                $content = $this->decodeMailPart($structure->body, $structure->ctype_parameters['charset']);
1227                        }
1228
1229                    break;
1230
1231               case 'multipart':
1232                    $this-> builderMsgBody($structure , $content);
1233
1234                    break;
1235
1236               case 'message':
1237                    if(!is_array($structure->parts))
1238                    {
1239                        $content .= "<hr align='left' width='95%' style='border:1px solid #DCDCDC'>";
1240                        $content .= '<pre>'.htmlentities($this->decodeMailPart($structure->body, $structure->ctype_parameters['charset'],false)).'</pre>';
1241                        $content .= "<hr align='left' width='95%' style='border:1px solid #DCDCDC'>";
1242                    }
1243                    else
1244                        $this->builderMsgBody($structure , $content,true);
1245
1246                    break;
1247
1248               default:
1249                    if(count($attachments) > 0)
1250                       $content .= '';
1251                    else
1252                    {
1253                       $content .= $this->functions->getLang('Message not supported') . '. ';
1254                       $content .= $this->functions->getLang('Type') . ': ' . $structure->ctype_primary . '/' . $structure->ctype_secondary;
1255                    }
1256                    break;
1257            }
1258
1259                $params = array('folder' => $msg_folder, "msgs_to_set" => $msg_number, "flag" => "seen");
1260                $this->set_messages_flag($params);
1261                $content = $this->process_embedded_images($images,$msg_number,$content, $msg_folder);
1262                $content = $this->replace_special_characters($content);
1263                $this->replace_links($content);
1264                $return['body'] = &$content;
1265               
1266                return $return;   
1267        }
1268
1269        function htmlfilter($body)
1270        {
1271                require_once('htmlfilter.inc');
1272
1273                $tag_list = Array(
1274                                false,
1275                                'blink',
1276                                'object',
1277                                'meta',
1278                                'html',
1279                                'link',
1280                                'frame',
1281                                'iframe',
1282                                'layer',
1283                                'ilayer',
1284                                'plaintext'
1285                );
1286
1287                /**
1288                * A very exclusive set:
1289                */
1290                // $tag_list = Array(true, "b", "a", "i", "img", "strong", "em", "p");
1291                $rm_tags_with_content = Array(
1292                                'script',
1293                                'style',
1294                                'applet',
1295                                'embed',
1296                                'head',
1297                                'frameset',
1298                                'xml',
1299                                'xmp'
1300                );
1301
1302                $self_closing_tags =  Array(
1303                                'img',
1304                                'br',
1305                                'hr',
1306                                'input'
1307                );
1308
1309                $force_tag_closing = true;
1310
1311                $rm_attnames = Array(
1312                        '/.*/' =>
1313                                Array(
1314                                        '/target/i',
1315                                        //'/^on.*/i', -> onClick, dos compromissos da agenda.
1316                                        '/^dynsrc/i',
1317                                        '/^datasrc/i',
1318                                        '/^data.*/i',
1319                                        '/^lowsrc/i'
1320                                )
1321                );
1322
1323                /**
1324                 * Yeah-yeah, so this looks horrible. Check out htmlfilter.inc for
1325                 * some idea of what's going on here. :)
1326                 */
1327
1328                $bad_attvals = Array(
1329                '/.*/' =>
1330                Array(
1331                      '/.*/' =>
1332                              Array(
1333                                Array(
1334                                  '/^([\'\"])\s*\S+\s*script\s*:*(.*)([\'\"])/si',
1335                                          //'/^([\'\"])\s*https*\s*:(.*)([\'\"])/si', -> doclinks notes
1336                                          '/^([\'\"])\s*mocha\s*:*(.*)([\'\"])/si',
1337                                          '/^([\'\"])\s*about\s*:(.*)([\'\"])/si'
1338                                      ),
1339                            Array(
1340                                              '\\1oddjob:\\2\\1',
1341                                          //'\\1uucp:\\2\\1', -> doclinks notes
1342                                      '\\1amaretto:\\2\\1',
1343                                          '\\1round:\\2\\1'
1344                                        )
1345                                    ),
1346
1347                          '/^style/i' =>
1348                              Array(
1349                                        Array(
1350                                          '/expression/i',
1351                                              '/behaviou*r/i',
1352                                          '/binding/i',
1353                                              '/include-source/i',
1354                                          '/url\s*\(\s*([\'\"]*)\s*https*:.*([\'\"]*)\s*\)/si',
1355                                              '/url\s*\(\s*([\'\"]*)\s*\S+\s*script:.*([\'\"]*)\s*\)/si'
1356                                         ),
1357                                        Array(
1358                                          'idiocy',
1359                                              'idiocy',
1360                                          'idiocy',
1361                                              'idiocy',
1362                                          'url(\\1http://securityfocus.com/\\1)',
1363                                          'url(\\1http://securityfocus.com/\\1)'
1364                                         )
1365                                )
1366                          )
1367                    );
1368
1369                $add_attr_to_tag = Array(
1370                                '/^a$/i' => Array('target' => '"_new"')
1371                );
1372
1373
1374                $trusted_body = sanitize($body,
1375                                $tag_list,
1376                                $rm_tags_with_content,
1377                                $self_closing_tags,
1378                                $force_tag_closing,
1379                                $rm_attnames,
1380                                $bad_attvals,
1381                                $add_attr_to_tag
1382                );
1383
1384            return $trusted_body;
1385        }
1386
1387        function decodeBody($body, $encoding, $charset=null)
1388        {
1389
1390                if ($encoding == 'quoted-printable')
1391                {
1392                        $body = quoted_printable_decode($body);
1393           
1394                }
1395                else if ($encoding == 'base64')
1396                {
1397                        $body = base64_decode($body);
1398                }
1399                        // All other encodings are returned raw.
1400                if (strtolower($charset) == "utf-8")
1401                                return utf8_decode($body);
1402                else
1403                                return $body;
1404                }
1405
1406                               
1407        /**
1408        * @license   http://www.gnu.org/copyleft/gpl.html GPL
1409        * @author    Consórcio Expresso Livre - 4Linux (www.4linux.com.br) e Prognus Software Livre (www.prognus.com.br)
1410        * @param     $images
1411        * @param     $msgno
1412        * @param     $body
1413        * @param     $msg_folder
1414        */                     
1415        function process_embedded_images($images, $msgno, $body, $msg_folder)
1416        {
1417
1418            foreach ($images as $image)
1419            {   
1420                $image['cid'] = eregi_replace("<", "", $image['cid']);
1421                $image['cid'] = eregi_replace(">", "", $image['cid']);
1422                $body = eregi_replace("<br/>", "", $body);
1423                $body = str_replace("src=\"cid:".$image['cid']."\"", " src=\"./inc/show_embedded_attach.php?msg_folder=$msg_folder&msg_num=$msgno&msg_part=".$image['pid']."\" ", $body);
1424                $body = str_replace("src='cid:".$image['cid']."'", " src=\"./inc/show_embedded_attach.php?msg_folder=$msg_folder&msg_num=$msgno&msg_part=".$image['pid']."\" ", $body);
1425                $body = str_replace("src=cid:".$image['cid'], " src=\"./inc/show_embedded_attach.php?msg_folder=$msg_folder&msg_num=$msgno&msg_part=".$image['pid']."\" ", $body);   
1426            }
1427            return $body;
1428        }
1429
1430        function replace_special_characters($body)
1431        {
1432                // Suspected TAGS!
1433                // $tag_list = Array('blink','object','meta','html','link','frame','iframe','layer','ilayer','plaintext','script','style','img','applet','embed','head','frameset','xml','xmp');
1434               
1435                // remove MS Office's proprietary tag
1436                //$body = mb_ereg_replace('<!\-\-\[if [^!]* mso .*\]>.*<!\[endif\]\-\->', '', $body);
1437               
1438                // Layout problem: Change html elements
1439                // with absolute position to relate position, CASE INSENSITIVE.
1440                $body = @mb_eregi_replace("POSITION: ABSOLUTE;","",$body);
1441
1442                // tags to be removed doe to security reasons
1443                $tag_list = Array(
1444                        'head','blink','object','frame','iframe',
1445                        'layer','ilayer','plaintext','script',
1446                        'applet','embed','frameset','xml','xmp'
1447                );
1448               
1449                foreach($tag_list as $index => $tag) {
1450                        $body = @mb_eregi_replace("<$tag\\b[^>]*>(.*?)</$tag>", "<!-- TAG <$tag> Removed by ExpressoMail -->", $body);
1451                }
1452               
1453                //try to wrap CSS code instead of remove STYLE tags
1454                require_once('../library/csstidy/class.csstidy.php');
1455                $css = new csstidy();
1456                $css->set_cfg('preserve_css', false);
1457
1458                $regs_found = array();
1459                $tags_found = @mb_eregi("<style\b[^>]*>(.*?)</style>", $body, $regs_found);
1460               
1461                foreach ($regs_found as $block_found) {
1462                        $n_start      = strpos($block_found, '>')+1;
1463                        $n_length     = strrpos($block_found, '<')-$n_start;
1464                        $bf_innerHTML = substr($block_found, $n_start, $n_length);
1465                       
1466                        $bf_innerHTML = mb_ereg_replace('<!--', '', $bf_innerHTML);
1467                        $bf_innerHTML = mb_ereg_replace('-->', '', $bf_innerHTML);
1468
1469                        $css->parse($bf_innerHTML);
1470                       
1471                        $prefix = ".$wrapper_class ";
1472                        foreach ($css->css[41] as $key => $value) {
1473                                                //explode multiple selectors per block
1474                                                $selectors = explode(',', $key);
1475                                                         
1476                                    foreach ($selectors as $selector) {
1477                                        if (ereg('\*', $key)) {
1478                                                                //skip selecto '*'
1479                                            continue;
1480                                        }
1481                                                                 
1482                                                        $selector = eregi_replace('[^#\.]*body.*', '', $selector);
1483                                                        $css->css[41][$prefix.trim($selector)] = $value;
1484                                    }
1485                        unset($css->css[41][$key]);
1486                        }
1487                       
1488                        $body = str_replace($block_found, '<style>'.$css->print->plain().'</style>', $body);
1489                }
1490
1491
1492                // Malicious Code Remove
1493                $dirtyCodePattern = "/(<([\w]+[\w0-9]*)(.*)on(mouse(move|over|down|up)|load|blur|change|error|click|dblclick|focus|key(down|up|press)|select)([\n\ ]*)=([\n\ ]*)[\"'][^>\"']*[\"']([^>]*)>)(.*)(<\/\\2>)?/misU";
1494                preg_match_all($dirtyCodePattern,$body,$rest,PREG_PATTERN_ORDER);
1495                foreach($rest[0] as $i => $val) {
1496                        if (!(preg_match("/javascript:window\.open\(\"([^'\"]*)\/index\.php\?menuaction=calendar\.uicalendar\.set_action\&cal_id=([^;'\"]+);?['\"]/i",$rest[1][$i]) && strtoupper($rest[4][$i]) == "CLICK" )) //Calendar events
1497                                $body = str_replace($rest[1][$i],"<".$rest[2][$i].$rest[3][$i].$rest[7][$i].">",$body);
1498                }
1499               
1500                /*
1501                * Remove deslocamento a esquerda colocado pelo Outlook.
1502                * Este delocamento faz com que algumas palavras fiquem escondidas atras da barra lateral do expresso.
1503                */
1504                $body = mb_ereg_replace("(<p[^>]*)(text-indent:[^>;]*-[^>;]*;)([^>]*>)","\\1\\3",$body);
1505            $body = mb_ereg_replace("(<p[^>]*)(margin-right:[^>;]*-[^>;]*;)([^>]*>)","\\1\\3",$body);
1506            $body = mb_ereg_replace("(<p[^>]*)(margin-left:[^>;]*-[^>;]*;)([^>]*>)","\\1\\3",$body);
1507            //--------------------------------------------------------------------------------------------//   
1508               
1509                //$body = $this->replace_links($body);
1510
1511                //Remoção de tags <span></span> para correção de erro no firefox
1512                $body = mb_eregi_replace("<span><span>","",$body);
1513                $body = mb_eregi_replace("</span></span>","",$body);
1514                $body = preg_replace("/text-indent:.*;/i","", $body);
1515               
1516                //Correção para compatibilização com Outlook, ao visualizar a mensagem
1517                $body = mb_ereg_replace('<!--\[','<!-- [',$body);
1518                $body = mb_ereg_replace('&lt;!\[endif\]--&gt;', '<![endif]-->', $body);
1519                       
1520                return  "<div class=\"$wrapper_class\"><span>".$body.'</span></div>';
1521        }       
1522
1523       
1524       
1525        /**
1526        * @license   http://www.gnu.org/copyleft/gpl.html GPL
1527        * @author    Consórcio Expresso Livre - 4Linux (www.4linux.com.br) e Prognus Software Livre (www.prognus.com.br)
1528        * @param     $body corpo da mensagem
1529        */
1530        function replace_links(&$body)
1531        {
1532                // Domains and IPs addresses found in the text and which is not a link yet should be replaced by one.
1533                // See more informations in www.iana.org
1534                $octets = array(
1535                        'first' => '(2[0-3][0-9]|1[0-9]{2}|[1-9][0-9]?)',
1536                        'middle' => '(25[0-5]|2[0-4][0-9]|1?[0-9]{1,2})',
1537                        'last' => '(25[0-4]|2[0-4][0-9]|1[0-9]{2}|[1-9][0-9]?)'
1538                );
1539
1540                $ip = "\b{$octets[ 'first' ]}\.({$octets[ 'middle' ]}\.){2}{$octets[ 'last' ]}\b";
1541
1542                $top_level_domains = '(\.(ac|ad|ae|aero|af|ag|ai|al|am|an|ao|aq|ar|as|asia|at|au|aw|ax|az|'
1543                        . 'ba|bb|bd|be|bf|bg|bh|bi|biz|bj|bl|bm|bn|bo|br|bs|bt|bv|bw|by|bz|'
1544                        . 'ca|cat|cc|cd|cf|cg|ch|ci|ck|cl|cm|cn|co|com|coop|cr|cu|cv|cx|cy|cz|'
1545                        . 'de|dj|dk|dm|do|dz|ec|edu|ee|eg|eh|er|es|et|eu|fi|fj|fk|fm|fo|fr|'
1546                        . 'ga|gb|gd|ge|gf|gg|gh|gi|gl|gm|gn|gov|gp|gq|gr|gs|gt|gu|gw|gy|'
1547                        . 'hk|hm|hn|hr|ht|hu|id|ie|il|im|in|info|int|io|iq|ir|is|it|je|jm|jo|jobs|jp|'
1548                        . 'ke|kg|kh|ki|km|kn|kp|kr|kw|ky|kz|la|lb|lc|li|lk|lr|ls|lt|lu|lv|ly|'
1549                        . 'ma|mc|md|me|mf|mg|mh|mil|mk|ml|mm|mn|mo|mobi|mp|mq|mr|ms|mt|mu|museum|'
1550                        . 'mv|mw|mx|my|mz|na|name|nc|ne|net|nf|ng|ni|nl|no|np|nr|nu|nz|om|org|'
1551                        . 'pa|pe|pf|pg|ph|pk|pl|pm|pn|pro|ps|pt|pw|py|qa|re|ro|rs|ru|rw|'
1552                        . 'sa|sb|sc|sd|se|sg|sh|si|sj|sk|sl|sm|sn|so|sr|st|su|sv|sy|sz|'
1553                        . 'tc|td|tel|tf|tg|th|tj|tk|tl|tm|tn|to|tp|tr|travel|tt|tv|tw|tz|'
1554                        . 'ua|ug|uk|um|us|uy|uz|va|vc|ve|vg|vi|vn|vu|wf|ws|ye|yt|yu|za|zm|zw))+\b';
1555               
1556                $path = '(?>\/[\w\d\/\.\'\(\)\-\+~?!&#@$%|:;,*=_]+)?';
1557                $port = '(?>:\d{2,5})?';
1558                $domain = '(?>[\w\d_\-]+)';
1559                $subdomain = "(?>{$domain}\.)*";
1560                $protocol = '(?>(http|ftp)(s)?:\/\/)?';
1561                $url = "(?>{$protocol}((?>{$subdomain}{$domain}{$top_level_domains}|{$ip}){$port}{$path}))";
1562
1563                $pattern = "/(<\w[^>]+|[\/\"'@=])?{$url}/";
1564               
1565                ini_set( 'pcre.backtrack_limit', 300000 );
1566                /*
1567                // PHP 5.3
1568                $replace = function( $matches )
1569                {
1570                        if ( $matches[ 1 ] )
1571                                return $matches[ 0 ];
1572
1573                        $url = ( $matches[ 2 ] ) ? $matches[ 2 ] : 'http';
1574                        $url .= "{$matches[ 3 ]}://{$matches[ 4 ]}";
1575                        return "<a href=\"{$url}\" target=\"_blank\">{$matches[ 4 ]}</a>";
1576                };
1577                $body = preg_replace_callback( $pattern, $replace, $body );
1578                */
1579
1580                // PHP 5.2.x - Remover assim que possível
1581                $body = preg_replace_callback( $pattern,
1582                        create_function(
1583                                '$matches',
1584                                'if ( $matches[ 1 ] ) return $matches[ 0 ];'
1585                                        . '$url = ( $matches[ 2 ] ) ? $matches[ 2 ] : "http";'
1586                                        . '$url .= "{$matches[ 3 ]}://{$matches[ 4 ]}";'
1587                                        . 'return "<a href=\"{$url}\" target=\"_blank\">{$matches[ 4 ]}</a>";'
1588                        ), $body
1589                );
1590                ini_set( 'pcre.backtrack_limit', 100000 );
1591
1592                // E-mail address in the text should create a new e-mail on ExpressoMail
1593                $pattern = '/( |<|&lt;|>)([A-Za-z0-9\.~?\/_=#\-]*@[A-Za-z0-9\.~?\/_=#\-]*)( |>|&gt;|<)/im';
1594                $replacement = '$1<a href="mailto:$2">$2</a>$3';
1595                $body = preg_replace( $pattern, $replacement, $body );
1596
1597                return $body;
1598        }
1599
1600        function get_signature($msg, $msg_number, $msg_folder)
1601        {
1602            include_once(dirname( __FILE__ ) ."/../../security/classes/CertificadoB.php");
1603            include_once("class.db_functions.inc.php");
1604            foreach ($msg->file_type[$msg_number] as $index => $file_type)
1605            {
1606                $sign = array();
1607                $temp = $this->get_info_head_msg($msg_number);
1608                if($temp['ContentType'] =='normal') return $sign;
1609                $file_type = strtolower($file_type);
1610                if(strtolower($msg->encoding[$msg_number][$index]) == 'base64')
1611                {
1612                    if ($temp['ContentType'] == 'signature')
1613                    {
1614                        if(!$this->mbox || !is_resource($this->mbox))
1615                        $this->mbox = $this->open_mbox($msg_folder);
1616
1617                        $header = @imap_headerinfo($this->mbox, imap_msgno($this->mbox, $msg_number), 80, 255);
1618
1619                        $imap_msg               = @imap_fetchheader($this->mbox, $msg_number, FT_UID);
1620                        $imap_msg               .= @imap_body($this->mbox, $msg_number, FT_UID);
1621
1622                        $certificado = new certificadoB();
1623                        $validade = $certificado->verificar($imap_msg);
1624                                        $sign[] = $certificado->msg_sem_assinatura;
1625                        if ($certificado->apresentado)
1626                        {
1627                            $from = $header->from;
1628                            foreach ($from as $id => $object)
1629                            {
1630                                $fromname = $object->personal;
1631                                $fromaddress = $object->mailbox . "@" . $object->host;
1632                            }
1633                            foreach ($certificado->erros_ssl as $item)
1634                            {
1635                                $sign[] = $item . "#@#";
1636                            }
1637
1638                            if (count($certificado->erros_ssl) < 1)
1639                            {
1640                                $check_msg = 'Message untouched';
1641                                if(strtoupper($fromaddress) == strtoupper($certificado->dados['EMAIL']))
1642                                {
1643                                    $check_msg .= ' and authentic###';
1644                                }
1645                                else
1646                                {
1647                                    $check_msg .= ' with signer different from sender#@#';
1648                                }
1649                                $sign[] = $check_msg;
1650                            }
1651                                               
1652                            $sign[] = 'Message signed by: ###' . $certificado->dados['NOME'];
1653                            $sign[] = 'Certificate email: ###' . $certificado->dados['EMAIL'];
1654                            $sign[] = 'Mail from: ###' . $fromaddress;
1655                            $sign[] = 'Certificate Authority: ###' . $certificado->dados['EMISSOR'];
1656                            $sign[] = 'Validity of certificate: ###' . gmdate('r',openssl_to_timestamp($certificado->dados['FIM_VALIDADE']));
1657                            $sign[] = 'Message date: ###' . $header->Date;
1658
1659                            $cert = openssl_x509_parse($certificado->cert_assinante);
1660
1661                            $sign_alert = array();
1662                            $sign_alert[] = 'Certificate Owner###:\n';
1663                            $sign_alert[] = 'Common Name (CN)###  ' . $cert[subject]['CN'] .  '\n';
1664                            $X = substr($certificado->dados['NASCIMENTO'] ,0,2) . '-' . substr($certificado->dados['NASCIMENTO'] ,2,2) . '-'  . substr($certificado->dados['NASCIMENTO'] ,4,4);
1665                            $sign_alert[]= 'Organization (O)###  ' . $cert[subject]['O'] .  '\n';
1666                            $sign_alert[]= 'Organizational Unit (OU)### ' . $cert[subject]['OU'][0] .  '\n';
1667                            //$sign_alert[] = 'Serial Number### ' . $cert['serialNumber'] . '\n';
1668                            $sign_alert[] = 'Personal Data###:' . '\n';
1669                            $sign_alert[] = 'Birthday### ' . $X .  '\n';
1670                            $sign_alert[]= 'Fiscal Id### ' . $certificado->dados['CPF'] .  '\n';
1671                            $sign_alert[]= 'Identification### ' . $certificado->dados['RG'] .  '\n\n';
1672                            $sign_alert[]= 'Certificate Issuer###:\n';
1673                            $sign_alert[]= 'Common Name (CN)###  ' . $cert[issuer]['CN'] . '\n';
1674                            $sign_alert[]= 'Organization (O)###  ' . $cert[issuer]['O'] .  '\n';
1675                            $sign_alert[]= 'Organizational Unit (OU)### ' . $cert[issuer]['OU'][0] .  '\n\n';
1676                            $sign_alert[]= 'Validity###:\n';
1677                            $H = data_hora($cert[validFrom]);
1678                            $X = substr($H,6,2) . '-' . substr($H,4,2) . '-'  . substr($H,0,4);
1679                            $sign_alert[]= 'Valid From### ' . $X .  '\n';
1680                            $H = data_hora($cert[validTo]);
1681                            $X = substr($H,6,2) . '-' . substr($H,4,2) . '-'  . substr($H,0,4);
1682                            $sign_alert[]= 'Valid Until### ' . $X;
1683                            $sign[] = $sign_alert;
1684
1685                            $this->db = new db_functions();
1686                           
1687                            // TODO: testar se existe um certificado no banco e verificar qual ï¿œ o mais atual.
1688                            if(!$certificado->dados['EXPIRADO'] && !$certificado->dados['REVOGADO'] && count($certificado->erros_ssl) < 1)
1689                                $this->db->insert_certificate(strtolower($certificado->dados['EMAIL']), $certificado->cert_assinante, $certificado->dados['SERIALNUMBER'], $certificado->dados['AUTHORITYKEYIDENTIFIER']);
1690                        }
1691                        else
1692                        {
1693                            $sign[] = "<span style=color:red>" . $this->functions->getLang('Invalid signature') . "</span>";
1694                            foreach($certificado->erros_ssl as $item)
1695                                $sign[] = "<span style=color:red>" . $this->functions->getLang($item) . "</span>";
1696                        }
1697                    }
1698                }
1699            }
1700            return $sign;
1701        }
1702
1703       
1704        /**
1705        * @license   http://www.gnu.org/copyleft/gpl.html GPL
1706        * @author    Consórcio Expresso Livre - 4Linux (www.4linux.com.br) e Prognus Software Livre (www.prognus.com.br)
1707        * @param     $images
1708        * @param     $msg_number
1709        * @param     $msg_folder
1710        */
1711        function get_thumbs($images, $msg_number, $msg_folder)
1712        {
1713
1714            $thumbs_array = array();
1715            $i = 0;
1716
1717            foreach ($images as $x => $image)
1718            {
1719                 if($x && $x == 'names')
1720                    continue;
1721                 
1722                 $img = "<img id='".$msg_folder.";;".$msg_number.";;".$i.";;".$image['pid'].";;".$image['encoding']."' title='".$this->functions->getLang("Click here do view (+)")."'src=./inc/show_thumbs.php?&msg_num=".$msg_number."&msg_folder=".$msg_folder."&msg_part=".$image['pid']." />";
1723                 $href = "./inc/show_img.php?msg_num=".$msg_number."&msg_folder=".$msg_folder."&msg_part=".$image['pid'];
1724                                 $anchor = "<a class=\"expressomail-thumbs-link\" onMouseDown='save_image(event,this,\"".$image['type']."\")' href=\"".$href."\" onclick=\"window.open('".$href."','mywindow','width=700,height=600,scrollbars=yes');return false;\">". $img ."</a>";
1725                 $thumbs_array[] = $anchor;
1726                 $i++;
1727               
1728            }
1729            return $thumbs_array;
1730        }
1731
1732        /*function delete_msg($params)
1733        {
1734                $folder = $params['folder'];
1735                $msgs_to_delete = explode(",",$params['msgs_to_delete']);
1736
1737                $mbox_stream = $this->open_mbox($folder);
1738
1739                foreach ($msgs_to_delete as $msg_number){
1740                        imap_delete($mbox_stream, $msg_number, FT_UID);
1741                }
1742                imap_close($mbox_stream, CL_EXPUNGE);
1743                return $params['msgs_to_delete'];
1744        }*/
1745
1746        // Novo
1747        function delete_msgs($params)
1748        {
1749               
1750                $folder = $params['folder'];
1751                $folder =  mb_convert_encoding($folder, "UTF7-IMAP","ISO-8859-1");
1752                $msgs_number = explode(",",$params['msgs_number']);
1753                $border_ID = $params['border_ID'];
1754               
1755                $return = array();
1756               
1757                if ($params['get_previous_msg']){
1758                        $return['previous_msg'] = $this->get_info_previous_msg($params);
1759                        // Fix problem in unserialize function JS.
1760                        $return['previous_msg']['body'] = str_replace(array('{','}'), array('&#123;','&#125;'), $return['previous_msg']['body']);
1761                }
1762
1763                //$mbox_stream = $this->open_mbox($folder);             
1764                $mbox_stream = @imap_open("{".$this->imap_server.":".$this->imap_port.$this->imap_options."}".$folder, $this->username, $this->password) or die(serialize(array('imap_error' => $this->parse_error(imap_last_error()))));
1765               
1766                foreach ($msgs_number as $msg_number)
1767                {
1768                        if (imap_delete($mbox_stream, $msg_number, FT_UID));
1769                                $return['msgs_number'][] = $msg_number;
1770                }
1771               
1772                $return['folder'] = $folder;
1773                $return['border_ID'] = $border_ID;
1774               
1775                if($mbox_stream)
1776                        imap_close($mbox_stream, CL_EXPUNGE);
1777                return $return;
1778        }
1779
1780
1781        function refresh($params)
1782        {
1783
1784                $folder = $params['folder'];
1785                $msg_range_begin = $params['msg_range_begin'];
1786                $msg_range_end = $params['msg_range_end'];
1787                $msgs_existent = $params['msgs_existent'];
1788                $sort_box_type = $params['sort_box_type'];
1789                $sort_box_reverse = $params['sort_box_reverse'];
1790                $msgs_in_the_server = array();
1791                $search_box_type = $params['search_box_type'] != "ALL" && $params['search_box_type'] != "" ? $params['search_box_type'] : false;
1792                $msgs_in_the_server = $this->get_msgs($folder, $sort_box_type, $search_box_type, $sort_box_reverse,$msg_range_begin,$msg_range_end);
1793                $msgs_in_the_server = array_keys($msgs_in_the_server);
1794                if(!count($msgs_in_the_server))
1795                        return array();
1796
1797                $num_msgs = (count($msgs_in_the_server) - imap_num_recent($this->mbox));
1798                $msgs_in_the_client = explode(",", $msgs_existent);
1799
1800                $msg_to_insert  = array_diff($msgs_in_the_server, $msgs_in_the_client);
1801                $msg_to_delete = array_diff($msgs_in_the_client, $msgs_in_the_server);
1802
1803                $msgs_to_exec = array();
1804                foreach($msg_to_insert as $msg_number)
1805                        $msgs_to_exec[] = $msg_number;
1806                //sort($msgs_to_exec);
1807
1808                $return = array();
1809                $i = 0;
1810                foreach($msgs_to_exec as $msg_number)
1811                {
1812                        /*A função imap_headerinfo não traz o cabeçalho completo, e sim alguns
1813                        * atributos do cabeçalho. Como eu preciso do atributo Importance
1814                        * para saber se o email é importante ou não, uso abaixo a função
1815                        * imap_fetchheader e busco o atributo importance nela para passar
1816                        * para as funções ajax. Isso faz com que eu acesse o cabeçalho
1817                        * duas vezes e de duas formas diferentes, mas em contrapartida, eu
1818                        * não preciso reimplementar o método utilizando o fetchheader.
1819                        */
1820   
1821                        $tempHeader = @imap_fetchheader($this->mbox, imap_msgno($this->mbox, $msg_number));
1822                        $flag = preg_match('/importance *: *(.*)\r/i', $tempHeader, $importance);
1823                        $return[$i]['Importance'] = $flag==0?"Normal":$importance[1];
1824
1825                        $msg_sample = $this->get_msg_sample($msg_number);
1826                        $return[$i]['msg_sample'] = $msg_sample;
1827
1828                        $header = $this->get_header($msg_number);
1829                        if (!is_object($header))
1830                                continue;
1831
1832                        $return[$i]['msg_number']       = $msg_number;
1833                       
1834                        //get the next msg number to append this msg in the view in a correct place
1835                        $msg_key_position = array_search($msg_number, $msgs_in_the_server);
1836                       
1837                        $return[$i]['msg_key_position'] = $msg_key_position;
1838                        if($msg_key_position !== false && array_key_exists($msg_key_position + 1,$msgs_in_the_server) !== false)
1839                                $return[$i]['next_msg_number'] = $msgs_in_the_server[$msg_key_position + 1];
1840                        else
1841                                $return[$i]['next_msg_number'] = $msgs_in_the_server[$msg_key_position];
1842
1843                        $return[$i]['msg_folder']       = $folder;
1844                        // Atribui o tipo (normal, signature ou cipher) ao campo Content-Type
1845                        $return[$i]['ContentType']  = $this->getMessageType($msg_number, $tempHeader);
1846                        $return[$i]['Recent']           = $header->Recent;
1847                        $return[$i]['Unseen']           = $header->Unseen;
1848                        $return[$i]['Answered']         = $header->Answered;
1849                        $return[$i]['Deleted']          = $header->Deleted;
1850                        $return[$i]['Draft']            = $header->Draft;
1851                        $return[$i]['Flagged']          = $header->Flagged;
1852
1853                        $return[$i]['udate'] = $header->udate;
1854               
1855                        $from = $header->from;
1856                        $return[$i]['from'] = array();
1857                        $tmp = imap_mime_header_decode($from[0]->personal);
1858                        $return[$i]['from']['name'] = $tmp[0]->text;
1859                        $return[$i]['from']['email'] = $from[0]->mailbox . "@" . $from[0]->host;
1860                        //$return[$i]['from']['full'] ='"' . $return[$i]['from']['name'] . '" ' . '<' . $return[$i]['from']['email'] . '>';
1861                        if(!$return[$i]['from']['name'])
1862                                $return[$i]['from']['name'] = $return[$i]['from']['email'];
1863
1864                        /*$toaddress = imap_mime_header_decode($header->toaddress);
1865                        $return[$i]['toaddress'] = '';
1866                        foreach ($toaddress as $tmp)
1867                                $return[$i]['toaddress'] .= $tmp->text;*/
1868                        $to = $header->to;
1869                        $return[$i]['to'] = array();
1870                        $tmp = imap_mime_header_decode($to[0]->personal);
1871                        $return[$i]['to']['name'] = $tmp[0]->text;
1872                        $return[$i]['to']['email'] = $to[0]->mailbox . "@" . $to[0]->host;
1873                        $return[$i]['to']['full'] ='"' . $return[$i]['to']['name'] . '" ' . '<' . $return[$i]['to']['email'] . '>';
1874                        $cc = $header->cc;
1875                        if ( ($cc) && (!$return[$i]['to']['name']) ){
1876                                $return[$i]['to']['name'] =  $cc[0]->personal;
1877                                $return[$i]['to']['email'] = $cc[0]->mailbox . "@" . $cc[0]->host;
1878                        }
1879                        $return[$i]['subject'] = $this->decode_string($header->fetchsubject);
1880
1881                        $return[$i]['Size'] = $header->Size;
1882                        $return[$i]['reply_toaddress'] = $header->reply_toaddress;
1883
1884                        $return[$i]['attachment'] = array();
1885                        if (!isset($imap_attachment))
1886                        {
1887                                include_once("class.imap_attachment.inc.php");
1888                                $imap_attachment = new imap_attachment();
1889                        }
1890                        $return[$i]['attachment'] = $imap_attachment->get_attachment_headerinfo($this->mbox, $msg_number);
1891                        $i++;
1892                }
1893                $return['quota'] = $this->get_quota(array('folder_id' => $folder));
1894                $return['sort_box_type'] = $params['sort_box_type'];
1895                if(!$this->mbox || !is_resource($this->mbox))
1896                {
1897                    $this->open_mbox($folder);
1898                }
1899                $return['new_msgs'] = imap_num_recent($this->mbox);
1900                $return['msgs_to_delete'] = $msg_to_delete;
1901                $return['offsetToGMT'] = $this->functions->CalculateDateOffset();
1902                if($this->mbox && is_resource($this->mbox))
1903                        imap_close($this->mbox);
1904
1905                return $return;
1906        }
1907
1908     /**
1909     * Método que faz a verificação do Content-Type do e-mail e verifica se é um e-mail normal,
1910     * assinado ou cifrado.
1911     * @author Mário César Kolling <mario.kolling@serpro.gov.br>
1912     * @param $headers Uma String contendo os Headers do e-mail retornados pela função imap_imap_fetchheader
1913     * @param $msg_number O número da mesagem
1914     * @return Retorna o tipo da mensagem (normal, signature, cipher).
1915     */
1916    function getMessageType($msg_number, $headers = false){
1917            include_once(dirname( __FILE__ ) ."/../../security/classes/CertificadoB.php");
1918            $contentType = "normal";
1919            if (!$headers){
1920                $headers = imap_fetchheader($this->mbox, imap_msgno($this->mbox, $msg_number));
1921            }
1922           
1923            if (preg_match("/pkcs7-signature/i", $headers) == 1){
1924                $contentType = "signature";
1925            } else if (preg_match("/pkcs7-mime/i", $headers) == 1){
1926                $contentType = testa_p7m( imap_body($this->mbox, imap_msgno($this->mbox, $msg_number)) );
1927            }
1928
1929            return $contentType;
1930    }
1931
1932         /**
1933     * Metodo que retorna todas as pastas do usuario logado.
1934     * @param $params array opcional para repassar os argumentos ao metodo.
1935     * Se usar $params['noSharedFolders'] = true, ira retornar todas as pastas do usuário logado,
1936     * excluindo as compartilhadas para ele.
1937     * Se usar $params['folderType'] = "default" irá retornar somente as pastas defaults
1938     * Se usar $params['folderType'] = "personal" irá retornar somente as pastas pessoais
1939     * Se usar $params['folderType'] = null irá retornar todas as pastas
1940     * @return Retorna um array contendo as seguintes informacoes de cada pasta: folder_unseen,
1941     * folder_id, folder_name, folder_parent e folder_hasChildren.
1942     */
1943        function get_folders_list($params = null)
1944        {
1945                $mbox_stream = $this->open_mbox();
1946                if($params && $params['onload'] && $_SESSION['phpgw_info']['expressomail']['server']['certificado']){
1947                        $this->delete_mailbox(array("del_past" => "INBOX".$this->imap_delimiter."decifradas"));
1948                }
1949
1950                $inbox = 'INBOX';
1951                $trash = $inbox . $this->imap_delimiter . $_SESSION['phpgw_info']['expressomail']['email_server']['imapDefaultTrashFolder'];
1952                $drafts = $inbox . $this->imap_delimiter . $_SESSION['phpgw_info']['expressomail']['email_server']['imapDefaultDraftsFolder'];
1953                $spam = $inbox . $this->imap_delimiter . $_SESSION['phpgw_info']['expressomail']['email_server']['imapDefaultSpamFolder'];
1954                $sent = $inbox . $this->imap_delimiter . $_SESSION['phpgw_info']['expressomail']['email_server']['imapDefaultSentFolder'];
1955                $uid2cn = $_SESSION['phpgw_info']['user']['preferences']['expressoMail']['uid2cn'];
1956                // Free others requests
1957                session_write_close();
1958
1959                $serverString = "{".$this->imap_server.":".$this->imap_port.$this->imap_options."}";
1960               
1961                if ( $params && $params['noSharedFolders'] )
1962                        $folders_list = array_merge(imap_getmailboxes($mbox_stream, $serverString, 'INBOX' ), imap_getmailboxes($mbox_stream, $serverString, 'INBOX/*' ) );
1963                else
1964                        $folders_list = imap_getmailboxes($mbox_stream, $serverString, '*' );
1965
1966                $folders_list = array_slice($folders_list,0,$this->foldersLimit);
1967
1968                $tmp = array();
1969                $resultMine = array();
1970                $resultDefault = array();
1971
1972                if (is_array($folders_list)) {
1973                        reset($folders_list);
1974                        $this->ldap = new ldap_functions();
1975
1976                        $i = 0;
1977                        while (list($key, $val) = each($folders_list)) {
1978                                $status = imap_status($mbox_stream, $val->name, SA_UNSEEN);
1979
1980                                //$tmp_folder_id = explode("}", imap_utf7_decode($val->name));
1981                                $tmp_folder_id = explode("}", mb_convert_encoding($val->name, "ISO_8859-1", "UTF7-IMAP" ));
1982
1983                                if($tmp_folder_id[1]=='INBOX'.$this->imap_delimiter.'decifradas') {
1984                                        //error_log('passou', 3,'/tmp/imap_get_list.log');
1985                                        //imap_deletemailbox($mbox_stream,imap_utf7_encode("{".$this->imap_server."}".'INBOX/decifradas'));
1986                                        continue;
1987                                }
1988                                $result[$i]['folder_unseen'] = $status->unseen;
1989                                $folder_id = $tmp_folder_id[1];
1990                                $result[$i]['folder_id'] = $folder_id;
1991
1992                                $tmp_folder_parent = explode($this->imap_delimiter, $folder_id);
1993                                $result[$i]['folder_name'] = array_pop($tmp_folder_parent);
1994                                $result[$i]['folder_name'] = $result[$i]['folder_name'] == 'INBOX' ? 'Inbox' : $result[$i]['folder_name'];
1995                       
1996                                if ($uid2cn && substr($folder_id,0,4) == 'user') {
1997                                        //$this->ldap = new ldap_functions();
1998                                        if ($cn = $this->ldap->uid2cn($result[$i]['folder_name'])) {
1999                                                $result[$i]['folder_name'] = $cn;
2000                                        }
2001                                }
2002
2003                                $tmp_folder_parent = implode($this->imap_delimiter, $tmp_folder_parent);
2004                                $result[$i]['folder_parent'] = $tmp_folder_parent == 'INBOX' ? '' : $tmp_folder_parent;
2005
2006                                if (($val->attributes == 32) && ($result[$i]['folder_name'] != 'Inbox'))
2007                                        $result[$i]['folder_hasChildren'] = 1;
2008                                else
2009                                        $result[$i]['folder_hasChildren'] = 0;
2010
2011                                switch ($tmp_folder_id[1]) {
2012                                        case $inbox:
2013                                        case $sent:
2014                                        case $drafts:
2015                                        case $spam:
2016                                        case $trash:
2017                                                $resultDefault[]=$result[$i];
2018                                                break;
2019                                        default:
2020                                                $resultMine[]=$result[$i];
2021                                }
2022
2023                                $i++;
2024                        }
2025                }
2026
2027                if ( $params && !$params['noQuotaInfo'] ) {
2028                        //Get quota info of current folder
2029                        $current_folder = "INBOX";
2030                        if($params && $params['folder'])
2031                                $current_folder = $params['folder'];
2032
2033                        $arr_quota_info = $this->get_quota(array('folder_id' => $current_folder));
2034                } else {
2035                        $arr_quota_info = array();
2036                }
2037
2038                // Sorting resultMine
2039                foreach ($resultMine as $folder_info)
2040                {
2041                        $array_tmp[] = $folder_info['folder_id'];
2042                }
2043
2044                natcasesort($array_tmp);
2045               
2046                $result2 = array();
2047
2048                foreach ($array_tmp as $key => $folder_id)
2049                {
2050                        $result2[] = $resultMine[$key];
2051                }
2052               
2053                // Sorting resultDefault
2054                foreach ($resultDefault as $key => $folder_id)
2055                {
2056                        switch ($resultDefault[$key]['folder_id']) {
2057                                case $inbox:
2058                                        $resultDefault2[0] = $resultDefault[$key];
2059                                        break;
2060                                case $sent:
2061                                        $resultDefault2[1] = $resultDefault[$key];
2062                                        break;
2063                                case $drafts:
2064                                        $resultDefault2[2] = $resultDefault[$key];
2065                                        break;
2066                                case $spam:
2067                                        $resultDefault2[3] = $resultDefault[$key];
2068                                        break;
2069                                case $trash:
2070                                        $resultDefault2[4] = $resultDefault[$key];
2071                                        break;
2072                        }
2073                }
2074               
2075                if ( $params && $params['folderType'] && $params['folderType'] == 'default' )
2076                        return array_merge($resultDefault2, $arr_quota_info);
2077
2078                if ( $params && $params['folderType'] && $params['folderType'] == 'personal' )
2079                        return array_merge($result2, $arr_quota_info);
2080
2081                // Merge default folders and personal
2082                $result2 = array_merge($resultDefault2, $result2);
2083               
2084                return array_merge($result2, $arr_quota_info);
2085        }
2086
2087        function create_mailbox($arr)
2088        {
2089                $namebox        = $arr['newp'];
2090                $mbox_stream = $this->open_mbox();
2091                $imap_server = $_SESSION['phpgw_info']['expressomail']['email_server']['imapServer'];
2092                $namebox =  mb_convert_encoding($namebox, "UTF7-IMAP", "UTF-8");
2093
2094                $result = "Ok";
2095                if(!imap_createmailbox($mbox_stream,"{".$imap_server."}$namebox"))
2096                {
2097                        $result = implode("<br />\n", imap_errors());
2098                }
2099
2100                if($mbox_stream)
2101                        imap_close($mbox_stream);
2102
2103                return $result;
2104
2105        }
2106
2107        function create_extra_mailbox($arr)
2108        {
2109                $nameboxs = explode(";",$arr['nw_folders']);
2110                $result = "";
2111                $mbox_stream = $this->open_mbox();
2112                $imap_server = $_SESSION['phpgw_info']['expressomail']['email_server']['imapServer'];
2113                foreach($nameboxs as $key=>$tmp){
2114                        if($tmp != ""){
2115                                if(!imap_createmailbox($mbox_stream,imap_utf7_encode("{".$imap_server."}$tmp"))){
2116                                        $result = implode("<br />\n", imap_errors());
2117                                        if($mbox_stream)
2118                                                imap_close($mbox_stream);
2119                                        return $result;
2120                                }
2121                        }
2122                }
2123                if($mbox_stream)
2124                        imap_close($mbox_stream);
2125                return true;
2126        }
2127
2128        function delete_mailbox($arr)
2129        {
2130                $namebox = $arr['del_past'];
2131                $imap_server = $_SESSION['phpgw_info']['expressomail']['email_server']['imapServer'];
2132                $mbox_stream = $this->mbox ? $this->mbox : $this->open_mbox();
2133                //$del_folder = imap_deletemailbox($mbox_stream,"{".$imap_server."}INBOX.$namebox");
2134
2135                $result = "Ok";
2136                $namebox = mb_convert_encoding($namebox, "UTF7-IMAP","UTF-8");
2137                if(!imap_deletemailbox($mbox_stream,"{".$imap_server."}$namebox"))
2138                {
2139                        $result = implode("<br />\n", imap_errors());
2140                }
2141                /*
2142                if($mbox_stream)
2143                        imap_close($mbox_stream);
2144                */
2145                return $result;
2146        }
2147
2148        function ren_mailbox($arr)
2149        {
2150                $namebox = $arr['current'];
2151                $new_box = $arr['rename'];
2152                $imap_server = $_SESSION['phpgw_info']['expressomail']['email_server']['imapServer'];
2153                $mbox_stream = $this->open_mbox();
2154                //$ren_folder = imap_renamemailbox($mbox_stream,"{".$imap_server."}INBOX.$namebox","{".$imap_server."}INBOX.$new_box");
2155
2156                $result = "Ok";
2157                $namebox = mb_convert_encoding($namebox, "UTF7-IMAP","UTF-8");
2158                $new_box = mb_convert_encoding($new_box, "UTF7-IMAP","UTF-8");
2159
2160                if(!imap_renamemailbox($mbox_stream,"{".$imap_server."}$namebox","{".$imap_server."}$new_box"))
2161                {
2162                        $result = imap_errors();
2163                }
2164                if($mbox_stream)
2165                        imap_close($mbox_stream);
2166                return $result;
2167
2168        }
2169
2170        function get_num_msgs($params)
2171        {
2172                $folder = $params['folder'];
2173                if(!$this->mbox || !is_resource($this->mbox)) {
2174                        $this->mbox = $this->open_mbox($folder);
2175                        if(!$this->mbox || !is_resource($this->mbox))
2176                        return imap_last_error();
2177                }
2178                $num_msgs = imap_num_msg($this->mbox);
2179                if($this->mbox && is_resource($this->mbox))
2180                        imap_close($this->mbox);
2181
2182                return $num_msgs;
2183        }
2184
2185        function folder_exists($folder){
2186                $mbox =  $this->open_mbox();
2187                $serverString = "{".$this->imap_server.":".$this->imap_port.$this->imap_options."}";           
2188                $list = imap_getmailboxes($mbox,$serverString, $folder);
2189                $return = is_array($list);             
2190                imap_close($mbox);
2191                return $return;
2192        }
2193       
2194        function send_mail($params)
2195        {
2196                include_once("class.phpmailer.php");
2197                $mail = new PHPMailer();
2198                include_once("class.db_functions.inc.php");
2199                $db = new db_functions();
2200                $fromaddress = $params['input_from'] ? explode(';',$params['input_from']) : "";
2201                ##
2202                # @AUTHOR Rodrigo Souza dos Santos
2203                # @DATE 2008/09/17$fileName
2204                # @BRIEF Checks if the user has permission to send an email with the email address used.
2205                ##
2206                if ( is_array($fromaddress) && ($fromaddress[1] != $_SESSION['phpgw_info']['expressomail']['user']['email']) )
2207                {
2208                        $deny = true;
2209                        foreach( $_SESSION['phpgw_info']['expressomail']['user']['shared_mailboxes'] as $key => $val )
2210                                if ( array_key_exists('mail', $val) && $val['mail'][0] == $fromaddress[1] )
2211                                        $deny = false and end($_SESSION['phpgw_info']['expressomail']['user']['shared_mailboxes']);
2212
2213                        if ( $deny )
2214                                return "The server denied your request to send a mail, you cannot use this mail address.";
2215                }
2216
2217                $toaddress = implode(',',$db->getAddrs(explode(',',$params['input_to'])));
2218                $ccaddress = implode(',',$db->getAddrs(explode(',',$params['input_cc'])));
2219                $ccoaddress = implode(',',$db->getAddrs(explode(',',$params['input_cco'])));
2220                $replytoaddress = $params['input_replyto'];
2221                $subject = $params['input_subject'];
2222                $msg_uid = $params['msg_id'];
2223                $return_receipt = $params['input_return_receipt'];
2224                $is_important = $params['input_important_message'];
2225        $encrypt = $params['input_return_cripto'];
2226                $signed = $params['input_return_digital'];
2227
2228                if($params['smime'])
2229        {
2230            $body = $params['smime'];
2231            $mail->SMIME = true;
2232            // A MSG assinada deve ser testada neste ponto.
2233            // Testar o certificado e a integridade da msg....
2234            include_once(dirname( __FILE__ ) ."/../../security/classes/CertificadoB.php");
2235            $erros_acumulados = '';
2236            $certificado = new certificadoB();
2237            $validade = $certificado->verificar($body);
2238            if(!$validade)
2239            {
2240                foreach($certificado->erros_ssl as $linha_erro)
2241                {
2242                    $erros_acumulados .= $linha_erro;
2243                }
2244            }
2245            else
2246            {
2247                // Testa o CERTIFICADO: se o CPF  he o do usuario logado, se  pode assinar msgs e se  nao esta expirado...
2248                if ($certificado->apresentado)
2249                {
2250                    if($certificado->dados['EXPIRADO']) $erros_acumulados .='Certificado expirado.';
2251                    $this->cpf = isset($GLOBALS['phpgw_info']['server']['certificado_atributo_cpf'])&&$GLOBALS['phpgw_info']['server']['certificado_atributo_cpf']!=''?$_SESSION['phpgw_info']['expressomail']['user'][$GLOBALS['phpgw_info']['server']['certificado_atributo_cpf']]:$this->username;
2252                    if($certificado->dados['CPF'] != $this->cpf) $erros_acumulados .=' CPF no certificado diferente do logado no expresso.';
2253                    if(!($certificado->dados['KEYUSAGE']['digitalSignature'] && $certificado->dados['EXTKEYUSAGE']['emailProtection'])) $erros_acumulados .=' Certificado nao permite assinar mensagens.';
2254                }
2255                else
2256                {
2257                    $$erros_acumulados .= 'Nao foi possivel usar o certificado para assinar a msg';
2258                }
2259            }
2260            if(!$erros_acumulados =='')
2261            {
2262                return $erros_acumulados;
2263            }
2264        }
2265        else
2266        {
2267            $body = $params['body'];
2268            //Compatibilização com Outlook, ao encaminhar a mensagem
2269            $body = mb_ereg_replace('<!--\[','<!-- [',$body);
2270        }
2271                //echo "<script language=\"javascript\">javascript:alert('".$body."');</script>";
2272                $attachments = $_FILES;
2273                $forwarding_attachments = $params['forwarding_attachments'];
2274                $local_attachments = $params['local_attachments'];
2275
2276                //Test if must be saved in shared folder and change if necessary
2277                if( $fromaddress[2] == 'y' ){
2278                        //build shared folder path
2279                        $newfolder = "user".$this->imap_delimiter.$fromaddress[3].$this->imap_delimiter.$this->imap_sentfolder;
2280                        if( $this->folder_exists($newfolder) ) $folder = $newfolder;
2281                        else $folder =  $params['folder'];                     
2282                } else  {
2283                        $folder = $params['folder'];                   
2284                }
2285               
2286                $folder = mb_convert_encoding($folder, "UTF7-IMAP","ISO_8859-1");
2287                $folder_name = $params['folder_name'];
2288                // Fix problem with cyrus delimiter changes.
2289                // Dots in names: enabled/disabled.
2290                $folder = @eregi_replace("INBOX/", "INBOX".$this->imap_delimiter, $folder);
2291                $folder = @eregi_replace("INBOX.", "INBOX".$this->imap_delimiter, $folder);
2292                // End Fix.
2293                if ($folder != 'null'){
2294                        $mail->SaveMessageInFolder = $folder;
2295                }
2296////////////////////////////////////////////////////////////////////////////////////////////////////
2297                $mail->SMTPDebug = false;
2298
2299                if($signed && !$params['smime'])
2300                {
2301            $mail->Mailer = "smime";
2302                        $mail->SignedBody = true;
2303                }
2304                else
2305            $mail->IsSMTP();
2306
2307                $mail->Host = $_SESSION['phpgw_info']['expressomail']['email_server']['smtpServer'];
2308                $mail->Port = $_SESSION['phpgw_info']['expressomail']['email_server']['smtpPort'];
2309                $mail->From = $_SESSION['phpgw_info']['expressomail']['user']['email'];
2310                $mail->FromName = $_SESSION['phpgw_info']['expressomail']['user']['fullname'];
2311                if($fromaddress){
2312                        $mail->Sender = $mail->From;
2313                        $mail->SenderName = $mail->FromName;
2314                        $mail->FromName = $fromaddress[0];
2315                        $mail->From = $fromaddress[1];
2316                }
2317
2318                $this->add_recipients("to", $toaddress, &$mail);
2319                $this->add_recipients("cc", $ccaddress, &$mail);
2320                $this->add_recipients("cco", $ccoaddress, &$mail);
2321                $mail->AddReplyTo($replytoaddress);
2322                $mail->Subject = $subject;
2323                $mail->IsHTML( ( array_key_exists( 'type', $params ) && in_array( strtolower( $params[ 'type' ] ), array( 'html', 'plain' ) ) ) ? strtolower( $params[ 'type' ] ) != 'plain' : true );
2324                $mail->Body = $body;
2325
2326        if (($encrypt && $signed && $params['smime']) || ($encrypt && !$signed))        // a msg deve ser enviada cifrada...
2327                {
2328                        $email = $this->add_recipients_cert($toaddress . ',' . $ccaddress. ',' .$ccoaddress);
2329            $email = explode(",",$email);
2330            // Deve ser testado se foram obtidos os certificados de todos os destinatarios.
2331            // Deve ser verificado um numero limite de destinatarios.
2332            // Deve ser verificado se os certificados sao validos.
2333            // Se uma das verificacoes falhar, nao enviar o e-mail e avisar o usuario.
2334            // O array $mail->Certs_crypt soh deve ser preenchido se os certificados passarem nas verificacoes.
2335            $numero_maximo = $_SESSION['phpgw_info']['user']['preferences']['expressoMail']['num_max_certs_to_cipher'];  // Este valor dever ser configurado pelo administrador do site ....
2336            $erros_acumulados = "";
2337            $aux_mails = array();
2338            $mail_list = array();
2339            if(count($email) > $numero_maximo)
2340            {
2341                $erros_acumulados .= "Excedido o numero maximo (" . $numero_maximo . ") de destinatarios para uma msg cifrada...." . chr(0x0A);
2342                return $erros_acumulados;
2343            }
2344            // adiciona o email do remetente. eh para cifrar a msg para ele tambem. Assim vai poder visualizar a msg na pasta enviados..
2345            $email[] = $_SESSION['phpgw_info']['expressomail']['user']['email'];
2346            foreach($email as $item)
2347            {
2348                $certificate = $db->get_certificate(strtolower($item));
2349                if(!$certificate)
2350                {
2351                    $erros_acumulados .= "Chamada com parametro invalido.  e-Mail nao pode ser vazio." . chr(0x0A);
2352                    return $erros_acumulados;
2353                }
2354
2355                if (array_key_exists("dberr1", $certificate))
2356                {
2357
2358                    $erros_acumulados .= "Ocorreu um erro quando pesquisava certificados dos destinatarios para cifrar a msg." . chr(0x0A);
2359                    return $erros_acumulados;
2360                                }
2361                if (array_key_exists("dberr2", $certificate))
2362                {
2363                    $erros_acumulados .=  $item . ' : Nao  pode cifrar a msg. Certificado nao localizado.' . chr(0x0A);
2364                    //continue;
2365                }
2366                        /*  Retirado este teste para evitar mensagem de erro duplicada.
2367                if (!array_key_exists("certs", $certificate))
2368                {
2369                        $erros_acumulados .=  $item . ' : Nao  pode cifrar a msg. Certificado nao localizado.' . chr(0x0A);
2370                    continue;
2371                }
2372            */
2373                include_once(dirname( __FILE__ ) ."/../../security/classes/CertificadoB.php");
2374
2375                foreach ($certificate['certs'] as $registro)
2376                {
2377                    $c1 = new certificadoB();
2378                    $c1->certificado($registro['chave_publica']);
2379                    if ($c1->apresentado)
2380                    {
2381                        $c2 = new Verifica_Certificado($c1->dados,$registro['chave_publica']);
2382                        if (!$c1->dados['EXPIRADO'] && !$c2->revogado && $c2->status)
2383                        {
2384                            $aux_mails[] = $registro['chave_publica'];
2385                            $mail_list[] = strtolower($item);
2386                        }
2387                        else
2388                        {
2389                            if ($c1->dados['EXPIRADO'] || $c2->revogado)
2390                            {
2391                                $db->update_certificate($c1->dados['SERIALNUMBER'],$c1->dados['EMAIL'],$c1->dados['AUTHORITYKEYIDENTIFIER'],
2392                                    $c1->dados['EXPIRADO'],$c2->revogado);
2393                            }
2394
2395                            $erros_acumulados .= $item . ':  ' . $c2->msgerro . chr(0x0A);
2396                            foreach($c2->erros_ssl as $linha)
2397                            {
2398                                $erros_acumulados .=  $linha . chr(0x0A);
2399                            }
2400                            $erros_acumulados .=  'Emissor: ' . $c1->dados['EMISSOR'] . chr(0x0A);
2401                            $erros_acumulados .=  $c1->dados['CRLDISTRIBUTIONPOINTS'] . chr(0x0A);
2402                        }
2403                    }
2404                    else
2405                    {
2406                        $erros_acumulados .= $item . ' : Nao  pode cifrar a msg. Certificado invalido.' . chr(0x0A);
2407                    }
2408                }
2409                if(!(in_array(strtolower($item),$mail_list)) && !empty($erros_acumulados))
2410                                {
2411                                        return $erros_acumulados;
2412                        }
2413            }
2414
2415            $mail->Certs_crypt = $aux_mails;
2416        }
2417                // Build CID images
2418                $this->buildEmbeddedImages($mail,$msg_uid,$forwarding_attachments);
2419
2420                //      Build Uploading Attachments!!!
2421                if (count($attachments)>0) //Caso seja forward normal...
2422                {
2423                        $total_uploaded_size = 0;
2424                        $upload_max_filesize = str_replace("M","",$_SESSION['phpgw_info']['user']['preferences']['expressoMail']['max_attachment_size']) * 1024 * 1024;
2425                        foreach ($attachments as $attach)
2426                        {
2427                                if($attach['error'] == UPLOAD_ERR_INI_SIZE)
2428                                    return $this->parse_error("message file too big");
2429                                if($attach['name']=='Unknown')
2430                                        continue;
2431                                $mail->AddAttachment($attach['tmp_name'], $attach['name'], "base64", $this->get_file_type($attach['name']));  // optional name
2432                                $total_uploaded_size = $total_uploaded_size + $attach['size'];
2433                        }
2434                        if( $total_uploaded_size > $upload_max_filesize){
2435                                return $this->parse_error("message file too big");
2436                        }
2437                }
2438                if(count($local_attachments)>0) { //Caso seja forward de mensagens locais
2439
2440                        $total_uploaded_size = 0;
2441                        $upload_max_filesize = str_replace("M","",ini_get('upload_max_filesize')) * 1024 * 1024;
2442                        foreach($local_attachments as $local_attachment) {
2443                                $file_description = unserialize(rawurldecode($local_attachment));
2444                                $tmp = array_values($file_description);
2445                                foreach($file_description as $i => $descriptor){
2446                                        $tmp[$i]  = eregi_replace('\'*\'','',$descriptor);
2447                                }
2448                                $mail->AddAttachment($_FILES[$tmp[1]]['tmp_name'], $tmp[2], "base64", $this->get_file_type($tmp[2]));  // optional name
2449                                $total_uploaded_size = $total_uploaded_size + $_FILES[$tmp[1]]['size'];
2450                        }
2451                        if( $total_uploaded_size > $upload_max_filesize)
2452                                return 'false';
2453                }
2454////////////////////////////////////////////////////////////////////////////////////////////////////
2455                //      Build Forwarding Attachments!!!
2456                if (count($forwarding_attachments) > 0)
2457                {
2458                        // Bug fixed for array_search function
2459                        $name_cid_files = array();
2460                        if(count($name_cid_files) > 0) {
2461                                $name_cid_files[count($name_cid_files)] = $name_cid_files[0];
2462                                $name_cid_files[0] = null;
2463                        }
2464
2465                        foreach($forwarding_attachments as $forwarding_attachment)
2466                        {
2467                                        $file_description = unserialize(rawurldecode($forwarding_attachment));
2468                                        $tmp = array_values($file_description);
2469                                        foreach($file_description as $i => $descriptor){
2470                                                $tmp[$i]  = eregi_replace('\'*\'','',$descriptor);
2471                                        }
2472                                        $file_description = $tmp;
2473                                        $fileContent = $this->get_forwarding_attachment($file_description[0], $file_description[1], $file_description[3],$file_description[4]);
2474                                        $fileName = $file_description[2];
2475                                        if(!array_search(trim($fileName),$name_cid_files)) {
2476                                                $mail->AddStringAttachment($fileContent,html_entity_decode(rawurldecode($fileName)), $file_description[4], $this->get_file_type($file_description[2]));
2477                                }
2478                        }
2479                }
2480
2481////////////////////////////////////////////////////////////////////////////////////////////////////
2482                // Important message
2483                if($is_important)
2484                        $mail->isImportant();
2485
2486////////////////////////////////////////////////////////////////////////////////////////////////////
2487                // Disposition-Notification-To
2488                if ($return_receipt)
2489                        $mail->ConfirmReadingTo = $_SESSION['phpgw_info']['expressomail']['user']['email'];
2490////////////////////////////////////////////////////////////////////////////////////////////////////
2491
2492                $sent = $mail->Send();
2493
2494                if(!$sent)
2495                {
2496                        return $this->parse_error($mail->ErrorInfo);
2497                }
2498                else
2499                {
2500            if ($signed && !$params['smime'])
2501                        {
2502                                return $sent;
2503                        }
2504                        if($_SESSION['phpgw_info']['server']['expressomail']['expressoMail_enable_log_messages'] == "True")
2505                        {
2506                                $userid = $_SESSION['phpgw_info']['expressomail']['user']['userid'];
2507                                $userip = $_SESSION['phpgw_info']['expressomail']['user']['session_ip'];
2508                                $now = date("d/m/y H:i:s");
2509                                $addrs = $toaddress.$ccaddress.$ccoaddress;
2510                                $sent = trim($sent);
2511                                error_log("$now - $userip - $sent [$subject] - $userid => $addrs\r\n", 3, "/home/expressolivre/mail_senders.log");
2512                        }
2513                        if($_SESSION['phpgw_info']['user']['preferences']['expressoMail']['number_of_contacts'] &&
2514                           $_SESSION['phpgw_info']['user']['preferences']['expressoMail']['use_dynamic_contacts']) {
2515                                $contacts = new dynamic_contacts();
2516                                $new_contacts = $contacts->add_dynamic_contacts($toaddress.",".$ccaddress.",".$ccoaddress);
2517                                return array("success" => true, "new_contacts" => $new_contacts);
2518                        }
2519                        return array("success" => true);
2520                }
2521        }
2522       
2523       
2524        /**
2525        * @license   http://www.gnu.org/copyleft/gpl.html GPL
2526        * @author    Consórcio Expresso Livre - 4Linux (www.4linux.com.br) e Prognus Software Livre (www.prognus.com.br)
2527        * @param     $mail email
2528        * @param     $msg_uid uid da mensagem
2529        * @param     $forwarding_attachments anexos
2530        */
2531        function buildEmbeddedImages(&$mail,$msg_uid,&$forwarding_attachments)
2532        {
2533                //Build CID for embedded Images!!!
2534                $pattern = '/src="([^"]*?show_embedded_attach.php\?msg_folder=(.+)?&(amp;)?msg_num=(.+)?&(amp;)?msg_part=(.+)?)"/isU';
2535                $cid_imgs = '';
2536                preg_match_all($pattern,$mail->Body,$cid_imgs,PREG_PATTERN_ORDER);
2537                $cid_array = array();
2538
2539                foreach($cid_imgs[6] as $j => $val){
2540                        if ( !array_key_exists($cid_imgs[4][$j].$val, $cid_array) )
2541                        {
2542                                $cid_array[$cid_imgs[4][$j].$val] = base_convert(microtime(), 10, 36);
2543                        }
2544                        $cid = $cid_array[$cid_imgs[4][$j].$val];
2545
2546                        $mail->Body = str_replace($cid_imgs[1][$j], "cid:".$cid, $mail->Body);
2547
2548                        $count    = strlen($cid_imgs[6][$j]);
2549                        $position = substr($cid_imgs[6][$j], 2, $count);
2550                        $position--;
2551                                       
2552                        $attach_img = $forwarding_attachments[$position];
2553                        $file_description = unserialize(rawurldecode($attach_img));
2554                       
2555                        if (is_array($file_description))
2556                                foreach($file_description as $i => $descriptor)                         
2557                                        $file_description[$i]  = eregi_replace('\'*\'','',$descriptor);
2558
2559                        // The image is not in the same mail?
2560                        if ($msg_uid != $cid_imgs[4][$j])
2561                        {
2562                                $fileContent = $this->get_forwarding_attachment($cid_imgs[2][$j], $cid_imgs[4][$j], $cid_imgs[6][$j], 'base64');
2563                                $fileName = ($msg_uid != 'undefined') ? "image_".($j).".jpg" : $file_description[2];
2564                                $fileCode = "base64";
2565                                $fileType = "image/jpg";
2566                                $file_attached[0] = $cid_imgs[2][$j];
2567                                $file_attached[1] = $cid_imgs[4][$j];
2568                                $file_attached[2] = $fileName;
2569                                $file_attached[3] = '0.'.($j+1);
2570                                $file_attached[4] = 'base64';
2571                                $file_attached[5] = strlen($fileContent); //Size of file
2572                                $file_attached[6] = $cid_imgs[6][$j];
2573                                $return_forward[] = $file_attached;
2574
2575                                if ($file_attached[3] == $file_description[3] || $msg_uid == 'undefined')
2576                                        unset($forwarding_attachments[$position]);
2577                               
2578                        }
2579                        else
2580                        {
2581                                $fileContent = $this->get_forwarding_attachment($file_description[0], $msg_uid, $file_description[3], 'base64');
2582                                $fileName = $file_description[2];
2583                                $fileCode = $file_description[4];
2584                                $file_description[3] = '0.'.($j+1);
2585                                $file_description[6] = $cid_imgs[6][$j];
2586                                $fileType = $this->get_file_type($file_description[2]);
2587                                unset($forwarding_attachments[$position]);
2588                                if (!empty($file_description))
2589                                {
2590                                        $file_description[5] = strlen($fileContent); //Size of file
2591                                        $return_forward[] = $file_description;
2592                                }
2593                        }
2594                        $tempDir = '/tmp';
2595                        $file = "cidimage_".$_SESSION[ 'phpgw_session' ][ 'session_id' ].$cid_imgs[6][$j].".dat";                                       
2596                        $f = fopen($tempDir.'/'.$file,"w");
2597                        fputs($f,$fileContent);
2598                        fclose($f);
2599
2600                        if ($fileContent)
2601                                $mail->AddEmbeddedImage($tempDir.'/'.$file, $cid, $fileName, $fileCode, $fileType);                                     
2602                }
2603                       
2604                return $return_forward;
2605        }
2606        function add_recipients_cert($full_address)
2607        {
2608                $result = "";
2609                $parse_address = imap_rfc822_parse_adrlist($full_address, "");
2610                foreach ($parse_address as $val)
2611                {
2612                        //echo "<script language=\"javascript\">javascript:alert('".$val->mailbox."@".$val->host."');</script>";
2613                        if ($val->mailbox == "INVALID_ADDRESS")
2614                                continue;
2615                        if ($val->mailbox == "UNEXPECTED_DATA_AFTER_ADDRESS")
2616                                continue;
2617                        if (empty($val->personal))
2618                                $result .= $val->mailbox."@".$val->host . ",";
2619                        else
2620                                $result .= $val->mailbox."@".$val->host . ",";
2621                }
2622
2623                return substr($result,0,-1);
2624        }
2625
2626        function add_recipients($recipient_type, $full_address, $mail)
2627        {
2628                //remove a comma if is given two unexpected commas
2629                $full_address = preg_replace("/, ?,/",",",$full_address);
2630                $parse_address = imap_rfc822_parse_adrlist($full_address, "");
2631                foreach ($parse_address as $val)
2632                {
2633                        //echo "<script language=\"javascript\">javascript:alert('".$val->mailbox."@".$val->host."');</script>";
2634                        if ($val->mailbox == "INVALID_ADDRESS")
2635                                continue;
2636
2637                        if (empty($val->personal))
2638                        {
2639                                switch($recipient_type)
2640                                {
2641                                        case "to":
2642                                                $mail->AddAddress($val->mailbox."@".$val->host);
2643                                                break;
2644                                        case "cc":
2645                                                $mail->AddCC($val->mailbox."@".$val->host);
2646                                                break;
2647                                        case "cco":
2648                                                $mail->AddBCC($val->mailbox."@".$val->host);
2649                                                break;
2650                                }
2651                        }
2652                        else
2653                        {
2654                                switch($recipient_type)
2655                                {
2656                                        case "to":
2657                                                $mail->AddAddress($val->mailbox."@".$val->host, $val->personal);
2658                                                break;
2659                                        case "cc":
2660                                                $mail->AddCC($val->mailbox."@".$val->host, $val->personal);
2661                                                break;
2662                                        case "cco":
2663                                                $mail->AddBCC($val->mailbox."@".$val->host, $val->personal);
2664                                                break;
2665                                }
2666                        }
2667                }
2668                return true;
2669        }
2670
2671        function get_forwarding_attachment($msg_folder, $msg_number, $msg_part, $encoding)
2672        {
2673            include_once $_SESSION['rootPath'].'/expressoMail1_2/inc/class.attachment.inc.php';
2674            $attachment = new attachment();
2675            $attachment->setStructureFromMail($msg_folder, $msg_number);
2676            return $attachment->getAttachment($msg_part);
2677        }
2678
2679        function del_last_caracter($string)
2680        {
2681                $string = substr($string,0,(strlen($string) - 1));
2682                return $string;
2683        }
2684
2685        function del_last_two_caracters($string)
2686        {
2687                $string = substr($string,0,(strlen($string) - 2));
2688                return $string;
2689        }
2690
2691        function messages_sort($sort_box_type,$sort_box_reverse, $search_box_type,$offsetBegin,$offsetEnd)
2692        {
2693                if ($sort_box_type != "SORTFROM" && $search_box_type!= "FLAGGED"){
2694                        $imapsort = imap_sort($this->mbox,constant($sort_box_type),$sort_box_reverse,SE_UID,$search_box_type);
2695                        foreach($imapsort as $iuid)
2696                                $sort[$iuid] = "";
2697                       
2698                        if ($offsetBegin == -1 && $offsetEnd ==-1 )
2699                                $slice_array = false;
2700                        else
2701                                $slice_array = true;
2702                }
2703                else
2704                {
2705                        $sort = array();
2706                        if ($offsetBegin > $offsetEnd) {$temp=$offsetEnd; $offsetEnd=$offsetBegin; $offsetBegin=$temp;}
2707                        $num_msgs = imap_num_msg($this->mbox);
2708                        if ($offsetEnd >  $num_msgs) {$offsetEnd = $num_msgs;}
2709                        $slice_array = true;
2710
2711                        for ($i=$num_msgs; $i>0; $i--)
2712                        {
2713                                if ($sort_box_type == "SORTARRIVAL" && $sort_box_reverse && count($sort) >= $offsetEnd)
2714                                        break;
2715                                $iuid = @imap_uid($this->mbox,$i);
2716                                $header = $this->get_header($iuid);
2717                                // List UNSEEN messages.
2718                                if($search_box_type == "UNSEEN" &&  (!trim($header->Recent) && !trim($header->Unseen))){
2719                                        continue;
2720                                }
2721                                // List SEEN messages.
2722                                elseif($search_box_type == "SEEN" && (trim($header->Recent) || trim($header->Unseen))){
2723                                        continue;
2724                                }
2725                                // List ANSWERED messages.
2726                                elseif($search_box_type == "ANSWERED" && !trim($header->Answered)){
2727                                        continue;
2728                                }
2729                                // List FLAGGED messages.
2730                                elseif($search_box_type == "FLAGGED" && !trim($header->Flagged)){
2731                                        continue;
2732                                }
2733
2734                                if($sort_box_type=='SORTFROM') {
2735                                        if (($header->from[0]->mailbox . "@" . $header->from[0]->host) == $_SESSION['phpgw_info']['expressomail']['user']['email'])
2736                                                $from = $header->to;
2737                                        else
2738                                                $from = $header->from;
2739
2740                                        $tmp = imap_mime_header_decode($from[0]->personal);
2741
2742                                        if ($tmp[0]->text != "")
2743                                                $sort[$iuid] = $tmp[0]->text;
2744                                        else
2745                                                $sort[$iuid] = $from[0]->mailbox . "@" . $from[0]->host;
2746                                }
2747                                else if($sort_box_type=='SORTSUBJECT') {
2748                                        $sort[$iuid] = $header->subject;
2749                                }
2750                                else if($sort_box_type=='SORTSIZE') {
2751                                        $sort[$iuid] = $header->Size;
2752                                }
2753                                else {
2754                                        $sort[$iuid] = $header->udate;
2755                                }
2756
2757                        }
2758                        natcasesort($sort);
2759
2760                        if ($sort_box_reverse)
2761                                $sort = array_reverse($sort,true);
2762                }
2763
2764                if(!is_array($sort))
2765                        $sort = array();
2766
2767
2768                if ($slice_array)
2769                        $sort = array_slice($sort,$offsetBegin-1,$offsetEnd-($offsetBegin-1),true);
2770
2771
2772                return $sort;
2773
2774        }
2775
2776
2777        function move_search_messages($params){
2778                $params['selected_messages'] = urldecode($params['selected_messages']);
2779                $params['new_folder'] = urldecode($params['new_folder']);
2780                $params['new_folder_name'] = urldecode($params['new_folder_name']);
2781                $sel_msgs = explode(",", $params['selected_messages']);
2782                @reset($sel_msgs);
2783                $sorted_msgs = array();
2784                foreach($sel_msgs as $idx => $sel_msg) {
2785                        $sel_msg = explode(";", $sel_msg);
2786                         if(array_key_exists($sel_msg[0], $sorted_msgs)){
2787                                $sorted_msgs[$sel_msg[0]] .= ",".$sel_msg[1];
2788                         }
2789                         else {
2790                                $sorted_msgs[$sel_msg[0]] = $sel_msg[1];
2791                         }
2792                }
2793                @ksort($sorted_msgs);
2794                $last_return = false;
2795                foreach($sorted_msgs as $folder => $msgs_number) {
2796                        $params['msgs_number'] = $msgs_number;
2797                        $params['folder'] = $folder;
2798                        if($params['new_folder'] && $folder != $params['new_folder']){
2799                                $last_return = $this -> move_messages($params);
2800                        }
2801                        elseif(!$params['new_folder'] || $params['delete'] ){
2802                                $last_return = $this -> delete_msgs($params);
2803                                $last_return['deleted'] = true;
2804                        }
2805                }
2806                return $last_return;
2807        }
2808
2809        function move_messages($params)
2810        {
2811                $folder = $params['folder'];
2812                $mbox_stream = $this->open_mbox($folder);
2813                $newmailbox = ($params['new_folder']);
2814                $newmailbox = mb_convert_encoding($newmailbox, "UTF7-IMAP","ISO_8859-1");
2815                $new_folder_name = $params['new_folder_name'];
2816                $msgs_number = $params['msgs_number'];
2817                $return = array('msgs_number' => $msgs_number,
2818                                                'folder' => $folder,
2819                                                'new_folder_name' => $new_folder_name,
2820                                                'border_ID' => $params['border_ID'],
2821                                                'status' => true); //Status foi adicionado para validar as permissoes ACL
2822
2823                //Este bloco tem a finalidade de averiguar as permissoes para pastas compartilhadas
2824        if (substr($folder,0,4) == 'user'){
2825                $acl = $this->getacltouser($folder);
2826                /*
2827                 *   l - lookup (mailbox is visible to LIST/LSUB commands)
2828                 *   r - read (SELECT the mailbox, perform CHECK, FETCH, PARTIAL, SEARCH, COPY from mailbox)
2829                 *   s - keep seen/unseen information across sessions (STORE SEEN flag)
2830                 *   w - write (STORE flags other than SEEN and DELETED)
2831                 *   i - insert (perform APPEND, COPY into mailbox)
2832                 *   p - post (send mail to submission address for mailbox, not enforced by IMAP4 itself)
2833                 *   c - create (CREATE new sub-mailboxes in any implementation-defined hierarchy)
2834                 *   d - delete (STORE DELETED flag, perform EXPUNGE)
2835                 *   a - administer (perform SETACL)
2836                        */
2837                        if (strpos($acl, "d") === false){
2838                                $return['status'] = false;
2839                                return $return;
2840                        }
2841        }
2842        //Este bloco tem a finalidade de transformar o CPF das pastas compartilhadas em common name
2843        if ($_SESSION['phpgw_info']['user']['preferences']['expressoMail']['uid2cn']){
2844            if (substr($new_folder_name,0,4) == 'user'){
2845                $this->ldap = new ldap_functions();
2846                $tmp_folder_name = explode($this->imap_delimiter, $new_folder_name);
2847                $return['new_folder_name'] = array_pop($tmp_folder_name);
2848                if( $cn = $this->ldap->uid2cn($return['new_folder_name']))
2849                {
2850                    $return['new_folder_name'] = $cn;
2851                }
2852            }
2853        }
2854
2855                // Caso estejamos no box principal, nao eh necessario pegar a informacao da mensagem anterior.
2856                if (($params['get_previous_msg']) && ($params['border_ID'] != 'null') && ($params['border_ID'] != ''))
2857                {
2858                        $return['previous_msg'] = $this->get_info_previous_msg($params);
2859                        // Fix problem in unserialize function JS.
2860                        $return['previous_msg']['body'] = str_replace(array('{','}'), array('&#123;','&#125;'), $return['previous_msg']['body']);
2861                }
2862
2863                $mbox_stream = $this->open_mbox($folder);
2864                if(imap_mail_move($mbox_stream, $msgs_number, $newmailbox, CP_UID)) {
2865                        imap_expunge($mbox_stream);
2866                        if($mbox_stream)
2867                                imap_close($mbox_stream);
2868                        return $return;
2869                }else {
2870                        if(strstr(imap_last_error(),'Over quota')) {
2871                                $accountID      = $_SESSION['phpgw_info']['expressomail']['email_server']['imapAdminUsername'];
2872                                $pass           = $_SESSION['phpgw_info']['expressomail']['email_server']['imapAdminPW'];
2873                                $userID         = $_SESSION['phpgw_info']['expressomail']['user']['userid'];
2874                                $server         = $_SESSION['phpgw_info']['expressomail']['email_server']['imapServer'];
2875                                $mbox           = @imap_open("{".$this->imap_server.":".$this->imap_port.$this->imap_options."}INBOX", $accountID, $pass) or die(serialize(array('imap_error' => $this->parse_error(imap_last_error()))));
2876                                if(!$mbox)
2877                                        return imap_last_error();
2878                                $quota  = imap_get_quotaroot($mbox_stream, "INBOX");
2879                                if(! imap_set_quota($mbox, "user".$this->imap_delimiter.$userID, 2.1 * $quota['usage'])) {
2880                                        if($mbox_stream)
2881                                                imap_close($mbox_stream);
2882                                        if($mbox)
2883                                                imap_close($mbox);
2884                                        return "move_messages(): Error setting quota for MOVE or DELETE!! ". "user".$this->imap_delimiter.$userID." line ".__LINE__."\n";
2885                                }
2886                                if(imap_mail_move($mbox_stream, $msgs_number, $newmailbox, CP_UID)) {
2887                                        imap_expunge($mbox_stream);
2888                                        if($mbox_stream)
2889                                                imap_close($mbox_stream);
2890                                        // return to original quota limit.
2891                                        if(!imap_set_quota($mbox, "user".$this->imap_delimiter.$userID, $quota['limit'])) {
2892                                                if($mbox)
2893                                                        imap_close($mbox);
2894                                                return "move_messages(): Error setting quota for MOVE or DELETE!! line ".__LINE__."\n";
2895                                        }
2896                                        return $return;
2897                                }
2898                                else {
2899                                        if($mbox_stream)
2900                                                imap_close($mbox_stream);
2901                                        if(!imap_set_quota($mbox, "user".$this->imap_delimiter.$userID, $quota['limit'])) {
2902                                                if($mbox)
2903                                                        imap_close($mbox);
2904                                                return "move_messages(): Error setting quota for MOVE or DELETE!! line ".__LINE__."\n";
2905                                        }
2906                                        return imap_last_error();
2907                                }
2908
2909                        }
2910                        else {
2911                                if($mbox_stream)
2912                                        imap_close($mbox_stream);
2913                                return "move_messages() line ".__LINE__.": ". imap_last_error()." folder:".$newmailbox;
2914                        }
2915                }
2916        }
2917
2918        function save_msg($params)
2919        {
2920
2921        include_once("class.phpmailer.php");
2922                $mail = new PHPMailer();
2923                include_once("class.db_functions.inc.php");
2924                $toaddress    = $params['input_to'];
2925                $ccaddress    = $params['input_cc'];
2926                $ccoaddress = $params['input_cco'];
2927        $return_receipt = $params['input_return_receipt'];
2928        $is_important = $params['input_important_message'];
2929                $subject      = $params['input_subject'];
2930                $msg_uid      = $params['msg_id'];
2931                $body         = $params['body'];
2932                $body = str_replace("%nbsp;","&nbsp;",$body);
2933                $body = preg_replace("/\n/"," ",$body);
2934                $body = preg_replace("/\r/","",$body);
2935                $forwarding_attachments = $params['forwarding_attachments'];
2936                $attachments  = $params['FILES'];
2937                $return_files = $params['FILES'];
2938
2939                 
2940                $folder = $params['folder'];
2941                $folder = mb_convert_encoding($folder, "UTF7-IMAP","ISO_8859-1");               
2942                // Fix problem with cyrus delimiter changes.
2943                // Dots in names: enabled/disabled.                             
2944                $folder = @eregi_replace("INBOX/", "INBOX".$this->imap_delimiter, $folder);
2945                $folder = @eregi_replace("INBOX.", "INBOX".$this->imap_delimiter, $folder);
2946                // End Fix.
2947                                       
2948                $mail->SaveMessageInFolder = $folder;
2949                $mail->SMTPDebug = false;
2950                                               
2951                $mail->IsSMTP();
2952                $mail->Host = $_SESSION['phpgw_info']['expressomail']['email_server']['smtpServer'];
2953                $mail->Port = $_SESSION['phpgw_info']['expressomail']['email_server']['smtpPort'];
2954                $mail->From = $_SESSION['phpgw_info']['expressomail']['user']['email'];
2955                $mail->FromName = $_SESSION['phpgw_info']['expressomail']['user']['fullname'];
2956               
2957                $mail->Sender = $mail->From;
2958                $mail->SenderName = $mail->FromName;
2959                $mail->FromName = $_SESSION['phpgw_info']['expressomail']['user']['fullname'];
2960                $mail->From =  $_SESSION['phpgw_info']['expressomail']['user']['email'];
2961                               
2962                $this->add_recipients("to", $toaddress, &$mail);
2963                $this->add_recipients("cc", $ccaddress, &$mail);
2964                $mail->Subject = $subject;
2965                $mail->IsHTML(true);
2966                $mail->Body = $body;
2967
2968                $return_forward = $this->buildEmbeddedImages($mail,$msg_uid,$forwarding_attachments);
2969                $imagesParts = array();
2970               
2971                foreach ($return_forward as $value)
2972                        $imagesParts[$value[6]] = $value[3];   
2973
2974                //Build Forwarding Attachments!!!                   
2975                foreach($forwarding_attachments as $forwarding_attachment)
2976                {
2977                        $file_description = unserialize(rawurldecode($forwarding_attachment));
2978                        $file_description = array_values($file_description);
2979                                       
2980                                foreach($file_description as $i => $descriptor){                                 
2981                                                        $file_description[$i] = eregi_replace('\'*\'','',$descriptor);
2982                                                }
2983                                                $fileContent = $this->get_forwarding_attachment($file_description[0], $file_description[1], $file_description[3],$file_description[4]);
2984                                                $fileName = $file_description[2];
2985                                                 
2986                                                $file_description[5] = strlen($fileContent); //Size of file
2987                                                $return_forward[] = $file_description;
2988                                         
2989                                                $mail->AddStringAttachment($fileContent, $fileName, $file_description[4], $this->get_file_type($file_description[2]));
2990                }
2991               
2992                if ((count($return_forward) > 0) && (count($return_files) > 0))
2993                {
2994                        $return_files = array_merge_recursive($return_forward,$return_files);
2995                }
2996                else if (count($return_files) < 1)
2997                {
2998                        $return_files = $return_forward;
2999                }
3000
3001                //Build Uploading Attachments!!!
3002                $sizeof_attachments = count($attachments);
3003                if ($sizeof_attachments)
3004                {
3005                        foreach ($attachments as $numb => $attach)
3006                        {
3007                                if ($numb == ($sizeof_attachments-1) && $params['insertImg'] == 'true')
3008                                { // Auto-resize image
3009                                        list($width, $height,$image_type) = getimagesize($attach['tmp_name']);
3010                                        switch ($image_type)
3011                                        {
3012                                                // Do not corrupt animated gif
3013                                                //case 1: $image_big = imagecreatefromgif($attach['tmp_name']);break;
3014                                                case 2:
3015                                                        $image_big = imagecreatefromjpeg($attach['tmp_name']);  break;
3016                                                case 3:
3017                                                        $image_big = imagecreatefrompng($attach['tmp_name']); break;
3018                                                case 6:
3019                                                        require_once("gd_functions.php");
3020                                                        $image_big = imagecreatefrombmp($attach['tmp_name']); break;
3021                                                default:
3022                                                        $mail->AddAttachment($attach['tmp_name'], $attach['name'], "base64", $this->get_file_type($attach['name']));
3023                                                        break;
3024                                        }
3025                                        header('Content-type: image/jpeg');
3026                                        $max_resolution = $_SESSION['phpgw_info']['user']['preferences']['expressoMail']['image_size'];
3027                                        $max_resolution = ($max_resolution==""?'65536':$max_resolution);
3028                                        if ($width < $max_resolution && $height < $max_resolution)
3029                                        {
3030                                                $new_width = $width;
3031                                                $new_height = $height;
3032                                        }
3033                                        else if ($width > $max_resolution)
3034                                        {
3035                                                $new_width = $max_resolution;
3036                                                $new_height = $height*($new_width/$width);
3037                                        }
3038                                        else
3039                                        {
3040                                                $new_height = $max_resolution;
3041                                                $new_width = $width*($new_height/$height);
3042                                        }
3043                                        $image_new = imagecreatetruecolor($new_width, $new_height);
3044                                        imagecopyresampled($image_new, $image_big, 0, 0, 0, 0, $new_width, $new_height, $width, $height);
3045                                        $tmpDir = '/tmp';
3046
3047                                       // $tmpDir = ini_get("session.save_path");
3048                                        $_file = "/cidimage_".$_SESSION[ 'phpgw_session' ][ 'session_id' ].".dat";
3049                                        imagejpeg($image_new,$tmpDir.$_file, 85);
3050                                        $mail->AddAttachment($tmpDir.$_file, $attach['name'], "base64", $this->get_file_type($tmpDir.$_file));
3051                                }
3052                                else
3053                                        $mail->AddAttachment($attach['tmp_name'], $attach['name'], "base64", $this->get_file_type($attach['name']));
3054                               
3055                        }
3056                }
3057               
3058                if(!empty($mail->AltBody))
3059                    $mail->ContentType = "multipart/alternative";
3060
3061                $mail->error_count = 0; // reset errors
3062                $mail->SetMessageType();
3063                $header = $mail->CreateHeader();
3064                $body   = $mail->CreateBody();
3065
3066                $mbox_stream = $this->open_mbox($folder);       
3067                $new_header  = str_replace("\n", "\r\n", $header);
3068                $new_body    = str_replace("\n", "\r\n", $body);
3069                $return['append'] = imap_append($mbox_stream, "{".$this->imap_server.":".$this->imap_port."}".$folder, $new_header . $new_body, "\\Seen \\Draft");
3070                $status      = imap_status($mbox_stream, "{".$this->imap_server.":".$this->imap_port."}".$folder, SA_UIDNEXT);
3071                $return['msg_no'] = $status->uidnext - 1;
3072                $return['folder_id'] = $folder;
3073                $return['imagesParts'] = $imagesParts;
3074
3075                if($mbox_stream)
3076                        imap_close($mbox_stream);
3077                       
3078                if (is_array($return_files))
3079                {
3080                        foreach ($return_files as $index => $_attachment)
3081                        {
3082                                if (array_key_exists("name", $_attachment))
3083                                {
3084                                        unset($return_files[$index]);
3085                                        $return_files[$index] = $_attachment['name']."_SIZE_".$return_files[$index][1] = $_attachment['size'];
3086                                }
3087                                else
3088                                {
3089                                        unset($return_files[$index]);
3090                                        $return_files[$index] = $_attachment[2]."_SIZE_". $return_files[$index][1] = $_attachment[5];
3091                                }
3092                        }
3093                }
3094               
3095                $return['files'] = serialize($return_files);
3096                $return["subject"] = $subject;
3097                               
3098                if (!$return['append'])
3099                        $return['append'] = imap_last_error();
3100
3101                return $return;
3102        }
3103
3104        function set_messages_flag($params)
3105        {
3106                $folder = $params['folder'];
3107                $msgs_to_set = $params['msgs_to_set'];
3108                $flag = $params['flag'];
3109                $return = array();
3110                $return["msgs_to_set"] = $msgs_to_set;
3111                $return["flag"] = $flag;
3112
3113                if(!$this->mbox && !is_resource($this->mbox))
3114                        $this->mbox = $this->open_mbox($folder);
3115
3116                if ($flag == "unseen")
3117                        $return["status"] = imap_clearflag_full($this->mbox, $msgs_to_set, "\\Seen", ST_UID);
3118                elseif ($flag == "seen")
3119                        $return["status"] = imap_setflag_full($this->mbox, $msgs_to_set, "\\Seen", ST_UID);
3120                elseif ($flag == "answered"){
3121                        $return["status"] = imap_setflag_full($this->mbox, $msgs_to_set, "\\Answered", ST_UID);
3122                        imap_clearflag_full($this->mbox, $msgs_to_set, "\\Draft", ST_UID);
3123                }
3124                elseif ($flag == "forwarded")
3125                        $return["status"] = imap_setflag_full($this->mbox, $msgs_to_set, "\\Answered \\Draft", ST_UID);
3126                elseif ($flag == "flagged")
3127                        $return["status"] = imap_setflag_full($this->mbox, $msgs_to_set, "\\Flagged", ST_UID);
3128                elseif ($flag == "unflagged") {
3129                        $flag_importance = false;
3130                        $msgs_number = explode(",",$msgs_to_set);
3131                        $unflagged_msgs = "";
3132                        foreach($msgs_number as $msg_number) {
3133                                preg_match('/importance *: *(.*)\r/i',
3134                                        imap_fetchheader($this->mbox, imap_msgno($this->mbox, $msg_number))
3135                                        ,$importance);
3136                                if(strtolower($importance[1])=="high" && $_SESSION['phpgw_info']['user']['preferences']['expressoMail']['use_important_flag']) {
3137                                        $flag_importance=true;
3138                                }
3139                                else {
3140                                        $unflagged_msgs.=$msg_number.",";
3141                                }
3142                        }
3143
3144                        if($unflagged_msgs!="") {
3145                                imap_clearflag_full($this->mbox,substr($unflagged_msgs,0,strlen($unflagged_msgs)-1), "\\Flagged", ST_UID);
3146                                $return["msgs_unflageds"] = substr($unflagged_msgs,0,strlen($unflagged_msgs)-1);
3147                        }
3148                        else {
3149                                $return["msgs_unflageds"] = false;
3150                        }
3151
3152                        if($flag_importance && $_SESSION['phpgw_info']['user']['preferences']['expressoMail']['use_important_flag']) {
3153                                $return["status"] = false;
3154                                $return["msg"] = $this->functions->getLang("At least one of selected message cant be marked as normal");
3155                        }
3156                        else {
3157                                $return["status"] = true;
3158                        }
3159                }
3160
3161                if($this->mbox && is_resource($this->mbox))
3162                        imap_close($this->mbox);
3163                return $return;
3164        }
3165
3166        function get_file_type($file_name)
3167        {
3168                $file_name = strtolower($file_name);
3169                $strFileType = strrev(substr(strrev($file_name),0,4));
3170                if ($strFileType == ".asf")
3171                        return "video/x-ms-asf";
3172                if ($strFileType == ".avi")
3173                        return "video/avi";
3174                if ($strFileType == ".doc")
3175                        return "application/msword";
3176                if ($strFileType == ".zip")
3177                        return "application/zip";
3178                if ($strFileType == ".xls")
3179                        return "application/vnd.ms-excel";
3180                if ($strFileType == ".gif")
3181                        return "image/gif";
3182                if ($strFileType == ".jpg" || $strFileType == "jpeg")
3183                        return "image/jpeg";
3184                if ($strFileType == ".png")
3185                        return "image/png";
3186                if ($strFileType == ".wav")
3187                        return "audio/wav";
3188                if ($strFileType == ".mp3")
3189                        return "audio/mpeg3";
3190                if ($strFileType == ".mpg" || $strFileType == "mpeg")
3191                        return "video/mpeg";
3192                if ($strFileType == ".rtf")
3193                        return "application/rtf";
3194                if ($strFileType == ".htm" || $strFileType == "html")
3195                        return "text/html";
3196                if ($strFileType == ".xml")
3197                        return "text/xml";
3198                if ($strFileType == ".xsl")
3199                        return "text/xsl";
3200                if ($strFileType == ".css")
3201                        return "text/css";
3202                if ($strFileType == ".php")
3203                        return "text/php";
3204                if ($strFileType == ".asp")
3205                        return "text/asp";
3206                if ($strFileType == ".pdf")
3207                        return "application/pdf";
3208                if ($strFileType == ".txt")
3209                        return "text/plain";
3210                if ($strFileType == ".wmv")
3211                        return "video/x-ms-wmv";
3212                if ($strFileType == ".sxc")
3213                        return "application/vnd.sun.xml.calc";
3214                if ($strFileType == ".stc")
3215                        return "application/vnd.sun.xml.calc.template";
3216                if ($strFileType == ".sxd")
3217                        return "application/vnd.sun.xml.draw";
3218                if ($strFileType == ".std")
3219                        return "application/vnd.sun.xml.draw.template";
3220                if ($strFileType == ".sxi")
3221                        return "application/vnd.sun.xml.impress";
3222                if ($strFileType == ".sti")
3223                        return "application/vnd.sun.xml.impress.template";
3224                if ($strFileType == ".sxm")
3225                        return "application/vnd.sun.xml.math";
3226                if ($strFileType == ".sxw")
3227                        return "application/vnd.sun.xml.writer";
3228                if ($strFileType == ".sxq")
3229                        return "application/vnd.sun.xml.writer.global";
3230                if ($strFileType == ".stw")
3231                        return "application/vnd.sun.xml.writer.template";
3232
3233
3234                return "application/octet-stream";
3235        }
3236
3237        function htmlspecialchars_encode($str)
3238        {
3239                return  str_replace( array('&', '"','\'','<','>','{','}'), array('&amp;','&quot;','&#039;','&lt;','&gt;','&#123;','&#125;'), $str);
3240        }
3241        function htmlspecialchars_decode($str)
3242        {
3243                return  str_replace( array('&amp;','&quot;','&#039;','&lt;','&gt;','&#123;','&#125;'), array('&', '"','\'','<','>','{','}'), $str);
3244        }
3245
3246        function get_msgs($folder, $sort_box_type, $search_box_type, $sort_box_reverse,$offsetBegin = 0,$offsetEnd = 0)
3247        {
3248                if(!$this->mbox || !is_resource($this->mbox))
3249                        $this->mbox = $this->open_mbox($folder);
3250
3251                return $this->messages_sort($sort_box_type,$sort_box_reverse, $search_box_type,$offsetBegin,$offsetEnd);
3252        }
3253
3254        function get_info_next_msg($params)
3255        {
3256                $msg_number = $params['msg_number'];
3257                $folder = $params['msg_folder'];
3258                $sort_box_type = $params['sort_box_type'];
3259                $sort_box_reverse = $params['sort_box_reverse'];
3260                $reuse_border = $params['reuse_border'];
3261                $search_box_type = $params['search_box_type'] != "ALL" && $params['search_box_type'] != "" ? $params['search_box_type'] : false;
3262                $sort_array_msg = $this -> get_msgs($folder, $sort_box_type, $search_box_type, $sort_box_reverse);
3263
3264                $success = false;
3265                if (is_array($sort_array_msg))
3266                {
3267                        foreach ($sort_array_msg as $i => $value){
3268                                if ($value == $msg_number)
3269                                {
3270                                        $success = true;
3271                                        break;
3272                                }
3273                        }
3274                }
3275
3276                if (! $success || $i >= sizeof($sort_array_msg)-1)
3277                {
3278                        $params['status'] = 'false';
3279                        $params['command_to_exec'] = "delete_border('". $reuse_border ."');";
3280                        return $params;
3281                }
3282
3283                $params = array();
3284                $params['msg_number'] = $sort_array_msg[($i+1)];
3285                $params['msg_folder'] = $folder;
3286
3287                $return = $this->get_info_msg($params);
3288                $return["reuse_border"] = $reuse_border;
3289                return $return;
3290        }
3291
3292        function get_info_previous_msg($params)
3293        {
3294                $msg_number = $params['msgs_number'];
3295                $folder = $params['folder'];
3296                $sort_box_type = $params['sort_box_type'];
3297                $sort_box_reverse = $params['sort_box_reverse'];
3298                $reuse_border = $params['reuse_border'];
3299                $search_box_type = $params['search_box_type'] != "ALL" && $params['search_box_type'] != "" ? $params['search_box_type'] : false;
3300                $sort_array_msg = $this -> get_msgs($folder, $sort_box_type, $search_box_type, $sort_box_reverse);
3301
3302                $success = false;
3303                if (is_array($sort_array_msg))
3304                {
3305                        foreach ($sort_array_msg as $i => $value){
3306                                if ($value == $msg_number)
3307                                {
3308                                        $success = true;
3309                                        break;
3310                                }
3311                        }
3312                }
3313                if (! $success || $i == 0)
3314                {
3315                        $params['status'] = 'false';
3316                        $params['command_to_exec'] = "delete_border('". $reuse_border ."');";
3317                        return $params;
3318                }
3319
3320                $params = array();
3321                $params['msg_number'] = $sort_array_msg[($i-1)];
3322                $params['msg_folder'] = $folder;
3323
3324                $return = $this->get_info_msg($params);
3325                $return["reuse_border"] = $reuse_border;
3326                return $return;
3327        }
3328
3329        // This function updates the values: quota, paging and new messages menu.
3330        function get_menu_values($params){
3331                $return_array = array();
3332                $return_array = $this->get_quota($params);
3333
3334                $mbox_stream = $this->open_mbox($params['folder']);
3335                $return_array['num_msgs'] = imap_num_msg($mbox_stream);
3336                if($mbox_stream)
3337                        imap_close($mbox_stream);
3338
3339                return $return_array;
3340        }
3341
3342        function get_quota($params){
3343                // folder_id = user/{uid} for shared folders
3344                if(substr($params['folder_id'],0,5) != 'INBOX' && preg_match('/user\\'.$this->imap_delimiter.'/i', $params['folder_id'])){
3345                        $array_folder =  explode($this->imap_delimiter,$params['folder_id']);
3346                        $folder_id = "user".$this->imap_delimiter.$array_folder[1];
3347                }
3348                // folder_id = INBOX for inbox folders
3349                else
3350                        $folder_id = "INBOX";
3351
3352                if(!$this->mbox || !is_resource($this->mbox))
3353                        $this->mbox = $this->open_mbox();
3354
3355                $quota = imap_get_quotaroot($this->mbox, $folder_id);
3356                if($this->mbox && is_resource($this->mbox))
3357                        imap_close($this->mbox);
3358
3359                if (!$quota){
3360                        return array(
3361                                'quota_percent' => 0,
3362                                'quota_used' => 0,
3363                                'quota_limit' =>  0
3364                        );
3365                }
3366
3367                if(count($quota) && $quota['limit']) {
3368                        $quota_limit = $quota['limit'];
3369                        $quota_used  = $quota['usage'];
3370                        if($quota_used >= $quota_limit)
3371                        {
3372                                $quotaPercent = 100;
3373                        }
3374                        else
3375                        {
3376                        $quotaPercent = ($quota_used / $quota_limit)*100;
3377                        $quotaPercent = (($quotaPercent)* 100 + .5 )* .01;
3378                        }
3379                        return array(
3380                                'quota_percent' => floor($quotaPercent),
3381                                'quota_used' => $quota_used,
3382                                'quota_limit' =>  $quota_limit
3383                        );
3384                }
3385                else
3386                        return array();
3387        }
3388
3389        function send_notification($params){
3390                include("../header.inc.php");
3391                require_once("class.phpmailer.php");
3392                $mail = new PHPMailer();
3393
3394                $toaddress = $params['notificationto'];
3395
3396                $subject = lang("Read receipt: %1",$params['subject']);
3397                $body = lang("Your message: %1",$params['subject']) . '<br>';
3398                $body .= lang("Received in: %1",date("d/m/Y H:i",$params['date'])) . '<br>';
3399                $body .= lang("Has been read by: %1 &lt; %2 &gt; at %3", $_SESSION['phpgw_info']['expressomail']['user']['fullname'], $_SESSION['phpgw_info']['expressomail']['user']['email'], date("d/m/Y H:i"));
3400                $mail->SMTPDebug = false;
3401                $mail->IsSMTP();
3402                $mail->Host = $_SESSION['phpgw_info']['expressomail']['email_server']['smtpServer'];
3403                $mail->Port = $_SESSION['phpgw_info']['expressomail']['email_server']['smtpPort'];
3404                $mail->From = $_SESSION['phpgw_info']['expressomail']['user']['email'];
3405                $mail->FromName = $_SESSION['phpgw_info']['expressomail']['user']['fullname'];
3406                $mail->AddAddress($toaddress);
3407                $mail->Subject = $this->htmlspecialchars_decode($subject);
3408
3409                $mail->IsHTML(true);
3410                $mail->Body = $body;
3411
3412                if(!$mail->Send()){
3413                        return $mail->ErrorInfo;
3414                }
3415                else
3416                        return true;
3417        }
3418
3419        function empty_folder($params)
3420        {
3421                $folder = 'INBOX' . $this->imap_delimiter . $_SESSION['phpgw_info']['expressomail']['email_server'][$params['clean_folder']];
3422                $mbox_stream = $this->open_mbox($folder);
3423                $return = imap_delete($mbox_stream,'1:*');
3424                if($mbox_stream)
3425                        imap_close($mbox_stream, CL_EXPUNGE);
3426                return $return;
3427        }
3428
3429        function search($params)
3430        {
3431                include("class.imap_attachment.inc.php");
3432                $imap_attachment = new imap_attachment();
3433                $criteria = $params['criteria'];
3434                $return = array();
3435                $folders = $this->get_folders_list();
3436
3437                $j = 0;
3438                foreach($folders as $folder)
3439                {
3440                        $mbox_stream = $this->open_mbox($folder);
3441                        $messages = imap_search($mbox_stream, $criteria, SE_UID);
3442
3443                        if ($messages == '')
3444                                continue;
3445
3446                        $i = 0;
3447                        $return[$j] = array();
3448                        $return[$j]['folder_name'] = $folder['name'];
3449
3450                        foreach($messages as $msg_number)
3451                        {
3452                                $header = $this->get_header($msg_number);
3453                                if (!is_object($header))
3454                                        return false;
3455
3456                                $return[$j][$i]['msg_folder']   = $folder['name'];
3457                                $return[$j][$i]['msg_number']   = $msg_number;
3458                                $return[$j][$i]['Recent']               = $header->Recent;
3459                                $return[$j][$i]['Unseen']               = $header->Unseen;
3460                                $return[$j][$i]['Answered']     = $header->Answered;
3461                                $return[$j][$i]['Deleted']              = $header->Deleted;
3462                                $return[$j][$i]['Draft']                = $header->Draft;
3463                                $return[$j][$i]['Flagged']              = $header->Flagged;
3464
3465                                $date_msg = gmdate("d/m/Y",$header->udate);
3466                                if (gmdate("d/m/Y") == $date_msg)
3467                                        $return[$j][$i]['udate'] = gmdate("H:i",$header->udate);
3468                                else
3469                                        $return[$j][$i]['udate'] = $date_msg;
3470
3471                                $fromaddress = imap_mime_header_decode($header->fromaddress);
3472                                $return[$j][$i]['fromaddress'] = '';
3473                                foreach ($fromaddress as $tmp)
3474                                        $return[$j][$i]['fromaddress'] .= $this->replace_maior_menor($tmp->text);
3475
3476                                $from = $header->from;
3477                                $return[$j][$i]['from'] = array();
3478                                $tmp = imap_mime_header_decode($from[0]->personal);
3479                                $return[$j][$i]['from']['name'] = $tmp[0]->text;
3480                                $return[$j][$i]['from']['email'] = $from[0]->mailbox . "@" . $from[0]->host;
3481                                $return[$j][$i]['from']['full'] ='"' . $return[$j][$i]['from']['name'] . '" ' . '<' . $return[$j][$i]['from']['email'] . '>';
3482
3483                                $to = $header->to;
3484                                $return[$j][$i]['to'] = array();
3485                                $tmp = imap_mime_header_decode($to[0]->personal);
3486                                $return[$j][$i]['to']['name'] = $tmp[0]->text;
3487                                $return[$j][$i]['to']['email'] = $to[0]->mailbox . "@" . $to[0]->host;
3488                                $return[$j][$i]['to']['full'] ='"' . $return[$i]['to']['name'] . '" ' . '<' . $return[$i]['to']['email'] . '>';
3489
3490                                $subject = imap_mime_header_decode($header->fetchsubject);
3491                                $return[$j][$i]['subject'] = '';
3492                                foreach ($subject as $tmp)
3493                                        $return[$j][$i]['subject'] .= $tmp->text;
3494
3495                                $return[$j][$i]['Size'] = $header->Size;
3496                                $return[$j][$i]['reply_toaddress'] = $header->reply_toaddress;
3497
3498                                $return[$j][$i]['attachment'] = array();
3499                                $return[$j][$i]['attachment'] = $imap_attachment->get_attachment_headerinfo($mbox_stream, $msg_number);
3500
3501                                $i++;
3502                        }
3503                        $j++;
3504                        if($mbox_stream)
3505                                imap_close($mbox_stream);
3506                }
3507
3508                return $return;
3509        }
3510
3511
3512        function mobile_search($params)
3513        {
3514                include("class.imap_attachment.inc.php");
3515                $imap_attachment = new imap_attachment();
3516                $criterias = array ("TO","SUBJECT","FROM","CC");
3517                $return = array();
3518                if(!isset($params['folder'])) {
3519                        $folder_params = array("noSharedFolders"=>1);
3520                        if(isset($params['folderType']))
3521                                $folder_params['folderType'] = $params['folderType'];
3522                        $folders = $this->get_folders_list($folder_params);
3523                }
3524                else
3525                        $folders = array(0=>array('folder_id'=>$params['folder']));
3526                $num_msgs = 0;
3527                $max_msgs = $params['max_msgs'] + 1; //get one more because mobile paginate
3528                $return["msgs"] = array();
3529               
3530                //get max_msgs of each folder order by date and later order all messages together and retur only max_msgs msgs
3531                foreach($folders as $id =>$folder)
3532                {
3533                        if(strpos($folder['folder_id'],'user')===false && is_array($folder)) {
3534                                foreach($criterias as $criteria_fixed)
3535                                {
3536                                        $_filter = $criteria_fixed . ' "'.$params['filter'].'"';
3537
3538                                        $mbox_stream = $this->open_mbox($folder['folder_id']);
3539
3540                                        $messages = imap_sort($mbox_stream,SORTARRIVAL,1,SE_UID,$_filter);
3541                                       
3542                                        if ($messages == ''){
3543                                                if($mbox_stream)
3544                                                        imap_close($mbox_stream);
3545                                                continue;       
3546                                        }
3547                                       
3548                                        foreach($messages as $msg_number)
3549                                        {
3550                                                $temp = $this->get_info_head_msg($msg_number);
3551                                                if(!$temp)
3552                                                        return false;
3553                                                $temp['msg_folder'] = $folder['folder_id'];
3554                                                $return["msgs"][$num_msgs] = $temp;
3555                                                $num_msgs++;
3556                                        }
3557
3558                                        if($mbox_stream)
3559                                                imap_close($mbox_stream);
3560                                }
3561                        }
3562                }
3563
3564                if(!function_exists("cmp_date")) {
3565                        function cmp_date($obj1, $obj2){
3566                    if($obj1['timestamp'] == $obj2['timestamp']) return 0;
3567                    return ($obj1['timestamp'] < $obj2['timestamp']) ? 1 : -1;
3568                        }
3569                }
3570                usort($return["msgs"], "cmp_date");
3571                $return["has_more_msg"] = (sizeof($return["msgs"]) > $max_msgs);
3572                $return["msgs"] = array_slice($return["msgs"], 0, $max_msgs);
3573                $return["msgs"]['num_msgs'] = $num_msgs;
3574               
3575                return $return;
3576        }
3577
3578        function delete_and_show_previous_message($params)
3579        {
3580                $return = $this->get_info_previous_msg($params);
3581
3582                $params_tmp1 = array();
3583                $params_tmp1['msgs_to_delete'] = $params['msg_number'];
3584                $params_tmp1['folder'] = $params['msg_folder'];
3585                $return_tmp1 = $this->delete_msg($params_tmp1);
3586
3587                $return['msg_number_deleted'] = $return_tmp1;
3588
3589                return $return;
3590        }
3591
3592
3593        function automatic_trash_cleanness($params)
3594        {
3595                $before_date = date("m/d/Y", strtotime("-".$params['before_date']." day"));
3596                $criteria =  'BEFORE "'.$before_date.'"';
3597                $mbox_stream = $this->open_mbox('INBOX'.$this->imap_delimiter.$_SESSION['phpgw_info']['expressomail']['email_server']['imapDefaultTrashFolder']);
3598                // Free others requests
3599                session_write_close();
3600                $messages = imap_search($mbox_stream, $criteria, SE_UID);
3601                if (is_array($messages)){
3602                        foreach ($messages as $msg_number){
3603                                imap_delete($mbox_stream, $msg_number, FT_UID);
3604                        }
3605                }
3606                if($mbox_stream)
3607                        imap_close($mbox_stream, CL_EXPUNGE);
3608                return $messages;
3609        }
3610//      Fix the search problem with special characters!!!!
3611        function remove_accents($string) {
3612                return strtr($string,
3613                "?Ó??ó?Ý?úÁÀÃÂÄÇÉÈÊËÍÌ?ÎÏÑÕÔÓÒÖÚÙ?ÛÜ?áàãâäçéèêëíì?îïñóòõôöúù?ûüýÿ",
3614                "SOZsozYYuAAAAACEEEEIIIIINOOOOOUUUUUsaaaaaceeeeiiiiinooooouuuuuyy");
3615        }
3616       
3617        function make_search_date($date,$before = false){
3618
3619            //TODO: Adaptar a data de acordo com o locale do sistema.
3620            list($day,$month,$year) = explode("/", $date);
3621                        $before?$day=(int)$day+1:$day=(int)$day;
3622                $timestamp = mktime(0,0,0,(int)$month,$day,(int)$year);
3623                $search_date = date('d-M-Y',$timestamp);
3624            return $search_date;
3625
3626    }
3627
3628        function search_msg( $params = false )
3629        {
3630                $mbox_stream = "";
3631               
3632                if(strpos($params['condition'],"#")===false)
3633                { //local messages
3634                        $search=false;
3635                }
3636                else
3637                {
3638                        $search = explode(",",$params['condition']);
3639                }
3640               
3641                $params['page'] = $params['page'] * 1;
3642
3643            if( is_array($search) )
3644            {
3645                        $search = array_unique($search); // Remove duplicated folders
3646                        $search_criteria = '';
3647                        $search_result_number = $_SESSION['phpgw_info']['user']['preferences']['expressoMail']['search_result_number'];
3648                        foreach($search as $tmp)
3649                        {
3650                                $tmp1 = explode("##",$tmp);
3651                                $sum = 0;
3652                                $name_box = $tmp1[0];
3653                                unset($filter);
3654                                foreach($tmp1 as $index => $criteria)
3655                                {
3656                                        if ($index != 0 && strlen($criteria) != 0)
3657                                        {
3658                                                $filter_array = explode("<=>",html_entity_decode(rawurldecode($criteria)));
3659                                                $filter .= " ".$filter_array[0];
3660                                                if (strlen($filter_array[1]) != 0)
3661                                                {
3662                                                        if ( trim($filter_array[0]) != 'BEFORE' &&
3663                                                                 trim($filter_array[0]) != 'SINCE' &&
3664                                                                 trim($filter_array[0]) != 'ON')
3665                                                        {
3666                                                            $filter .= '"'.$filter_array[1].'"';
3667                                                        }
3668                                                        if(trim($filter_array[0]) == 'BEFORE' )
3669                                                        {
3670                                                                $filter .= '"'.$this->make_search_date($filter_array[1],true).'"';
3671                                    }else{
3672                                                                $filter .= '"'.$this->make_search_date($filter_array[1]).'"';
3673                                }
3674                                                }
3675                                        }
3676                                }
3677                               
3678                                $name_box = mb_convert_encoding(utf8_decode($name_box), "UTF7-IMAP", "ISO_8859-1" );
3679                                $filter = $this->remove_accents($filter);
3680
3681                                //Este bloco tem a finalidade de transformar o login (quando numerico) das pastas compartilhadas em common name
3682                                if ($_SESSION['phpgw_info']['user']['preferences']['expressoMail']['uid2cn'] && substr($name_box,0,4) == 'user')
3683                                {
3684                                        $folder_name = explode($this->imap_delimiter,$name_box);
3685                                        $this->ldap = new ldap_functions();
3686                                       
3687                                        if ($cn = $this->ldap->uid2cn($folder_name[1]))
3688                                        {
3689                                                $folder_name[1] = $cn;
3690                                        }
3691                                        $folder_name = implode($this->imap_delimiter,$folder_name);
3692                                }
3693                                else
3694                                        $folder_name = mb_convert_encoding(utf8_decode($name_box), "UTF7-IMAP", "ISO_8859-1" );
3695                               
3696                                if(!is_resource($mbox_stream))
3697                                        $mbox_stream = $this->open_mbox($name_box);
3698                                else
3699                                        imap_reopen($mbox_stream, "{".$this->imap_server.":".$this->imap_port.$this->imap_options."}".$name_box);
3700                               
3701                                if (preg_match("/^.?\bALL\b/", $filter))
3702                                {
3703                                        // Quick Search, note: this ALL isn't the same ALL from imap_search
3704                                        $all_criterias = array ("TO","SUBJECT","FROM","CC");
3705                                           
3706                                        foreach($all_criterias as $criteria_fixed)
3707                                        {
3708                                                $_filter = $criteria_fixed . substr($filter,4);
3709                                               
3710                                                $search_criteria = imap_search($mbox_stream, $_filter, SE_UID);
3711                                               
3712                                                if(is_array($search_criteria))
3713                                                {
3714                                                        foreach($search_criteria as $new_search)
3715                                                        {
3716                                                                $elem = $this->get_msg_detail($new_search,$name_box,$mbox_stream);
3717                                                                $elem['boxname'] = mb_convert_encoding( $name_box, "ISO_8859-1", "UTF7-IMAP" );
3718                                                                $elem['uid'] = $new_search;
3719                                                                /* compare dates in ordering */
3720                                                                $elem['udatecomp'] = substr ($elem['udate'], -4) ."-". substr ($elem['udate'], 3, 2) ."-". substr ($elem['udate'], 0, 2); 
3721                                                                $retorno[] = $elem;
3722                                                        }
3723                                                }
3724                                        }
3725                                }
3726                                else{
3727                                        $search_criteria = imap_search($mbox_stream, $filter, SE_UID);
3728                                        if($_SESSION['phpgw_info']['user']['preferences']['expressoMail']['use_important_flag'])
3729                                        {
3730                                            if((!strpos($filter,"FLAGGED") === false) || (!strpos($filter,"UNFLAGGED") === false))
3731                                            {
3732                                                $num_msgs = imap_num_msg($mbox_stream);
3733                                                $flagged_msgs = array();
3734                                                for ($i=$num_msgs; $i>0; $i--)
3735                                                {
3736                                                        $iuid = @imap_uid($this->mbox,$i);
3737                                                        $header = $this->get_header($iuid);
3738                                                        if(trim($header->Flagged))
3739                                                        {
3740                                                                $flagged_msgs[$i] = $iuid;
3741                                                        }
3742                                                }
3743                                                if((count($flagged_msgs) >0) && (strpos($filter,"UNFLAGGED") === false))
3744                                                {
3745                                                    $arry_diff = is_array($search_criteria) ? array_diff($flagged_msgs,$search_criteria):$flagged_msgs;
3746                                                    foreach($arry_diff as $msg)
3747                                                    {
3748                                                        $search_criteria[] = $msg;
3749                                                    }
3750                                                }
3751                                                else if((count($flagged_msgs) >0) && (is_array($search_criteria)) && (!strpos($filter,"UNFLAGGED") === false))
3752                                                {
3753                                                    $search_criteria = array_diff($search_criteria,$flagged_msgs);
3754                                                }
3755                                            }
3756                                        }
3757
3758                                        if( is_array( $search_criteria) )
3759                                        {
3760                                                foreach($search_criteria as $new_search)
3761                                                {
3762                                                        $elem = $this->get_msg_detail($new_search,$name_box,$mbox_stream);
3763                                                        $elem['boxname'] = mb_convert_encoding( $name_box, "ISO_8859-1", "UTF7-IMAP" );
3764                                                        $elem['uid'] = $new_search;
3765                                                        /* compare dates in ordering */
3766                                                        $elem['udatecomp'] = substr ($elem['udate'], -4) ."-". substr ($elem['udate'], 3, 2) ."-". substr ($elem['udate'], 0, 2);
3767                                                        $retorno[] = $elem;
3768                                                }
3769                                        }
3770                                }
3771                        }
3772                }
3773               
3774                if($mbox_stream)
3775                {
3776                        imap_close($mbox_stream);
3777            }
3778           
3779            $num_msgs = count($retorno);
3780
3781            /* Comparison functions, descendent is ascendent with parms inverted */
3782            function SORTDATE($a, $b){ return ($a['udatecomp'] < $b['udatecomp']); }
3783            function SORTDATE_REVERSE($b, $a) { return SORTDATE($a,$b); }
3784
3785            function SORTWHO($a, $b) { return (strtoupper($a['from']) > strtoupper($b['from'])); }
3786            function SORTWHO_REVERSE($b, $a) { return SORTWHO($a,$b); }
3787
3788            function SORTSUBJECT($a, $b) { return (strtoupper($a['subject']) > strtoupper($b['subject'])); }
3789            function SORTSUBJECT_REVERSE($b, $a) { return SORTSUBJECT($a,$b); }
3790
3791            function SORTBOX($a, $b) { return ($a['boxname'] > $b['boxname']); }
3792            function SORTBOX_REVERSE($b, $a) { return SORTBOX($a,$b); }
3793
3794            function SORTSIZE($a, $b) { return ($a['size'] > $b['size']); }
3795            function SORTSIZE_REVERSE($b, $a) { return SORTSIZE($a,$b); }
3796
3797            usort( $retorno, $params['sort_type']);
3798            $pageret = array_slice( $retorno, $params['page'] * $this->prefs['max_email_per_page'], $this->prefs['max_email_per_page']);
3799           
3800            $arrayRetorno['num_msgs']   =  $num_msgs;
3801            $arrayRetorno['data']               =  $pageret;
3802            $arrayRetorno['currentTab'] =  $params['current_tab'];
3803
3804                if ($pageret)
3805                {
3806                        return $arrayRetorno;
3807                }
3808                else
3809                {
3810                        return 'none';
3811                }
3812        }
3813
3814        function get_msg_detail($uid_msg,$name_box, $mbox_stream )
3815        {
3816                $header = $this->get_header($uid_msg);
3817                require_once("class.imap_attachment.inc.php");
3818                $imap_attachment = new imap_attachment();
3819                $attachments =  $imap_attachment->get_attachment_headerinfo($mbox_stream, $uid_msg);
3820                $attachments = $attachments['number_attachments'] > 0?"T".$attachments['number_attachments']:"";
3821                $flag = $header->Unseen
3822                        .$header->Recent
3823                        .$header->Flagged
3824                        .$header->Draft
3825                        .$header->Answered
3826                        .$header->Deleted
3827                        .$attachments;
3828
3829
3830                $subject = $this->decode_string($header->fetchsubject);
3831                $from = $header->from[0]->mailbox;
3832                if($header->from[0]->personal != "")
3833                        $from = $header->from[0]->personal;
3834                $ret_msg['from']        = $this->decode_string($from);
3835                $ret_msg['subject']     = $subject;
3836                $ret_msg['udate']       = gmdate("d/m/Y",$header->udate + $this->functions->CalculateDateOffset());
3837                $ret_msg['size']        = $header->Size;
3838                $ret_msg['flag']        = $flag;
3839                return $ret_msg;
3840        }
3841
3842
3843        function size_msg($size){
3844                $var = floor($size/1024);
3845                if($var >= 1){
3846                        return $var." kb";
3847                }else{
3848                        return $size ." b";
3849                }
3850        }
3851       
3852        function ob_array($the_object)
3853        {
3854           $the_array=array();
3855           if(!is_scalar($the_object))
3856           {
3857               foreach($the_object as $id => $object)
3858               {
3859                   if(is_scalar($object))
3860                   {
3861                       $the_array[$id]=$object;
3862                   }
3863                   else
3864                   {
3865                       $the_array[$id]=$this->ob_array($object);
3866                   }
3867               }
3868               return $the_array;
3869           }
3870           else
3871           {
3872               return $the_object;
3873           }
3874        }
3875
3876        function getacl()
3877        {
3878                $this->ldap = new ldap_functions();
3879
3880                $return = array();
3881                $mbox_stream = $this->open_mbox();
3882                $mbox_acl = imap_getacl($mbox_stream, 'INBOX');
3883
3884                $i = 0;
3885                foreach ($mbox_acl as $user => $acl)
3886                {
3887                        if ($user != $this->username)
3888                        {
3889                                $return[$i]['uid'] = $user;
3890                                $return[$i]['cn'] = $this->ldap->uid2cn($user);
3891                        }
3892                        $i++;
3893                }
3894                return $return;
3895        }
3896
3897        function setacl($params)
3898        {
3899                $old_users = $this->getacl();
3900                if (!count($old_users))
3901                        $old_users = array();
3902
3903                $tmp_array = array();
3904                foreach ($old_users as $index => $user_info)
3905                {
3906                        $tmp_array[$index] = $user_info['uid'];
3907                }
3908                $old_users = $tmp_array;
3909
3910                $users = unserialize($params['users']);
3911                if (!count($users))
3912                        $users = array();
3913
3914                //$add_share = array_diff($users, $old_users);
3915                $remove_share = array_diff($old_users, $users);
3916
3917                $mbox_stream = $this->open_mbox();
3918
3919                $serverString = "{".$this->imap_server.":".$this->imap_port.$this->imap_options."}";
3920                $mailboxes_list = imap_getmailboxes($mbox_stream, $serverString, "user".$this->imap_delimiter.$this->username."*");
3921
3922                /*if (count($add_share))
3923                {
3924                        foreach ($add_share as $index=>$uid)
3925                        {
3926                        if (is_array($mailboxes_list))
3927                        {
3928                        foreach ($mailboxes_list as $key => $val)
3929                        {
3930                        $folder = str_replace($serverString, "", imap_utf7_decode($val->name));
3931                                                imap_setacl ($mbox_stream, $folder, "$uid", "lrswipcda");
3932                        }
3933                        }
3934                        }
3935                }*/
3936
3937                if (count($remove_share))
3938                {
3939                        foreach ($remove_share as $index=>$uid)
3940                        {
3941                            if (is_array($mailboxes_list))
3942                            {
3943                                foreach ($mailboxes_list as $key => $val)
3944                                {
3945                                    $folder = str_replace($serverString, "", imap_utf7_decode($val->name));
3946                                    $folder = str_replace("&-", "&", $folder);
3947                                    imap_setacl ($mbox_stream, $folder, "$uid", "");
3948                                }
3949                            }
3950                        }
3951                }
3952
3953                return true;
3954        }
3955
3956        function getaclfromuser($params)
3957        {
3958                $useracl = $params['user'];
3959
3960                $return = array();
3961                $return[$useracl] = 'false';
3962                $mbox_stream = $this->open_mbox();
3963                $mbox_acl = imap_getacl($mbox_stream, 'INBOX');
3964
3965                foreach ($mbox_acl as $user => $acl)
3966                {
3967                        if (($user != $this->username) && ($user == $useracl))
3968                        {
3969                                $return[$user] = $acl;
3970                        }
3971                }
3972                return $return;
3973        }
3974
3975        function getacltouser($user)
3976        {
3977                $return = array();
3978                $mbox_stream = $this->open_mbox();
3979                //Alterado, antes era 'imap_getacl($mbox_stream, 'user'.$this->imap_delimiter.$user);
3980                //Afim de tratar as pastas compartilhadas, verificandos as permissoes de operacao sobre as mesmas
3981                //No caso de se tratar da caixa do proprio usuario logado, utiliza a sintaxe abaixo
3982                if(substr($user,0,4) != 'user')
3983                $mbox_acl = imap_getacl($mbox_stream, 'user'.$this->imap_delimiter.$user);
3984                else
3985                  $mbox_acl = imap_getacl($mbox_stream, $user);
3986                return $mbox_acl[$this->username];
3987        }
3988
3989
3990        function setaclfromuser($params)
3991        {
3992                $user = $params['user'];
3993                $acl = $params['acl'];
3994
3995                $mbox_stream = $this->open_mbox();
3996
3997                $serverString = "{".$this->imap_server.":".$this->imap_port.$this->imap_options."}";
3998                $mailboxes_list = imap_getmailboxes($mbox_stream, $serverString, "user".$this->imap_delimiter.$this->username."*");
3999
4000                if (is_array($mailboxes_list))
4001                {
4002                        foreach ($mailboxes_list as $key => $val)
4003                        {
4004                                $folder = str_replace($serverString, "", imap_utf7_encode($val->name));
4005                                $folder = str_replace("&-", "&", $folder);
4006                                if (!imap_setacl ($mbox_stream, $folder, $user, $acl))
4007                                {
4008                                        $return = imap_last_error();
4009                                }
4010                        }
4011                }
4012                if (isset($return))
4013                        return $return;
4014                else
4015                        return true;
4016        }
4017
4018        function download_attachment($msg,$msgno)
4019        {
4020                $array_parts_attachments = array();
4021                //$array_parts_attachments['names'] = '';
4022                include_once("class.imap_attachment.inc.php");
4023                $imap_attachment = new imap_attachment();
4024
4025                if (count($msg->fname[$msgno]) > 0)
4026                {
4027                        $i = 0;
4028                        foreach ($msg->fname[$msgno] as $index=>$fname)
4029                        {
4030                                $array_parts_attachments[$i]['pid'] = $msg->pid[$msgno][$index];
4031                                $array_parts_attachments[$i]['name'] = $imap_attachment->flat_mime_decode($this->decode_string($fname));
4032                                $array_parts_attachments[$i]['name'] = $array_parts_attachments[$i]['name'] ? $array_parts_attachments[$i]['name'] : "attachment.bin";
4033                                $array_parts_attachments[$i]['encoding'] = $msg->encoding[$msgno][$index];
4034                                //$array_parts_attachments['names'] .= $array_parts_attachments[$i]['name'] . ', ';
4035                                $array_parts_attachments[$i]['fsize'] = $msg->fsize[$msgno][$index];
4036                                $i++;
4037                        }
4038                }
4039                //$array_parts_attachments['names'] = substr($array_parts_attachments['names'],0,(strlen($array_parts_attachments['names']) - 2));
4040                return $array_parts_attachments;
4041        }
4042
4043       
4044        /**
4045        * @license   http://www.gnu.org/copyleft/gpl.html GPL
4046        * @author    Consórcio Expresso Livre - 4Linux (www.4linux.com.br) e Prognus Software Livre (www.prognus.com.br)
4047        * @param     $params
4048        */
4049        function spam($params)
4050        {
4051               
4052                $mbox_stream = $this->open_mbox($params['folder']);
4053                $msgs_number = explode(',',$params['msgs_number']);
4054
4055                $user = Array();
4056
4057                if(substr($params['folder'], 0, 4) == 'user')
4058                {
4059                    $ldapObject = new ldap_functions();
4060
4061                    $folderArray = Array();
4062                    $folderArray = explode($this->imap_delimiter, $params['folder']);
4063
4064                    $user['name'] = $folderArray[1];
4065                    $user['email'] = $ldapObject->getMailByUid($user['name']);
4066               
4067                }
4068                else
4069                {
4070                    $user['name'] = $this->username;
4071                    $user['email'] = $_SESSION['phpgw_info']['expressomail']['user']['email'];
4072                }
4073
4074                foreach($msgs_number as $msg_number)
4075                {
4076                        $imap_msg_number = imap_msgno($mbox_stream, $msg_number);
4077                        $header = imap_fetchheader($mbox_stream, $imap_msg_number);
4078                        $body = imap_body($mbox_stream, $imap_msg_number);
4079                        $msg = $header . $body;
4080                        strtok($user['email'], '@');
4081                        $domain = strtok('@');
4082
4083           
4084
4085                        //Encontrar a assinatura do dspam no cabecalho
4086                        $v = explode("\r\n", $header);
4087                        foreach ($v as $linha){
4088                                if (eregi("^Message-ID", $linha)) {
4089                                        $args = explode(" ", $linha);
4090                                        $msg_id = "'$args[1]'";
4091                                } elseif (eregi("^X-DSPAM-Signature", $linha)) {
4092                                        $args = explode(" ",$linha);
4093                                        $signature = $args[1];
4094                                }
4095                        }
4096
4097                        // Seleciona qual comando a ser executado
4098                        switch($params['spam']){
4099                                case 'true':  $cmd = $_SESSION['phpgw_info']['server']['expressomail']['expressoMail_command_for_spam']; break;
4100                                case 'false': $cmd = $_SESSION['phpgw_info']['server']['expressomail']['expressoMail_command_for_ham']; break;
4101                        }
4102
4103                     
4104                        $tags = array('##EMAIL##', '##USERNAME##', '##DOMAIN##', '##SIGNATURE##', '##MSGID##');
4105                        $cmd = str_replace($tags, array($user['email'], $user['name'], $domain, $signature, $msg_id), $cmd);
4106                       
4107                        system($cmd);
4108                }
4109
4110                imap_close($mbox_stream);
4111                return false;
4112        }
4113       
4114       
4115        function get_header($msg_number)
4116        {
4117        $header = @imap_headerinfo($this->mbox, imap_msgno($this->mbox, $msg_number), 80, 255);
4118                if (!is_object($header))
4119                        return false;
4120
4121                if($header->Flagged != "F" && $_SESSION['phpgw_info']['user']['preferences']['expressoMail']['use_important_flag']) {
4122                        $flag = preg_match('/importance *: *(.*)\r/i',
4123                                                imap_fetchheader($this->mbox, imap_msgno($this->mbox, $msg_number))
4124                                                ,$importance);
4125                        $header->Flagged = $flag==0?false:strtolower($importance[1])=="high"?"F":false;
4126                }
4127
4128                return $header;
4129        }
4130
4131//Por Bruno Costa(bruno.vieira-costa@serpro.gov.br - Insere emails no imap a partir do fonte do mesmo. Se o argumento timestamp for passado ele utiliza do script python
4132///expressoMail1_2/imap.py para inserir uma msg com o horário correto pois isso não é porssível com a função imap_append do php.
4133
4134    function insert_email($source,$folder,$timestamp,$flags){
4135        $username = $_SESSION['phpgw_info']['expressomail']['user']['userid'];
4136        $password = $_SESSION['phpgw_info']['expressomail']['user']['passwd'];
4137        $imap_server = $_SESSION['phpgw_info']['expressomail']['email_server']['imapServer'];
4138        $imap_port      = $_SESSION['phpgw_info']['expressomail']['email_server']['imapPort'];
4139        $imap_options = '/notls/novalidate-cert';
4140        $mbox_stream = imap_open("{".$imap_server.":".$imap_port.$imap_options."}".$folder, $username, $password);
4141        if(imap_last_error())
4142        {
4143            imap_createmailbox($mbox_stream,imap_utf7_encode("{".$imap_server."}".$folder));
4144        }
4145        if($timestamp){
4146                        $pdate = date_parse(date('r')); // pega a data atual do servidor (TODO: pegar a data da mensagem local)
4147                        $timestamp += $pdate['zone']*(60); //converte a data da mensagem para o fuso horário GMT 0. Isto é feito devido ao Expresso Mail armazenar a data no fuso horário GMT 0 e para exibi-la converte ela para o fuso horário local.
4148                        /* TODO: o diretorio /tmp deve ser substituido pelo diretorio temporario configurado no setup */
4149                        $file = "/tmp/sess_".$_SESSION[ 'phpgw_session' ][ 'session_id' ];
4150               
4151                $f = fopen($file,"w");
4152                fputs($f,base64_encode($source));
4153            fclose($f);           
4154                   $command = "python ".$_SESSION['rootPatch']."/expressoMail1_2/imap.py ".escapeshellarg($imap_server)." ".escapeshellarg($imap_port)." ".escapeshellarg($username)." ".escapeshellarg($password)." ".escapeshellarg($timestamp)." ".escapeshellarg($folder)." ".escapeshellarg($file);
4155            $return['command']=exec(escapeshellcmd($command));
4156        }else{
4157            $return['append'] = imap_append($mbox_stream, "{".$imap_server.":".$imap_port."}".$folder, $source, "\\Seen");
4158        }
4159        $status = imap_status($mbox_stream, "{".$this->imap_server.":".$this->imap_port."}".$folder, SA_UIDNEXT);
4160                       
4161        $return['msg_no'] = $status->uidnext - 1;
4162        $return['error'] = imap_last_error();
4163        if(!$return['error'] && $flags != '' ){
4164
4165                  $flags_array=explode(':',$flags);
4166                  //"Answered","Draft","Flagged","Unseen"
4167                  $flags_fixed = "";
4168                  if($flags_array[0] == 'A')
4169                        $flags_fixed.="\\Answered ";
4170                  if($flags_array[1] == 'X')
4171                        $flags_fixed.="\\Draft ";
4172                  if($flags_array[2] == 'F')
4173                        $flags_fixed.="\\Flagged ";
4174                  if($flags_array[3] != 'U')
4175                        $flags_fixed.="\\Seen ";
4176
4177                  imap_setflag_full($mbox_stream, $return['msg_no'], $flags_fixed, ST_UID);
4178                }
4179        if($mbox_stream)
4180            imap_close($mbox_stream);
4181        return $return;
4182    }
4183
4184    function show_decript($params){
4185        $source = $params['source'];
4186        //error_log("source: $source\nversao: " . PHP_VERSION, 3, '/tmp/teste.log');
4187        $source = str_replace(" ", "+", $source,$i);
4188
4189        if (version_compare(PHP_VERSION, '5.2.0', '>=')){
4190            if(!$source = base64_decode($source,true))
4191                return "error ".$source."Espaços ".$i;
4192
4193        }
4194        else {
4195            if(!$source = base64_decode($source))
4196                return "error ".$source."Espaços ".$i;
4197        }
4198
4199        $insert = $this->insert_email($source,'INBOX'.$this->imap_delimiter.'decifradas');
4200
4201                $get['msg_number'] = $insert['msg_no'];
4202                $get['msg_folder'] = 'INBOX'.$this->imap_delimiter.'decifradas';
4203                $return = $this->get_info_msg($get);
4204                $get['msg_number'] = $params['ID'];
4205                $get['msg_folder'] = $params['folder'];
4206                $tmp = $this->get_info_msg($get);
4207                if(!$tmp['status_get_msg_info'])
4208                {
4209                        $return['msg_day']=$tmp['msg_day'];
4210                        $return['msg_hour']=$tmp['msg_hour'];
4211                        $return['fulldate']=$tmp['fulldate'];
4212                        $return['smalldate']=$tmp['smalldate'];
4213                }
4214                else
4215                {
4216                        $return['msg_day']='';
4217                        $return['msg_hour']='';
4218                        $return['fulldate']='';
4219                        $return['smalldate']='';
4220                }
4221        $return['msg_no'] =$insert['msg_no'];
4222        $return['error'] = $insert['error'];
4223        $return['folder'] = $params['folder'];
4224        //$return['acls'] = $insert['acls'];
4225        $return['original_ID'] =  $params['ID'];
4226
4227        return $return;
4228
4229    }
4230
4231//Por Bruno Costa(bruno.vieira-costa@serpro.gov.br - Trata fontes de emails enviados via POST para o servidor por um xmlhttprequest, as partes codificados com
4232//Base64 os "+" são substituidos por " " no envio e essa função arruma esse efeito.
4233
4234    function treat_base64_from_post($source){
4235            $offset = 0;
4236            do
4237            {
4238                    if($inicio = strpos($source, 'Content-Transfer-Encoding: base64', $offset))
4239                    {
4240                            $inicio = strpos($source, "\n\r", $inicio);
4241                            $fim = strpos($source, '--', $inicio);
4242                            if(!$fim)
4243                                    $fim = strpos($source,"\n\r", $inicio);
4244                            $length = $fim-$inicio;
4245                            $parte = substr( $source,$inicio,$length-1);
4246                            $parte = str_replace(" ", "+", $parte);
4247                            $source = substr_replace($source, $parte, $inicio, $length-1);
4248                    }
4249                    if($offset > $inicio)
4250                    $offset=FALSE;
4251                    else
4252                    $offset = $inicio;
4253            }
4254            while($offset);
4255            return $source;
4256    }
4257
4258//Por Bruno Costa(bruno.vieira-costa@serpro.gov.br - Recebe os fontes dos emails a serem desarquivados, separa e envia cada um para função insert_mail.
4259
4260    function unarchive_mail($params)
4261    {
4262        $dest_folder = $params['folder'];
4263        $sources = explode("#@#@#@",$params['source']);
4264        $timestamps = explode("#@#@#@",$params['timestamp']);
4265        $flags = explode("#@#@#@",$params['flags']);
4266
4267        foreach($sources as $index=>$src)
4268        {
4269            if($src!="")
4270            {
4271                $source = $this->treat_base64_from_post($src);
4272                $insert = $this->insert_email($source,$dest_folder,$timestamps[$index],$flags[$index]);
4273            }
4274        }
4275       
4276        return $insert;
4277    }
4278
4279    function download_all_local_attachments($params)
4280    {
4281        $source = $params['source'];
4282        $source = $this->treat_base64_from_post($source);
4283        $insert = $this->insert_email($source,'INBOX'.$this->imap_delimiter.'decifradas');
4284        $exporteml = new ExportEml();
4285        $params['num_msg']=$insert['msg_no'];
4286        $params['folder']='INBOX'.$this->imap_delimiter.'decifradas';
4287        return $exporteml->download_all_attachments($params);
4288    }
4289    function get_quota_folders(){
4290
4291            // Additional Imap Class for not-implemented functions into PHP-IMAP extension.
4292            include_once("class.imapfp.inc.php");           
4293            $imapfp = new imapfp();
4294
4295            if(!$imapfp->open($this->imap_server,$this->imap_port))
4296                    return $imapfp->get_error();             
4297            if (!$imapfp->login( $this->username,$this->password ))
4298                    return $imapfp->get_error();
4299
4300            $response_array = $imapfp->get_mailboxes_size();
4301            if ($imapfp->error)
4302                    return $imapfp->get_error();
4303
4304            $data = array();
4305            $quota_root = $this->get_quota(array('folder_id' => "INBOX"));
4306            $data["quota_root"] = $quota_root;
4307
4308            foreach ($response_array as $idx=>$line) {
4309                    $line2 = str_replace('"', "", $line);
4310                    $line2 = str_replace(" /vendor/cmu/cyrus-imapd/size (value.shared ",";",str_replace("* ANNOTATION ","",$line2));
4311                    list($folder,$size) = explode(";",$line2);
4312                    $quota_used = str_replace(")","",$size);
4313                    $quotaPercent = (($quota_used / 1024) / $data["quota_root"]["quota_limit"])*100;
4314                    $folder = mb_convert_encoding($folder, "ISO_8859-1", "UTF7-IMAP");
4315                    if(!preg_match('/user\\'.$this->imap_delimiter.$this->username.'\\'.$this->imap_delimiter.'/i',$folder)){
4316                            $folder = $this->functions->getLang("Inbox");
4317                    }
4318                    else
4319                            $folder = preg_replace('/user\\'.$this->imap_delimiter.$this->username.'\\'.$this->imap_delimiter.'/i','', $folder);
4320
4321                    $data[$folder] = array("quota_percent" => sprintf("%.1f",round($quotaPercent,1)), "quota_used" => $quota_used);
4322            }
4323            $imapfp->close();
4324            return $data;
4325    } 
4326}
4327?>
Note: See TracBrowser for help on using the repository browser.