fixing bug 149515 - Mail header optimizations disabled critical mail header feature. r=bhuvan, sr=sspitzer, a=adt,drivers

git-svn-id: svn://10.0.0.236/branches/MOZILLA_1_0_BRANCH@123423 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
ssu%netscape.com
2002-06-17 02:06:13 +00:00
parent f7aa411272
commit 7d244ddadf
3 changed files with 22 additions and 0 deletions

View File

@@ -108,6 +108,16 @@
aEmailNode.setTextAttribute("emailAddress", aAddress.emailAddress);
aEmailNode.setTextAttribute("fullAddress", aAddress.fullAddress);
aEmailNode.setTextAttribute("displayName", aAddress.displayName);
try
{
if ("AddExtraAddressProcessing" in top)
AddExtraAddressProcessing(aAddress.emailAddress, aEmailNode);
}
catch(ex)
{
dump("AddExtraAddressProcessing failed: " + ex);
}
]]>
</body>
</method>
@@ -227,6 +237,12 @@
{
this.fillAddressesNode(this.longEmailAddresses, -1);
this.mLongViewCreated = true;
// need to call UpdateMessageHeaders() because this is the first
// time the long view is being built. This is required in order
// to update the addresses of the long view that might contain
// extra image info.
UpdateMessageHeaders();
}
]]>
</body>

View File

@@ -100,6 +100,11 @@
color: #FF0000;
}
.emailDisplayImage {
padding-left: 2px;
-moz-box-pack: end;
}
/* ::::: email address twisty ::::: */
.addresstwisty {

View File

@@ -119,6 +119,7 @@
}
.emailDisplayImage {
padding-left: 2px;
-moz-box-pack: end;
}