From 774f6352cce4d907259b31cec09f7a657624cd6d Mon Sep 17 00:00:00 2001 From: "bienvenu%nventure.com" Date: Fri, 16 Feb 2007 19:28:14 +0000 Subject: [PATCH] fix 367920 setting pop3 messages as junk/not junk ignored when message quarantining turned on, sr=mscott git-svn-id: svn://10.0.0.236/branches/MOZILLA_1_8_BRANCH@220421 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/mailnews/local/src/nsParseMailbox.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mozilla/mailnews/local/src/nsParseMailbox.cpp b/mozilla/mailnews/local/src/nsParseMailbox.cpp index 8dd76a4fc4c..7af4a1c78ff 100644 --- a/mozilla/mailnews/local/src/nsParseMailbox.cpp +++ b/mozilla/mailnews/local/src/nsParseMailbox.cpp @@ -1944,8 +1944,8 @@ NS_IMETHODIMP nsParseNewMailState::ApplyFilterHit(nsIMsgFilter *filter, nsIMsgWi msgIsNew = PR_FALSE; nsMsgKey msgKey; msgHdr->GetMessageKey(&msgKey); - m_mailDB->SetStringProperty(msgKey, "junkscore", junkScoreStr.get()); - m_mailDB->SetStringProperty(msgKey, "junkscoreorigin", /* ### should this be plugin? */"plugin"); + msgHdr->SetStringProperty("junkscore", junkScoreStr.get()); + msgHdr->SetStringProperty("junkscoreorigin", "plugin"); break; } case nsMsgFilterAction::Forward: