summaryrefslogtreecommitdiffstats
path: root/mailnews
Commit message (Collapse)AuthorAgeLines
...
* Bug 1167982 - Do charset detection for all text/* attachments in ↵Matt A. Tobin2019-11-11-1/+3
| | | | | | composition, not just text/plain. Tag #1273
* Bug 522450 - Place mail copy on the correct folder when using Reply to ListMatt A. Tobin2019-11-11-0/+1
| | | | | | This bug never landed in c-c Tag #1273
* Tails 6156 - Fix outdated error handling in accountcreation and remove buggy ↵Matt A. Tobin2019-11-11-12/+7
| | | | | | debug code Tag #1273
* Bug 971347 - Fix autoconfig vulnerable to active MITM attacks for all ↵Matt A. Tobin2019-11-11-77/+153
| | | | | | domains (including the ones in ISPDB) Tag #1273
* Bug 1020971 - Port bug 1015664: Remove NS_HIDDEN and friends.Matt A. Tobin2019-11-11-33/+0
| | | | Tag #1273
* Bug 1546840 - Allow GloDa queries for read or unread messagesMatt A. Tobin2019-11-11-0/+2
| | | | Tag #1273
* Bug 1508054 - reduce exposed API of nsMsgHdr.Matt A. Tobin2019-11-11-41/+53
| | | | Tag #1273
* Bug 1386601 - experimental patch to investigate Thunderbird topcrash, ↵Matt A. Tobin2019-11-10-0/+6
| | | | | | serializes S/MIME verification. Tag #1273
* Bug 1495698 - Fix hang when HTML signature references non-existent image.Matt A. Tobin2019-11-10-40/+47
| | | | Tag #1273
* Bug 1525120 - Fix condition for decoding attachments (base64/qp) when saving ↵Matt A. Tobin2019-11-10-5/+4
| | | | | | or forwarding. Tag #1273
* Bugs 1507218 and 1528615Matt A. Tobin2019-11-10-44/+132
| | | | Tag #1273
* Bugs 1402750 and 1490331 - Declare the character set correctly in the 'PGP ↵Matt A. Tobin2019-11-10-4/+4
| | | | | | add-on is missing' message. Tag #1273
* Bug 1523048 - when copying a filter, copy its triggering events too ↵Matt A. Tobin2019-11-10-4/+6
| | | | | | (filterType). Tag #1273
* Bug 393302 - Correct memory handling in MAPISendMail() and ↵Matt A. Tobin2019-11-10-143/+25
| | | | | | CMapiImp::SendMail() to fix "Send to > Mail Recipient" crash. Tag #1273
* Bug 1517464 - Fix crash in SMTP DTOR by properly initializing/testing pointer.Matt A. Tobin2019-11-10-1/+2
| | | | Tag #1273
* Bug 906469 - fix maildir crash while parsing a folder.Matt A. Tobin2019-11-10-3/+5
| | | | Tag #1273
* Bugs 1512557 and 1470716 - Convert nsIStringBundle pointers to nsCOMPtrs and ↵Matt A. Tobin2019-11-10-21/+10
| | | | | | release them when shutting down. Tag #1273
* Bug 390721 - When parsing headers to cancel an article, also use folded lines.Matt A. Tobin2019-11-10-79/+53
| | | | Tag #1273
* Bug 809513 - Prevent unread Drafts from showing in new mail notification.Matt A. Tobin2019-11-10-10/+22
| | | | | | Change mainly affects Windows. However, Linux integration also changed so that it also allows new mail notification to occur for folder with SentMail flag. Tag #1273
* Bug 1271353 - check own email addresses case-insensitively in correspondents ↵Matt A. Tobin2019-11-10-3/+25
| | | | | | column and ignore plus addressing part. Tag #1273
* Bug 1401858 - add null check to avoid crash in EncodedHeader()/DecodedHeader().Matt A. Tobin2019-11-10-1/+2
| | | | Tag #1273
* Bug 342632 - Allow defaultAccount to return success with nullptr result when ↵Matt A. Tobin2019-11-10-101/+121
| | | | | | there is no usable account. Tag #1273
* Bug 1508046 - return cleanly in LDAP autocomplete search if we are offline.Matt A. Tobin2019-11-10-2/+2
| | | | Tag #1273
* Bug 1507718 - crash in nsImapProtocol::GetMessageSize(). Make ↵Matt A. Tobin2019-11-10-3/+3
| | | | | | m_hostSessionList an nsCOMPtr. Tag #1273
* Bug 1320475 - Fix broken controllers for cmd_printcard and cmd_printcardpreview.Matt A. Tobin2019-11-10-0/+5
| | | | Tag #1273
* Bug 344205 - React correctly to NO/BAD tagged response to imap IDLE.Matt A. Tobin2019-11-10-8/+62
| | | | | | User is notifified and IDLE state is not entered if IDLE command fails. Tag #1273
* Bug 1257058 - Distinguish 'empty password' from no password received to ↵Matt A. Tobin2019-11-10-2/+5
| | | | | | avoid shutdown crash. Tag #1273
* Bug 1333038 - Use 'modern' pointers to fix crash due to ↵Matt A. Tobin2019-11-10-26/+14
| | | | | | | | nsMsgLineStreamBuffer object being deleted while still in use. Suspected "use after free" in nsMsgLineStreamBuffer::ReadNextLine() leading to crash since object may be destroyed while still in use on another thread. Tag #1273
* Bug 1494764 - Removed MOZ_ASSERT but now still process line where it would ↵Matt A. Tobin2019-11-10-6/+8
| | | | | | | | occur. MOZ_ASSERT changed to NS_WARNING. Also correctly handle case where last chunk ends with \r. Tested to make sure that regression identified in Bug 1494764 comment 10 remains fixed and that non-chunked and chunked messages are handled correctly including when \r\n is split between chunks. Tag #1273
* Bug 145113 - Make "next chunk starts with newline" flag a member variable to ↵Matt A. Tobin2019-11-10-9/+12
| | | | | | fix MOZ_ASSERT(). Tag #1273
* Bug 1442648 - Fix mismatched types in mingw-w64 builds (const ↵Matt A. Tobin2019-11-10-6/+6
| | | | | | | | char16_t*/char16ptr_t). When cross-compiling for Windows on Linux, fix mismatched types in nsMsgImapSearch.cpp. nsString::get() returns a char16ptr_t (with MOZ_USE_CHAR16_WRAPPER) and that causes a mismatch so we cast it to a const char16_t*. usAsciiCharSet is declared as a nsAutoString so we instead declare it as a char16_t* to avoid subsequent type mismatches. Tag #1273
* Bug 1317117 - call msgStore folder deletion during imap/news empty trash.Matt A. Tobin2019-11-10-139/+77
| | | | | | Also factors out some common code into nsMSgDBFolder::Delete(), and makes a couple of incidental changes to try and clarify the responsibilies of nsIMsgPluggableStore::DeleteFolder(). Tag #1273
* Bug 1444389 - Fix crash in nsImapProtocol::HandleMessageDownLoadLine().Matt A. Tobin2019-11-10-0/+1
| | | | Tag #1273
* Bug 1216951 - Fix broken handling of split CR and LF between chunks.Matt A. Tobin2019-11-10-26/+98
| | | | Tag #1273
* Revert "Issue #1273 - Remove Telemetry from Gloda"Matt A. Tobin2019-11-10-0/+31
| | | | This reverts commit 4db1ae892bad565e8e59ec6034b4c98946077248.
* Bug 1416033 - remove some unneeded includes in mailnewsMatt A. Tobin2019-11-10-69/+9
| | | | Tag #1273
* Bug 1393219 - Code clean-up: Style nits, typos and trailing spacesMatt A. Tobin2019-11-10-109/+107
| | | | Tag #1273
* Bug 825513 - Fix crash in nsImapProtocol::GetMessageSize() by adding null ↵Matt A. Tobin2019-11-10-32/+21
| | | | | | check for m_runningUrl && m_hostSessionList. Tag #1273
* Bug 1462316 - fix crash in nsAbView::OnItemAdded().Matt A. Tobin2019-11-10-0/+3
| | | | Tag #1273
* Bug 646901 - add error checking to fix crash in ↵Matt A. Tobin2019-11-10-7/+8
| | | | | | | | nsMsgXFVirtualFolderDBView::OnSearchHit(). dbToUse was null Rag #1273
* Bug 1487082 - Resolve potential for build bustage regarding bad implicit ↵Matt A. Tobin2019-11-10-59/+61
| | | | | | | | | | | conversion constructors * Part 1: make conversion CTORs explicit. Minor tweaks to conform with new(ish) static analysis rule which flags up implicit single-argument conversion constructors. * Part 2: fix a couple of double-mRefCnt declaration errors. * Part 3: Fix unsafe use of NS_ConvertASCIItoUTF16(). Tag #1273
* Issue #1273 - Remove Telemetry from GlodaMatt A. Tobin2019-11-10-31/+0
|
* Bug 1427732 - fix newline handling when copying messages and compacting folders.Matt A. Tobin2019-11-10-30/+63
| | | | Tag #1273
* Bug 1227761 - Fix logic error in BuildAttachmentList().Matt A. Tobin2019-11-10-7/+8
| | | | | | First attachment cannot be saved if MIME message has no body part. Tag #1273
* Bug 1079280 - Don't transmit email when imap append response is bad.Matt A. Tobin2019-11-10-1/+5
| | | | | | This only applies to non-literal+ appends. Bad response typically occurs when {size} parameter of append command is larger than server can accept. This prevents TB from sending megabytes of data to a server that has already rejected it. Tag #1273
* Bug 1404049 - fix that mail.imap.use_literal_plus set to false may have no ↵Matt A. Tobin2019-11-10-12/+8
| | | | | | | | effect. This is because it was only used in response to a CAPABILITY imap request. However, often CAPABILITY response occurs without a request so TB sees no need to do a request. Fix by moving the usage of use_literal_plus to where LITERAL+ capability is actually used. Tag #1273
* Bug 1461106 - Remove SMTP password from cache when deleted from password ↵Matt A. Tobin2019-11-10-2/+46
| | | | | | manager to prevent stale connection attempts. Tag #1273
* Bug 516464 - Remove passwords from cache when password manager contents are ↵Matt A. Tobin2019-11-10-10/+54
| | | | | | changed to prevent stale password attempts. Tag #1273
* Bug 1328847 - Change SEC_NORMAL to SEC_ALLOW_CROSS_ORIGIN_DATA_IS_NULL where ↵Matt A. Tobin2019-11-10-20/+34
| | | | | | system principal is used. Tag #1273
* Issue #1258 - Part 8: Ifdef MailNews OAuth2 SupportMatt A. Tobin2019-11-05-23/+176
| | | | Use --disable-mailnews-oauth2 to exclude it. Confvars won't be respected.