Ignore:
Timestamp:
06/28/12 15:18:46 (12 years ago)
Author:
cristiano
Message:

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/expressoMail1_2/js/main.js

    r6628 r6673  
    526526                         } 
    527527                        for (var i = 0; i < domains.length; i++) 
    528                                 if (msg_info.DispositionNotificationTo.match(domains[i]+">")) 
     528                                if (Base64.decode(msg_info.DispositionNotificationTo).match("@"+domains[i])) 
    529529                                { 
    530530                                        var confNotification = true; 
     
    532532                                } 
    533533                                if (confNotification == undefined) 
    534                                         var confNotification = confirm(get_lang("The sender:\n%1\nwaits your notification of reading. Do you want to confirm this?",msg_info.DispositionNotificationTo), ""); 
     534                                        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)), ""); 
    535535 
    536536                        if (confNotification) 
Note: See TracChangeset for help on using the changeset viewer.