From bf4774d9bbde54d7d61ef8b477dcad64c16e16e9 Mon Sep 17 00:00:00 2001 From: Wolfgang Sourdeau Date: Tue, 3 Oct 2006 16:30:11 +0000 Subject: [PATCH] Monotone-Parent: 134d5f26f5b5c12057ef16e7224200617273ff67 Monotone-Revision: 32b8651c607640726bff724790fc018ce587ad3e Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2006-10-03T16:30:11 Monotone-Branch: ca.inverse.sogo --- UI/WebServerResources/UIxMailEditor.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/UI/WebServerResources/UIxMailEditor.js b/UI/WebServerResources/UIxMailEditor.js index 007b3e0b6..5f33a804a 100644 --- a/UI/WebServerResources/UIxMailEditor.js +++ b/UI/WebServerResources/UIxMailEditor.js @@ -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