support for in-reply-to, r=sspitzer 8965

This commit is contained in:
bienvenu%netscape.com 2000-04-04 00:53:23 +00:00
Родитель 259719647c
Коммит d2b3a9b757
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -1302,8 +1302,12 @@ int nsParseMailMessageState::FinalizeHeaders()
}
}
// use in-reply-to header as references, if there's no references header
if (references != nsnull)
m_newMsgHdr->SetReferences(references->value);
else if (inReplyTo != nsnull)
m_newMsgHdr->SetReferences(inReplyTo->value);
if (date) {
PRTime resultTime;
PRStatus timeStatus = PR_ParseTimeString (date->value, PR_FALSE, &resultTime);