Monotone-Parent: 134d5f26f5b5c12057ef16e7224200617273ff67

Monotone-Revision: 32b8651c607640726bff724790fc018ce587ad3e

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2006-10-03T16:30:11
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2006-10-03 16:30:11 +00:00
parent 47cf2f8d05
commit bf4774d9bb

View File

@@ -39,10 +39,10 @@ function mailIsRecipient(mailto) {
var counter = 0;
var currentRow = $('row_' + counter);
var email = extractEmailAddress(mailto);
var email = extractEmailAddress(mailto).toUpperCase();
while (currentRow && !isRecipient) {
var currentValue = $("addr_"+counter).value;
var currentValue = $("addr_"+counter).value.toUpperCase();
if (currentValue.indexOf(email) > -1)
isRecipient = true;
else