/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #include "nsMsgComposeService.h" #include "nsIMsgMessageService.h" #include "nsIMsgSend.h" #include "nsIMsgIdentity.h" #include "nsISmtpUrl.h" #include "nsIURI.h" #include "nsMsgI18N.h" #include "nsIMsgComposeParams.h" #include "nsXPCOM.h" #include "nsISupportsPrimitives.h" #include "nsIWindowWatcher.h" #include "mozIDOMWindow.h" #include "nsIDocumentViewer.h" #include "nsIMsgWindow.h" #include "nsIDocShell.h" #include "nsPIDOMWindow.h" #include "mozilla/dom/Document.h" #include "nsIAppWindow.h" #include "nsIWindowMediator.h" #include "nsIDocShellTreeItem.h" #include "nsIPrefService.h" #include "nsIPrefBranch.h" #include "nsIMsgAccountManager.h" #include "nsIStreamConverter.h" #include "nsToolkitCompsCID.h" #include "nsNetUtil.h" #include "nsIMsgMailNewsUrl.h" #include "nsIInterfaceRequestorUtils.h" #include "nsIMsgDatabase.h" #include "nsIDocumentEncoder.h" #include "mozilla/dom/Selection.h" #include "mozilla/intl/Segmenter.h" #include "mozilla/intl/LineBreaker.h" #include "mimemoz2.h" #include "nsIURIMutator.h" #include "mozilla/dom/Element.h" #include "nsFrameLoader.h" #include "nsSmtpUrl.h" #include "mozilla/Components.h" #include "mozilla/NullPrincipal.h" #include "mozilla/Preferences.h" #include "nsICommandLine.h" #include "nsMsgUtils.h" #include "nsIPrincipal.h" using namespace mozilla; using namespace mozilla::dom; nsMsgComposeService::nsMsgComposeService() = default; NS_IMPL_ISUPPORTS(nsMsgComposeService, nsIMsgComposeService, nsISupportsWeakReference) nsMsgComposeService::~nsMsgComposeService() { mOpenComposeWindows.Clear(); } nsresult nsMsgComposeService::Init() { nsresult rv = NS_OK; Reset(); // Since the compose service should only be initialized once, we can // be pretty sure there aren't any existing compose windows open. MsgCleanupTempFiles("nsmail", "tmp"); MsgCleanupTempFiles("nscopy", "tmp"); MsgCleanupTempFiles("nsemail", "eml"); MsgCleanupTempFiles("nsemail", "tmp"); MsgCleanupTempFiles("nsqmail", "tmp"); return rv; } void nsMsgComposeService::Reset() { mOpenComposeWindows.Clear(); } // Function to open a message compose window and pass an nsIMsgComposeParams // parameter to it. NS_IMETHODIMP nsMsgComposeService::OpenComposeWindowWithParams(const char* chrome, nsIMsgComposeParams* params) { NS_ENSURE_ARG_POINTER(params); nsresult rv; // Use default identity if no identity has been specified nsCOMPtr identity; params->GetIdentity(getter_AddRefs(identity)); if (!identity) { GetDefaultIdentity(getter_AddRefs(identity)); params->SetIdentity(identity); } if (!identity) { // Failed to get even a default identity. // Can't compose without identity (need to set up account first). // If we don't have an account, the 3pane will already be showing setup. return GetTo3PaneWindow(); } // Create a new window. nsCOMPtr wwatch = mozilla::components::WindowWatcher::Service(); nsCOMPtr msgParamsWrapper = do_CreateInstance(NS_SUPPORTS_INTERFACE_POINTER_CONTRACTID, &rv); NS_ENSURE_SUCCESS(rv, rv); msgParamsWrapper->SetData(params); msgParamsWrapper->SetDataIID(&NS_GET_IID(nsIMsgComposeParams)); nsCOMPtr newWindow; nsAutoCString chromeURL; if (chrome && *chrome) { chromeURL = nsDependentCString(chrome); } else { chromeURL = "chrome://messenger/content/messengercompose/messengercompose.xhtml"_ns; } rv = wwatch->OpenWindow(0, chromeURL, "_blank"_ns, "all,chrome,dialog=no,status,toolbar"_ns, msgParamsWrapper, getter_AddRefs(newWindow)); return rv; } NS_IMETHODIMP nsMsgComposeService::DetermineComposeHTML(nsIMsgIdentity* aIdentity, MSG_ComposeFormat aFormat, bool* aComposeHTML) { NS_ENSURE_ARG_POINTER(aComposeHTML); *aComposeHTML = true; switch (aFormat) { case nsIMsgCompFormat::HTML: *aComposeHTML = true; break; case nsIMsgCompFormat::PlainText: *aComposeHTML = false; break; default: nsCOMPtr identity = aIdentity; if (!identity) GetDefaultIdentity(getter_AddRefs(identity)); if (identity) { identity->GetComposeHtml(aComposeHTML); if (aFormat == nsIMsgCompFormat::OppositeOfDefault) *aComposeHTML = !*aComposeHTML; } else { // default identity not found. Use the mail.html_compose pref to // determine message compose type (HTML or PlainText). *aComposeHTML = Preferences::GetBool("mail.html_compose"); } break; } return NS_OK; } MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION nsresult nsMsgComposeService::GetHTMLForSelection(mozilla::dom::Selection* selection, nsACString& aSelHTML) { // Good hygiene aSelHTML.Truncate(); // Get the pref to see if we even should do reply quoting selection bool replyQuotingSelection = Preferences::GetBool("mailnews.reply_quoting_selection"); if (!replyQuotingSelection) return NS_ERROR_ABORT; bool requireMultipleWords = Preferences::GetBool("mailnews.reply_quoting_selection.multi_word", true); nsAutoCString charsOnlyIf; Preferences::GetCString("mailnews.reply_quoting_selection.only_if_chars", charsOnlyIf); if (requireMultipleWords || !charsOnlyIf.IsEmpty()) { nsAutoString selPlain; selection->Stringify(selPlain); // If "mailnews.reply_quoting_selection.multi_word" is on, then there must // be at least two words selected in order to quote just the selected text if (requireMultipleWords) { if (selPlain.IsEmpty()) return NS_ERROR_ABORT; mozilla::intl::LineBreakIteratorUtf16 lineBreakIter(selPlain); Maybe breakPt = lineBreakIter.Next(); if (breakPt.isNothing()) { // Not even one word, let alone multiple. return NS_ERROR_ABORT; } // If after the first word is only space, then there's not multiple // words const char16_t* begin = selPlain.BeginReading() + breakPt.value(); const char16_t* end = selPlain.EndReading(); if (std::all_of(begin, end, mozilla::intl::NS_IsSpace)) { return NS_ERROR_ABORT; } } if (!charsOnlyIf.IsEmpty()) { if (selPlain.FindCharInSet(NS_ConvertUTF8toUTF16(charsOnlyIf)) == kNotFound) { return NS_ERROR_ABORT; } } } nsAutoString selHTML; IgnoredErrorResult rv2; selection->ToStringWithFormat( u"text/html"_ns, nsIDocumentEncoder::OutputRaw | nsIDocumentEncoder::SkipInvisibleContent, 0, selHTML, rv2); if (rv2.Failed()) { return NS_ERROR_FAILURE; } // Now remove > . nsAutoCString html(NS_ConvertUTF16toUTF8(selHTML).get()); int32_t spanInd = html.Find(""); while (spanInd != kNotFound) { nsAutoCString right0(Substring(html, spanInd)); int32_t endInd = right0.Find(""); if (endInd == kNotFound) break; // oops, where is the closing tag gone? nsAutoCString right1(Substring(html, spanInd + endInd + 7)); html.SetLength(spanInd); html.Append(right1); spanInd = html.Find(""); } aSelHTML.Assign(html); return NS_OK; } nsresult nsMsgComposeService::GetTo3PaneWindow() { nsresult rv; nsCOMPtr windowMediator = do_GetService(NS_WINDOWMEDIATOR_CONTRACTID, &rv); NS_ENSURE_SUCCESS(rv, rv); nsCOMPtr domWindow; rv = windowMediator->GetMostRecentBrowserWindow(getter_AddRefs(domWindow)); NS_ENSURE_SUCCESS(rv, NS_ERROR_ABORT); nsCOMPtr outerWin = nsPIDOMWindowOuter::From(domWindow); if (outerWin) { outerWin->Focus(mozilla::dom::CallerType::System); return NS_OK; } return NS_ERROR_ABORT; } MOZ_CAN_RUN_SCRIPT_FOR_DEFINITION NS_IMETHODIMP nsMsgComposeService::OpenComposeWindow( const nsACString& msgComposeWindowURL, nsIMsgDBHdr* origMsgHdr, const nsACString& originalMsgURI, MSG_ComposeType type, MSG_ComposeFormat format, nsIMsgIdentity* aIdentity, const nsACString& from, nsIMsgWindow* aMsgWindow, mozilla::dom::Selection* selection, bool autodetectCharset) { nsresult rv; nsCOMPtr identity = aIdentity; if (!identity) GetDefaultIdentity(getter_AddRefs(identity)); if (!identity) { // Failed to get even a default identity. // Can't compose without identity (need to set up account first). // If we don't have an account, the 3pane will already be showing setup. return GetTo3PaneWindow(); } /* Actually, the only way to implement forward inline is to simulate a template message. Maybe one day when we will have more time we can change that */ if (type == nsIMsgCompType::ForwardInline || type == nsIMsgCompType::Draft || type == nsIMsgCompType::EditTemplate || type == nsIMsgCompType::Template || type == nsIMsgCompType::ReplyWithTemplate || type == nsIMsgCompType::Redirect || type == nsIMsgCompType::EditAsNew) { nsAutoCString uriToOpen(originalMsgURI); char sep = (uriToOpen.FindChar('?') == kNotFound) ? '?' : '&'; // The compose type that gets transmitted to a compose window open in mime // is communicated using url query parameters here. if (type == nsIMsgCompType::Redirect) { uriToOpen += sep; uriToOpen.AppendLiteral("redirect=true"); } else if (type == nsIMsgCompType::EditAsNew) { uriToOpen += sep; uriToOpen.AppendLiteral("editasnew=true"); } else if (type == nsIMsgCompType::EditTemplate) { uriToOpen += sep; uriToOpen.AppendLiteral("edittempl=true"); } return LoadDraftOrTemplate( uriToOpen, type == nsIMsgCompType::ForwardInline || type == nsIMsgCompType::Draft ? nsMimeOutput::nsMimeMessageDraftOrTemplate : nsMimeOutput::nsMimeMessageEditorTemplate, identity, originalMsgURI, origMsgHdr, type == nsIMsgCompType::ForwardInline, format == nsIMsgCompFormat::OppositeOfDefault, aMsgWindow, autodetectCharset); } nsCOMPtr pMsgComposeParams( do_CreateInstance("@mozilla.org/messengercompose/composeparams;1", &rv)); if (NS_SUCCEEDED(rv) && pMsgComposeParams) { nsCOMPtr pMsgCompFields(do_CreateInstance( "@mozilla.org/messengercompose/composefields;1", &rv)); if (NS_SUCCEEDED(rv) && pMsgCompFields) { pMsgComposeParams->SetType(type); pMsgComposeParams->SetFormat(format); pMsgComposeParams->SetIdentity(identity); pMsgComposeParams->SetAutodetectCharset(autodetectCharset); // When doing a reply (except with a template) see if there's a selection // that we should quote if (selection && (type == nsIMsgCompType::Reply || type == nsIMsgCompType::ReplyAll || type == nsIMsgCompType::ReplyToSender || type == nsIMsgCompType::ReplyToGroup || type == nsIMsgCompType::ReplyToSenderAndGroup || type == nsIMsgCompType::ReplyToList)) { nsCOMPtr node = selection->GetFocusNode(); nsAutoCString selHTML; if (node && NS_SUCCEEDED(GetHTMLForSelection(selection, selHTML))) { // Traverse the DOM tree upwards to check if the selection is // inside a
 tag.
          bool isInsidePre = false;
          for (nsCOMPtr parentNode = node; parentNode;
               parentNode = parentNode->GetParentNode()) {
            if (parentNode->LocalName().EqualsLiteral("pre")) {
              isInsidePre = true;
              break;
            }
          }
          // Wrap in 
 if it's an actual HTML 
 block or a plain-text
          // email.
          IgnoredErrorResult er;
          if (isInsidePre ||
              ((node->LocalName().IsEmpty() ||
                node->LocalName().EqualsLiteral("pre")) &&
               node->OwnerDoc()->QuerySelector(
                   "body > div:first-of-type.moz-text-plain"_ns, er))) {
            // Treat the quote as 
 for selections in actual 
 tags or
            // moz-text-plain bodies. If focusNode.localName isn't empty, we
            // had e.g. body selected and should not add 
.
            pMsgComposeParams->SetHtmlToQuote(
                R"(
)"_ns + selHTML +
                "
"_ns); } else { pMsgComposeParams->SetHtmlToQuote(selHTML); } } } if (!originalMsgURI.IsEmpty()) { if (type == nsIMsgCompType::NewsPost) { nsAutoCString newsURI(originalMsgURI); nsAutoCString group; // URI is "[s]news://host[:port]/group". int32_t slashpos = newsURI.RFindChar('/'); if (slashpos > 0) { group = Substring(newsURI, slashpos + 1); } else { group = originalMsgURI; } nsAutoCString unescapedName; MsgUnescapeString(group, nsINetUtil::ESCAPE_URL_FILE_BASENAME | nsINetUtil::ESCAPE_URL_FORCED, unescapedName); pMsgCompFields->SetNewsgroups(NS_ConvertUTF8toUTF16(unescapedName)); } else { pMsgComposeParams->SetOriginalMsgURI(originalMsgURI); pMsgComposeParams->SetOrigMsgHdr(origMsgHdr); pMsgCompFields->SetFrom(NS_ConvertUTF8toUTF16(from)); } } pMsgComposeParams->SetComposeFields(pMsgCompFields); rv = OpenComposeWindowWithParams( PromiseFlatCString(msgComposeWindowURL).get(), pMsgComposeParams); } } return rv; } NS_IMETHODIMP nsMsgComposeService::GetParamsForMailto( nsIURI* aURI, nsIMsgIdentity* aIdentity, MSG_ComposeFormat aFormat, nsIMsgComposeParams** aParams) { nsresult rv = NS_OK; if (aURI) { nsCString spec; aURI->GetSpec(spec); nsCOMPtr url; rv = nsMailtoUrl::NewMailtoURI(spec, nullptr, getter_AddRefs(url)); NS_ENSURE_SUCCESS(rv, rv); nsCOMPtr aMailtoUrl = do_QueryInterface(url, &rv); if (NS_SUCCEEDED(rv)) { MSG_ComposeFormat requestedComposeFormat = nsIMsgCompFormat::Default; nsCString toPart; nsCString ccPart; nsCString bccPart; nsCString subjectPart; nsCString bodyPart; nsCString newsgroup; nsCString refPart; nsCString HTMLBodyPart; aMailtoUrl->GetMessageContents(toPart, ccPart, bccPart, subjectPart, bodyPart, HTMLBodyPart, refPart, newsgroup, &requestedComposeFormat); // Override the compose format only for URLs that do not require a // specific format. if (requestedComposeFormat == nsIMsgCompFormat::Default) { requestedComposeFormat = aFormat; } bool composeHTMLFormat; DetermineComposeHTML(aIdentity, requestedComposeFormat, &composeHTMLFormat); // If there was an 'html-body' param, finding it will have requested // HTML format in GetMessageContents, so we try to use it first. If it's // empty, but we are composing in HTML because of the user's prefs, the // 'body' param needs to be escaped, since it's supposed to be plain // text, but it then doesn't need to sanitized. nsString rawBody; nsAutoString sanitizedBody; if (HTMLBodyPart.IsEmpty()) { if (composeHTMLFormat) { nsCString escaped; nsAppendEscapedHTML(bodyPart, escaped); CopyUTF8toUTF16(escaped, sanitizedBody); } else CopyUTF8toUTF16(bodyPart, rawBody); } else CopyUTF8toUTF16(HTMLBodyPart, rawBody); if (!rawBody.IsEmpty() && composeHTMLFormat) { // For security reason, we must sanitize the message body before // accepting any html... rv = HTMLSanitize(rawBody, sanitizedBody); // from mimemoz2.h if (NS_FAILED(rv)) { // Something went horribly wrong with parsing for html format // in the body. Set composeHTMLFormat to false so we show the // plain text mail compose. composeHTMLFormat = false; } } nsCOMPtr pMsgComposeParams(do_CreateInstance( "@mozilla.org/messengercompose/composeparams;1", &rv)); if (NS_SUCCEEDED(rv) && pMsgComposeParams) { pMsgComposeParams->SetType(nsIMsgCompType::MailToUrl); pMsgComposeParams->SetFormat(composeHTMLFormat ? nsIMsgCompFormat::HTML : nsIMsgCompFormat::PlainText); if (aIdentity) { pMsgComposeParams->SetIdentity(aIdentity); } nsCOMPtr pMsgCompFields(do_CreateInstance( "@mozilla.org/messengercompose/composefields;1", &rv)); if (pMsgCompFields) { // ugghh more conversion work!!!! pMsgCompFields->SetTo(NS_ConvertUTF8toUTF16(toPart)); pMsgCompFields->SetCc(NS_ConvertUTF8toUTF16(ccPart)); pMsgCompFields->SetBcc(NS_ConvertUTF8toUTF16(bccPart)); pMsgCompFields->SetNewsgroups(NS_ConvertUTF8toUTF16(newsgroup)); pMsgCompFields->SetReferences(refPart.get()); pMsgCompFields->SetSubject(NS_ConvertUTF8toUTF16(subjectPart)); pMsgCompFields->SetBody(composeHTMLFormat ? sanitizedBody : rawBody); pMsgComposeParams->SetComposeFields(pMsgCompFields); NS_ADDREF(*aParams = pMsgComposeParams); return NS_OK; } } // if we created msg compose params.... } // if we had a mailto url } // if we had a url... // if we got here we must have encountered an error *aParams = nullptr; return NS_ERROR_FAILURE; } NS_IMETHODIMP nsMsgComposeService::OpenComposeWindowWithURI( const char* aMsgComposeWindowURL, nsIURI* aURI, nsIMsgIdentity* identity, MSG_ComposeFormat aFormat) { nsCOMPtr pMsgComposeParams; nsresult rv = GetParamsForMailto(aURI, identity, aFormat, getter_AddRefs(pMsgComposeParams)); NS_ENSURE_SUCCESS(rv, rv); return OpenComposeWindowWithParams(aMsgComposeWindowURL, pMsgComposeParams); } NS_IMETHODIMP nsMsgComposeService::InitCompose(nsIMsgComposeParams* aParams, mozIDOMWindowProxy* aWindow, nsIDocShell* aDocShell, nsIMsgCompose** _retval) { nsresult rv; nsCOMPtr msgCompose = do_CreateInstance("@mozilla.org/messengercompose/compose;1", &rv); NS_ENSURE_SUCCESS(rv, rv); rv = msgCompose->Initialize(aParams, aWindow, aDocShell); NS_ENSURE_SUCCESS(rv, rv); NS_IF_ADDREF(*_retval = msgCompose); return rv; } nsresult nsMsgComposeService::GetDefaultIdentity(nsIMsgIdentity** _retval) { NS_ENSURE_ARG_POINTER(_retval); *_retval = nullptr; nsresult rv; nsCOMPtr accountManager = mozilla::components::AccountManager::Service(); nsCOMPtr defaultAccount; rv = accountManager->GetDefaultAccount(getter_AddRefs(defaultAccount)); NS_ENSURE_SUCCESS(rv, rv); return defaultAccount ? defaultAccount->GetDefaultIdentity(_retval) : NS_OK; } class nsMsgTemplateReplyHelper final : public nsIStreamListener, public nsIUrlListener { public: NS_DECL_ISUPPORTS NS_DECL_NSIURLLISTENER NS_DECL_NSISTREAMLISTENER NS_DECL_NSIREQUESTOBSERVER nsMsgTemplateReplyHelper(); nsCOMPtr mHdrToReplyTo; nsCOMPtr mTemplateHdr; nsCOMPtr mMsgWindow; nsCOMPtr mIdentity; nsCString mTemplateBody; bool mInMsgBody; char mLastBlockChars[3]; private: ~nsMsgTemplateReplyHelper(); }; NS_IMPL_ISUPPORTS(nsMsgTemplateReplyHelper, nsIStreamListener, nsIRequestObserver, nsIUrlListener) nsMsgTemplateReplyHelper::nsMsgTemplateReplyHelper() { mInMsgBody = false; memset(mLastBlockChars, 0, sizeof(mLastBlockChars)); } nsMsgTemplateReplyHelper::~nsMsgTemplateReplyHelper() {} NS_IMETHODIMP nsMsgTemplateReplyHelper::OnStartRunningUrl(nsIURI* aUrl) { return NS_OK; } NS_IMETHODIMP nsMsgTemplateReplyHelper::OnStopRunningUrl(nsIURI* aUrl, nsresult aExitCode) { NS_ENSURE_SUCCESS(aExitCode, aExitCode); nsresult rv; // create the compose params object nsCOMPtr pMsgComposeParams( do_CreateInstance("@mozilla.org/messengercompose/composeparams;1", &rv)); if (NS_FAILED(rv) || (!pMsgComposeParams)) return rv; nsCOMPtr compFields = do_CreateInstance("@mozilla.org/messengercompose/composefields;1", &rv); nsCString replyTo; mHdrToReplyTo->GetStringProperty("replyTo", replyTo); if (replyTo.IsEmpty()) mHdrToReplyTo->GetAuthor(replyTo); compFields->SetTo(NS_ConvertUTF8toUTF16(replyTo)); nsString body; nsString templateSubject, replySubject; mHdrToReplyTo->GetMime2DecodedSubject(replySubject); mTemplateHdr->GetMime2DecodedSubject(templateSubject); nsString subject(u"Auto: "_ns); // RFC 3834 3.1.5. subject.Append(templateSubject); if (!replySubject.IsEmpty()) { subject.AppendLiteral(u" (was: "); subject.Append(replySubject); subject.Append(u')'); } compFields->SetSubject(subject); compFields->SetRawHeader("Auto-Submitted", "auto-replied"_ns); nsCString charset; rv = mTemplateHdr->GetCharset(charset); NS_ENSURE_SUCCESS(rv, rv); rv = nsMsgI18NConvertToUnicode(charset, mTemplateBody, body); NS_WARNING_ASSERTION(NS_SUCCEEDED(rv), "couldn't convert templ body to unicode"); compFields->SetBody(body); nsCString msgUri; nsCOMPtr folder; mHdrToReplyTo->GetFolder(getter_AddRefs(folder)); folder->GetUriForMsg(mHdrToReplyTo, msgUri); // populate the compose params pMsgComposeParams->SetType(nsIMsgCompType::ReplyWithTemplate); pMsgComposeParams->SetFormat(nsIMsgCompFormat::Default); pMsgComposeParams->SetIdentity(mIdentity); pMsgComposeParams->SetComposeFields(compFields); pMsgComposeParams->SetOriginalMsgURI(msgUri); // create the nsIMsgCompose object to send the object nsCOMPtr pMsgCompose( do_CreateInstance("@mozilla.org/messengercompose/compose;1", &rv)); NS_ENSURE_SUCCESS(rv, rv); /** initialize nsIMsgCompose, Send the message, wait for send completion * response **/ rv = pMsgCompose->Initialize(pMsgComposeParams, nullptr, nullptr); NS_ENSURE_SUCCESS(rv, rv); RefPtr promise; return pMsgCompose->SendMsg(nsIMsgSend::nsMsgDeliverNow, mIdentity, nullptr, nullptr, getter_AddRefs(promise)); } NS_IMETHODIMP nsMsgTemplateReplyHelper::OnStartRequest(nsIRequest* request) { return NS_OK; } NS_IMETHODIMP nsMsgTemplateReplyHelper::OnStopRequest(nsIRequest* request, nsresult status) { if (NS_SUCCEEDED(status)) { // now we've got the message body in mTemplateBody - // need to set body in compose params and send the reply. } return NS_OK; } NS_IMETHODIMP nsMsgTemplateReplyHelper::OnDataAvailable(nsIRequest* request, nsIInputStream* inStream, uint64_t srcOffset, uint32_t count) { nsresult rv = NS_OK; char readBuf[1024]; uint64_t available; uint32_t readCount; uint32_t maxReadCount = sizeof(readBuf) - 1; rv = inStream->Available(&available); while (NS_SUCCEEDED(rv) && available > 0) { uint32_t bodyOffset = 0, readOffset = 0; if (!mInMsgBody && mLastBlockChars[0]) { memcpy(readBuf, mLastBlockChars, 3); readOffset = 3; maxReadCount -= 3; } if (maxReadCount > available) maxReadCount = (uint32_t)available; memset(readBuf, 0, sizeof(readBuf)); rv = inStream->Read(readBuf + readOffset, maxReadCount, &readCount); available -= readCount; readCount += readOffset; // we're mainly interested in the msg body, so we need to // find the header/body delimiter of a blank line. A blank line // looks like , , or if (!mInMsgBody) { for (uint32_t charIndex = 0; charIndex < readCount && !bodyOffset; charIndex++) { if (readBuf[charIndex] == '\r' || readBuf[charIndex] == '\n') { if (charIndex + 1 < readCount) { if (readBuf[charIndex] == readBuf[charIndex + 1]) { // got header+body separator bodyOffset = charIndex + 2; break; } else if ((charIndex + 3 < readCount) && !strncmp(readBuf + charIndex, "\r\n\r\n", 4)) { bodyOffset = charIndex + 4; break; } } } } mInMsgBody = bodyOffset != 0; if (!mInMsgBody && readCount > 3) // still in msg hdrs memmove(mLastBlockChars, readBuf + readCount - 3, 3); } mTemplateBody.Append(readBuf + bodyOffset); } return NS_OK; } NS_IMETHODIMP nsMsgComposeService::ReplyWithTemplate( nsIMsgDBHdr* aMsgHdr, const nsACString& templateUri, nsIMsgWindow* aMsgWindow, nsIMsgIncomingServer* aServer) { // To reply with template, we need the message body of the template. // I think we're going to need to stream the template message to ourselves, // and construct the body, and call setBody on the compFields. nsresult rv; const nsPromiseFlatCString& templateUriFlat = PromiseFlatCString(templateUri); nsCOMPtr accountManager = mozilla::components::AccountManager::Service(); nsCOMPtr account; rv = accountManager->FindAccountForServer(aServer, getter_AddRefs(account)); NS_ENSURE_SUCCESS(rv, rv); nsTArray> identities; rv = account->GetIdentities(identities); NS_ENSURE_SUCCESS(rv, rv); nsAutoCString recipients; aMsgHdr->GetRecipients(recipients); nsAutoCString ccList; aMsgHdr->GetCcList(ccList); // Go through the identities to see to whom this was addressed. // In case we get no match, this is likely a list/bulk/bcc/spam mail and we // shouldn't reply. RFC 3834 2. nsCOMPtr identity; // identity to reply from for (auto anIdentity : identities) { nsAutoCString identityEmail; anIdentity->GetEmail(identityEmail); if (FindInReadable(identityEmail, recipients, nsCaseInsensitiveCStringComparator) || FindInReadable(identityEmail, ccList, nsCaseInsensitiveCStringComparator)) { identity = anIdentity; break; } } if (!identity) // Found no match -> don't reply. return NS_ERROR_ABORT; RefPtr helper = new nsMsgTemplateReplyHelper; helper->mHdrToReplyTo = aMsgHdr; helper->mMsgWindow = aMsgWindow; helper->mIdentity = identity; nsAutoCString replyTo; aMsgHdr->GetStringProperty("replyTo", replyTo); if (replyTo.IsEmpty()) aMsgHdr->GetAuthor(replyTo); if (replyTo.IsEmpty()) return NS_ERROR_FAILURE; // nowhere to send the reply nsCOMPtr templateFolder; nsCOMPtr templateDB; nsCString templateMsgHdrUri; const char* query = PL_strstr(templateUriFlat.get(), "?messageId="); if (!query) return NS_ERROR_FAILURE; nsAutoCString folderUri(Substring(templateUriFlat.get(), query)); rv = GetExistingFolder(folderUri, getter_AddRefs(templateFolder)); NS_ENSURE_SUCCESS(rv, rv); rv = templateFolder->GetMsgDatabase(getter_AddRefs(templateDB)); NS_ENSURE_SUCCESS(rv, rv); const char* subject = PL_strstr(templateUriFlat.get(), "&subject="); if (subject) { const char* subjectEnd = subject + strlen(subject); nsAutoCString messageId(Substring(query + 11, subject)); nsAutoCString subjectString(Substring(subject + 9, subjectEnd)); templateDB->GetMsgHdrForMessageID(messageId.get(), getter_AddRefs(helper->mTemplateHdr)); if (helper->mTemplateHdr) templateFolder->GetUriForMsg(helper->mTemplateHdr, templateMsgHdrUri); // to use the subject, we'd need to expose a method to find a message by // subject, or painfully iterate through messages...We'll try to make the // message-id not change when saving a template first. } if (templateMsgHdrUri.IsEmpty()) { // ### probably want to return a specific error and // have the calling code disable the filter. NS_ASSERTION(false, "failed to get msg hdr"); return NS_ERROR_FAILURE; } // we need to convert the template uri, which is of the form // ?messageId=&subject= nsCOMPtr msgService; rv = GetMessageServiceFromURI(templateMsgHdrUri, getter_AddRefs(msgService)); NS_ENSURE_SUCCESS(rv, rv); nsCOMPtr dummyNull; rv = msgService->StreamMessage(templateMsgHdrUri, helper, aMsgWindow, helper, false, // convert data ""_ns, false, getter_AddRefs(dummyNull)); NS_ENSURE_SUCCESS(rv, rv); nsCOMPtr folder; aMsgHdr->GetFolder(getter_AddRefs(folder)); if (!folder) return NS_ERROR_NULL_POINTER; // We're sending a new message. Conceptually it's a reply though, so mark the // original message as replied. return folder->AddMessageDispositionState( aMsgHdr, nsIMsgFolder::nsMsgDispositionState_Replied); } NS_IMETHODIMP nsMsgComposeService::ForwardMessage(const nsAString& forwardTo, nsIMsgDBHdr* aMsgHdr, nsIMsgWindow* aMsgWindow, nsIMsgIncomingServer* aServer, uint32_t aForwardType) { NS_ENSURE_ARG_POINTER(aMsgHdr); nsresult rv; if (aForwardType == nsIMsgComposeService::kForwardAsDefault) { int32_t forwardPref = Preferences::GetInt("mail.forward_message_mode"); // 0=default as attachment 2=forward as inline with attachments, // (obsolete 4.x value)1=forward as quoted (mapped to 2 in mozilla) aForwardType = forwardPref == 0 ? nsIMsgComposeService::kForwardAsAttachment : nsIMsgComposeService::kForwardInline; } nsCString msgUri; nsCOMPtr folder; aMsgHdr->GetFolder(getter_AddRefs(folder)); NS_ENSURE_TRUE(folder, NS_ERROR_NULL_POINTER); folder->GetUriForMsg(aMsgHdr, msgUri); nsAutoCString uriToOpen(msgUri); // get the MsgIdentity for the above key using AccountManager nsCOMPtr accountManager = mozilla::components::AccountManager::Service(); nsCOMPtr account; nsCOMPtr identity; rv = accountManager->FindAccountForServer(aServer, getter_AddRefs(account)); NS_ENSURE_SUCCESS(rv, rv); rv = account->GetDefaultIdentity(getter_AddRefs(identity)); // Use default identity if no identity has been found on this account if (NS_FAILED(rv) || !identity) { rv = GetDefaultIdentity(getter_AddRefs(identity)); NS_ENSURE_SUCCESS(rv, rv); } if (aForwardType == nsIMsgComposeService::kForwardInline) return RunMessageThroughMimeDraft( uriToOpen, nsMimeOutput::nsMimeMessageDraftOrTemplate, identity, uriToOpen, aMsgHdr, true, forwardTo, false, aMsgWindow, false); // create the compose params object nsCOMPtr pMsgComposeParams( do_CreateInstance("@mozilla.org/messengercompose/composeparams;1", &rv)); NS_ENSURE_SUCCESS(rv, rv); nsCOMPtr compFields = do_CreateInstance("@mozilla.org/messengercompose/composefields;1", &rv); compFields->SetTo(forwardTo); // populate the compose params pMsgComposeParams->SetType(nsIMsgCompType::ForwardAsAttachment); pMsgComposeParams->SetFormat(nsIMsgCompFormat::Default); pMsgComposeParams->SetIdentity(identity); pMsgComposeParams->SetComposeFields(compFields); pMsgComposeParams->SetOriginalMsgURI(uriToOpen); // create the nsIMsgCompose object to send the object nsCOMPtr pMsgCompose( do_CreateInstance("@mozilla.org/messengercompose/compose;1", &rv)); NS_ENSURE_SUCCESS(rv, rv); // Initialize nsIMsgCompose, Send the message. rv = pMsgCompose->Initialize(pMsgComposeParams, nullptr, nullptr); NS_ENSURE_SUCCESS(rv, rv); RefPtr promise; rv = pMsgCompose->SendMsg(nsIMsgSend::nsMsgDeliverNow, identity, nullptr, nullptr, getter_AddRefs(promise)); NS_ENSURE_SUCCESS(rv, rv); // nsMsgCompose::ProcessReplyFlags usually takes care of marking messages // as forwarded. ProcessReplyFlags is normally called from // nsMsgComposeSendListener::OnStopSending but for this case the msgCompose // object is not set so ProcessReplyFlags won't get called. // Therefore, let's just mark it here instead. return folder->AddMessageDispositionState( aMsgHdr, nsIMsgFolder::nsMsgDispositionState_Forwarded); } NS_IMETHODIMP nsMsgComposeService::RegisterComposeDocShell(nsIDocShell* aDocShell, nsIMsgCompose* aComposeObject) { NS_ENSURE_ARG_POINTER(aDocShell); NS_ENSURE_ARG_POINTER(aComposeObject); nsresult rv; // add the msg compose / dom window mapping to our hash table nsWeakPtr weakDocShell = do_GetWeakReference(aDocShell, &rv); NS_ENSURE_SUCCESS(rv, rv); nsWeakPtr weakMsgComposePtr = do_GetWeakReference(aComposeObject); NS_ENSURE_SUCCESS(rv, rv); mOpenComposeWindows.InsertOrUpdate(weakDocShell, weakMsgComposePtr); return rv; } NS_IMETHODIMP nsMsgComposeService::UnregisterComposeDocShell(nsIDocShell* aDocShell) { NS_ENSURE_ARG_POINTER(aDocShell); nsresult rv; nsWeakPtr weakDocShell = do_GetWeakReference(aDocShell, &rv); NS_ENSURE_SUCCESS(rv, rv); mOpenComposeWindows.Remove(weakDocShell); return rv; } NS_IMETHODIMP nsMsgComposeService::GetMsgComposeForDocShell(nsIDocShell* aDocShell, nsIMsgCompose** aComposeObject) { NS_ENSURE_ARG_POINTER(aDocShell); NS_ENSURE_ARG_POINTER(aComposeObject); if (!mOpenComposeWindows.Count()) return NS_ERROR_FAILURE; // get the weak reference for our dom window nsresult rv; nsWeakPtr weakDocShell = do_GetWeakReference(aDocShell, &rv); NS_ENSURE_SUCCESS(rv, rv); nsWeakPtr weakMsgComposePtr; if (!mOpenComposeWindows.Get(weakDocShell, getter_AddRefs(weakMsgComposePtr))) return NS_ERROR_FAILURE; nsCOMPtr msgCompose = do_QueryReferent(weakMsgComposePtr, &rv); NS_ENSURE_SUCCESS(rv, rv); NS_IF_ADDREF(*aComposeObject = msgCompose); return rv; } /** * LoadDraftOrTemplate * Helper routine used to run msgURI through libmime in order to fetch the * contents for a draft or template. */ nsresult nsMsgComposeService::LoadDraftOrTemplate( const nsACString& aMsgURI, nsMimeOutputType aOutType, nsIMsgIdentity* aIdentity, const nsACString& aOriginalMsgURI, nsIMsgDBHdr* aOrigMsgHdr, bool aForwardInline, bool overrideComposeFormat, nsIMsgWindow* aMsgWindow, bool autodetectCharset) { return RunMessageThroughMimeDraft( aMsgURI, aOutType, aIdentity, aOriginalMsgURI, aOrigMsgHdr, aForwardInline, EmptyString(), overrideComposeFormat, aMsgWindow, autodetectCharset); } /** * Run the aMsgURI message through libmime. We set various attributes of the * nsIMimeStreamConverter so mimedrft.cpp will know what to do with the message * when its done streaming. Usually that will be opening a compose window * with the contents of the message, but if forwardTo is non-empty, mimedrft.cpp * will forward the contents directly. * * @param aMsgURI URI to stream, which is the msgUri + any extra terms, e.g., * "redirect=true". * @param aOutType nsMimeOutput::nsMimeMessageDraftOrTemplate or * nsMimeOutput::nsMimeMessageEditorTemplate * @param aIdentity identity to use for the new message * @param aOriginalMsgURI msgURI w/o any extra terms * @param aOrigMsgHdr nsIMsgDBHdr corresponding to aOriginalMsgURI * @param aForwardInline true if doing a forward inline * @param aForwardTo e-mail address to forward msg to. This is used for * forward inline message filter actions. * @param aOverrideComposeFormat True if the user had shift key down when doing a command that opens the compose window, * which means we switch the compose window used * from the default. * @param aMsgWindow msgWindow to pass into LoadMessage. */ nsresult nsMsgComposeService::RunMessageThroughMimeDraft( const nsACString& aMsgURI, nsMimeOutputType aOutType, nsIMsgIdentity* aIdentity, const nsACString& aOriginalMsgURI, nsIMsgDBHdr* aOrigMsgHdr, bool aForwardInline, const nsAString& aForwardTo, bool aOverrideComposeFormat, nsIMsgWindow* aMsgWindow, bool autodetectCharset) { nsCOMPtr messageService; nsresult rv = GetMessageServiceFromURI(aMsgURI, getter_AddRefs(messageService)); NS_ENSURE_SUCCESS(rv, rv); // Create a mime parser (nsIMimeStreamConverter)to do the conversion. nsCOMPtr mimeConverter = do_CreateInstance( "@mozilla.org/streamconv;1?from=message/rfc822&to=application/xhtml+xml", &rv); NS_ENSURE_SUCCESS(rv, rv); mimeConverter->SetMimeOutputType( aOutType); // Set the type of output for libmime mimeConverter->SetForwardInline(aForwardInline); if (!aForwardTo.IsEmpty()) { mimeConverter->SetForwardInlineFilter(true); mimeConverter->SetForwardToAddress(aForwardTo); } mimeConverter->SetOverrideComposeFormat(aOverrideComposeFormat); mimeConverter->SetIdentity(aIdentity); mimeConverter->SetOriginalMsgURI(aOriginalMsgURI); mimeConverter->SetOrigMsgHdr(aOrigMsgHdr); nsCOMPtr url; bool fileUrl = StringBeginsWith(aMsgURI, "file:"_ns); nsCString mailboxUri(aMsgURI); if (fileUrl) { // We loaded a .eml file from a file: url. Construct equivalent mailbox url. mailboxUri.Replace(0, 5, "mailbox:"_ns); mailboxUri.AppendLiteral("&number=0"); // Need this to prevent nsMsgCompose::TagEmbeddedObjects from setting // inline images as moz-do-not-send. mimeConverter->SetOriginalMsgURI(mailboxUri); } if (fileUrl || PromiseFlatCString(aMsgURI).Find( "&type=application/x-message-display") >= 0) rv = NS_NewURI(getter_AddRefs(url), mailboxUri); else rv = messageService->GetUrlForUri(aMsgURI, aMsgWindow, getter_AddRefs(url)); NS_ENSURE_SUCCESS(rv, rv); nsCOMPtr mailnewsurl = do_QueryInterface(url); if (mailnewsurl) { // If the current protocol uses `nsIMsgMailNewsUrl`, call `SetSpecInternal` // so the base URL is parsed as the message service will expect. rv = mailnewsurl->SetSpecInternal(mailboxUri); NS_ENSURE_SUCCESS(rv, rv); } // if we are forwarding a message and that message used a charset override // then forward that as auto-detect flag, too. nsCOMPtr i18nUrl(do_QueryInterface(url)); if (i18nUrl) (void)i18nUrl->SetAutodetectCharset(autodetectCharset); nsCOMPtr nullPrincipal = NullPrincipal::CreateWithoutOriginAttributes(); nsCOMPtr channel; rv = NS_NewInputStreamChannel( getter_AddRefs(channel), url, nullptr, nullPrincipal, nsILoadInfo::SEC_ALLOW_CROSS_ORIGIN_SEC_CONTEXT_IS_NULL, nsIContentPolicy::TYPE_OTHER); NS_ASSERTION(NS_SUCCEEDED(rv), "NS_NewChannel failed."); if (NS_FAILED(rv)) return rv; nsCOMPtr converter = do_QueryInterface(mimeConverter); rv = converter->AsyncConvertData(nullptr, nullptr, nullptr, channel); NS_ENSURE_SUCCESS(rv, rv); // Now, just plug the two together and get the hell out of the way! nsCOMPtr streamListener = do_QueryInterface(mimeConverter); nsCOMPtr dummyNull; return messageService->StreamMessage(aMsgURI, streamListener, aMsgWindow, nullptr, false, ""_ns, false, getter_AddRefs(dummyNull)); }