Moving Nova bug fix changes to Zulu.

This commit is contained in:
jsun%netscape.com 1998-10-09 00:46:48 +00:00
Родитель 453cc779ce
Коммит db942f5b9c
1 изменённых файлов: 9 добавлений и 0 удалений

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

@ -324,6 +324,15 @@ TransactionObject::executeIMIP(JulianPtrArray * out,
}
createContentTypeHeader(sMethod, sCharSet, sComponentType, sContentTypeHeader);
// added content-disposition to work with Lotus
if (((ICalComponent *)m_ICalComponentVctr->GetAt(0))->GetType() == ICalComponent::ICAL_COMPONENT_VEVENT)
{
sContentTypeHeader += "\r\nContent-Dispostion: inline; filename=\"event.ics\"";
}
else if (((ICalComponent *)m_ICalComponentVctr->GetAt(0))->GetType() == ICalComponent::ICAL_COMPONENT_VFREEBUSY)
{
sContentTypeHeader += "\r\nContent-Dispostion: inline; filename=\"freebusy.ifb\"";
}
//#ifdef DEBUG_ITIP
m_DebugITIPMessage = itipMessage;
//#endif /* DEBUG_ITIP */