Changeset 1792


Ignore:
Timestamp:
12/08/09 15:23:28 (14 years ago)
Author:
rodsouza
Message:

Ticket #810 - Removida transformação de 7bits em quoted-printable caracteres.

Location:
trunk/expressoMail1_2/inc
Files:
2 edited

Legend:

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

    r1752 r1792  
    10651065                $body = base64_decode($body); 
    10661066        } 
    1067         else if ($encoding == '7bit') 
    1068         { 
    1069                 $body = quoted_printable_decode($body); 
    1070         } 
     1067 
    10711068                // All other encodings are returned raw. 
    10721069                if (strtolower($charset) == "utf-8") 
  • trunk/expressoMail1_2/inc/class.phpmailer.php

    r1736 r1792  
    730730    function valEm($email) 
    731731    { 
     732                return true; 
    732733        $mail_retorno = FALSE; 
    733734        if ((strlen($email) >= 6) && (substr_count($email,"@") == 1) && (substr($email,0,1) != "@") && (substr($email,strlen($email)-1,1) != "@")) 
Note: See TracChangeset for help on using the changeset viewer.