Changeset 4789


Ignore:
Timestamp:
07/19/11 09:00:57 (13 years ago)
Author:
roberto.santosjunior
Message:

Ticket #1820 - Aplicada correção para cirar filtros com acentuação. r4641

Location:
trunk/expressoMail1_2
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/expressoMail1_2/inc/class.ScriptS.inc.php

    r4735 r4789  
    215215 
    216216    function convert_specialchar($input) { 
    217         $special_char = false; 
    218         for ($i = 0; $i < strlen($input); $i++) { 
    219             if (preg_match('/[^a-z0-9.@~_+=&\'*^\ \-\[\]]/i', $input[$i])) { 
    220                 $special_char = true; 
    221                 $input = preg_replace('/\\' . $input[$i] . '/', '=' . bin2hex($input[$i]), $input); 
    222             } 
    223         } 
    224  
    225         if ($special_char) { 
    226             /*             * 
    227              * When using arrays with pattern and replacement,  
    228              * the keys are processed in the order they appear in the array.  
    229              * See preg_replace in php.net/preg_replace  
    230              * */ 
    231             $patterns[0] = '/=c3/i'; 
    232             $patterns[1] = '/ /'; 
    233             $replacements[1] = ''; 
    234             $replacements[0] = '_'; 
    235             $input = preg_replace($patterns, $replacements, $input); 
    236         } 
    237  
    238         return($input); 
     217        $temp_input = $input;   
     218        $temp_input = imap_8bit($temp_input);  
     219                  
     220        $patterns[0] = '/ /';  
     221        $replacements[0] = '_';   
     222        $temp_input = preg_replace($patterns, $replacements, $temp_input);   
     223        return ($temp_input); 
    239224    } 
    240225 
     
    267252            $rule['to']         = $this->convert_specialchar($tmp1[4]); 
    268253            $tmpSubject         = $tmp1[5]; 
    269             $rule['subject']    = $this->convert_specialchar($tmp1[5]); 
     254            $rule['subject']    = $rule['subject'] = " [\"" . $this->convert_specialchar($tmp1[5]) . "\", \"" . base64_encode($tmp1[5]) . "\"]"; 
    270255            $rule['action']     = $tmp1[6]; 
    271256            $rule['action_arg'] = utf8_encode(preg_replace("/\\r\\n/", "\r\n", $tmp1[7])); 
     
    361346                            $match = ':regex'; 
    362347                        $newruletext .= "header " . $match . " \"subject\""; 
    363                         $newruletext .= " \"" . $rule['subject'] . "\""; 
     348                        $newruletext .= "" . $rule['subject'] . ""; 
    364349                        $started = 1; 
    365350                    } 
  • trunk/expressoMail1_2/js/filter.js

    r4755 r4789  
    190190                        document.getElementById("field2").value = fields[4]; 
    191191                        document.getElementById("field3").value = fields[5]; 
    192                         document.getElementById("field4").value = fields[11] == 0 ? "" : fields[11];                             
     192                        document.getElementById("field4").value = fields[11] == 0 ? "" : fields[11]; 
    193193                         
    194194                        switch(fields[6]){ 
     
    566566                        } 
    567567 
    568  
    569568                        if(LTrim(Element("field1").value) == "" && LTrim(Element("field2").value) == "" && LTrim(Element("field3").value) == "" && Element("field4").value == "") 
    570569                        { 
  • trunk/expressoMail1_2/setup/phpgw_pt-br.lang

    r4771 r4789  
    648648Increases the maximum size of show emails from 100kb to 1mb'    expressoMail1_2 pt-br   Essa opção aumenta o tamanho máximo dos emails mostrados de 100KB para 1MB. 
    649649If you want to install a desktop shortcut for accessing the offline ExpressoMail please confirm it after pressing the Install offline button. </br> The application also can be accessed using the URL: expressoMail1_2 pt-br   Caso deseje instalar um ícone no desktop para acesso ao expressoMail offline, confirme a pergunta que aparecerá após clicar no botão "instalar offline". <br />A aplicação também pode ser acessada pela URL: 
    650 Your rule contains any accented character. The filter may not work. Do you wish to continue?    expressoMail1_2 en      Sua regra contem algum caracter acentuado. O filtro pode nao funcionar. Deseja continuar? 
    651650The selected folder cotain any accented character. The filter dont work with accented folders. Please, rename the folder or choose another folder.      expressoMail1_2 pt-br   A pasta selecionada contém algum caracter acentuado. O filtro não funcionada com pastas acentuadas. Por favor, mude o nome da pasta ou escolha outra. 
    652651Do you want to use x origin in source menssage? admin   pt-br   Deseja utilizar o X-Origin na fonte da mensagem? 
Note: See TracChangeset for help on using the changeset viewer.