Commit 485430e9 authored by bienvenu%netscape.com's avatar bienvenu%netscape.com
Browse files

no longer call SetRecipientsIsNewsgroup - we weren't using it, r=naving, sr=sspitzer 110820

parent 0f3ec608
Loading
Loading
Loading
Loading
+7 −2
Original line number Diff line number Diff line
@@ -1242,7 +1242,6 @@ int nsParseMailMessageState::FinalizeHeaders()
          recipient->length = nsCRT::strlen(recipient->value);
        }
        m_newMsgHdr->SetRecipients(recipient->value);
        m_newMsgHdr->SetRecipientsIsNewsgroup(PR_FALSE);
      }
      else if (recipient)
      {
@@ -1261,7 +1260,6 @@ int nsParseMailMessageState::FinalizeHeaders()
        }
        else {	// hmm, should we just use the original string?
          m_newMsgHdr->SetRecipients(recipient->value);
          m_newMsgHdr->SetRecipientsIsNewsgroup(PR_TRUE);
        }
      }
      if (ccList)
@@ -1775,6 +1773,13 @@ NS_IMETHODIMP nsParseNewMailState::ApplyFilterHit(nsIMsgFilter *filter, nsIMsgWi
                nsMsgPriorityValue filterPriority;
                filter->GetActionPriority(&filterPriority);
                msgHdr->SetPriority(filterPriority);
            }
			break;
		case nsMsgFilterAction::Label:
            {
                nsMsgLabelValue filterLabel;
                filter->GetActionLabel(&filterLabel);
                msgHdr->SetLabel(filterLabel);
            }
			break;
		default: