Ignore:
Timestamp:
06/29/12 11:45:31 (12 years ago)
Author:
eduardow
Message:

Ticket #2917 - Confirmação de leitura não está funcionando no Outlook.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.4/expressoMail1_2/js/main.js

    r6643 r6682  
    475475                         } 
    476476                        for (var i = 0; i < domains.length; i++) 
    477                                 if (msg_info.DispositionNotificationTo.match(domains[i]+">")) 
     477                                if (Base64.decode(msg_info.DispositionNotificationTo).match("@"+domains[i])) 
    478478                                { 
    479479                                        var confNotification = true; 
     
    481481                                } 
    482482                                if (confNotification == undefined) 
    483                                         var confNotification = confirm(get_lang("The sender:\n%1\nwaits your notification of reading. Do you want to confirm this?",msg_info.DispositionNotificationTo), ""); 
     483                                        var confNotification = confirm(get_lang("The sender:\n%1\nwaits your notification of reading. Do you want to confirm this?",Base64.decode(msg_info.DispositionNotificationTo)), ""); 
    484484 
    485485                        if (confNotification) 
Note: See TracChangeset for help on using the changeset viewer.