Ignore:
Timestamp:
06/18/12 17:42:29 (12 years ago)
Author:
eduardow
Message:

Ticket #2866 - Inconsistência na funcionalidade de anexar mensagens.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.4/prototype/services/ImapServiceAdapter.php

    r6389 r6540  
    626626                                                { 
    627627                                                        $body = str_replace('"../prototype/getArchive.php?mailAttachment='.$att['id'].'"', $att['name'], $body); 
    628                                                         $mailService->addStringImage(base64_decode($att['source']), $att['type'], $att['name']); 
     628                                                        $mailService->addStringImage(base64_decode($att['source']), $att['type'], mb_convert_encoding($att['name'], 'ISO-8859-1' , 'UTF-8,ISO-8859-1'));  
    629629                                                } 
    630630                                                else 
    631                                                         $mailService->addStringAttachment(base64_decode($att['source']), $att['name'], $att['type'], 'base64', isset($att['disposition']) ? $att['disposition'] :'attachment' ); 
    632  
     631                                                        $mailService->addStringAttachment(base64_decode($att['source']), mb_convert_encoding($att['name'], 'ISO-8859-1' , 'UTF-8,ISO-8859-1'), $att['type'], 'base64', isset($att['disposition']) ? $att['disposition'] :'attachment' ); 
     632                                                         
    633633                                                unset($att); 
    634634                                        } 
     
    643643                                                                {     
    644644                                                                        $body = str_ireplace('<img src="./inc/get_archive.php?msgFolder='.$value['folder'].'&msgNumber='.$value['uid'].'&indexPart='.$value['part'].'" />' , '<img src="'.$att['name'].'" />', $body); 
    645                                                                         $mailService->addStringImage($att['source'], $att['type'], $att['name']); 
     645                                                                        $mailService->addStringImage($att['source'], $att['type'], mb_convert_encoding($att['name'], 'ISO-8859-1' , 'UTF-8,ISO-8859-1'));  
    646646                                                                } 
    647647                                                                else 
    648                                                                         $mailService->addStringAttachment($att['source'], $att['name'], $att['type'], 'base64', isset($att['disposition']) ? $att['disposition'] :'attachment' ); 
     648                                                                        $mailService->addStringAttachment($att['source'], mb_convert_encoding($att['name'], 'ISO-8859-1' , 'UTF-8,ISO-8859-1'), $att['type'], 'base64', isset($att['disposition']) ? $att['disposition'] :'attachment' ); 
    649649                                                                unset($att); 
    650650                                                                break; 
     
    652652                                                                $mbox_stream = $this->open_mbox($value['folder']); 
    653653                                                                $rawmsg = $this->getRawHeader($value['uid']) . "\r\n\r\n" . $this->getRawBody($value['uid']); 
    654                                                                 $mailService->addStringAttachment($rawmsg, base64_decode($value['name']), 'message/rfc822', '7bit', 'attachment' ); 
     654                                                                $mailService->addStringAttachment($rawmsg, mb_convert_encoding(base64_decode($value['name']), 'ISO-8859-1' , 'UTF-8,ISO-8859-1'), 'message/rfc822', '7bit', 'attachment' ); 
    655655                                                                unset($rawmsg); 
    656656                                                                break; 
Note: See TracChangeset for help on using the changeset viewer.