View Single Post
  #6 (permalink)  
Old 01-25-2010, 02:07 AM
geminformatica geminformatica is offline
Junior Member
 
Posts: 5
Default

I did it ! at line 187 insert the following lines and that's it:

Code:
        // if not found a specific address try to search for the domain (including @)
        var emlparts = eml.split("@");
        var colors = this._cEmail_manualAddedEmailsArray["@" + emlparts[1]];
        if (colors) {
                return colors;
        }
To let the user know it's possible to use domain, at line 305 change the line with:

Code:
        html[i++] = "<TR><TD width='24%'>Email, domain (with @) or Tag name:</TD>";
I hope this could be helpful to others.
Reply With Quote