mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-03-21 22:32:45 +00:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user