Skip to content

Commit

Permalink
Fixes issue #16
Browse files Browse the repository at this point in the history
  • Loading branch information
Ilker Temir committed Apr 15, 2015
1 parent 9325cc7 commit b800d1b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions chrome/content/thundersec.js
Expand Up @@ -765,7 +765,16 @@ function pluginMain() {
}
updateDNSBLinfo(mailID);

if (!gFolderDisplay) {
return
}

let msgHdr = gFolderDisplay.selectedMessage;

if (!msgHdr) {
return
}

MsgHdrToMimeMessage(msgHdr, null, function (aMsgHdr, aMimeMsg) {
// Update counters
stats.inspectTotal++;
Expand Down
2 changes: 1 addition & 1 deletion install.rdf
Expand Up @@ -4,7 +4,7 @@
<Description about="urn:mozilla:install-manifest">
<em:type>2</em:type> <!-- 2 : Extension -->
<em:id>thundersec@community</em:id>
<em:version>1.0.1</em:version>
<em:version>1.0.2</em:version>
<em:name>ThunderSec</em:name>
<em:description>Provides security features for Mozilla Thunderbird. These include DNSBL and RBL support, DKIM and SPF failure verifications. DNSBL support can be used to leverage Spamhaus, Abuse.ch and other DNSBL/RBL databases, including custom ones.</em:description>
<em:iconURL>chrome://thundersec/content/images/thundersec.png</em:iconURL>
Expand Down

0 comments on commit b800d1b

Please sign in to comment.