Commit message (Collapse) | Author | Age | Lines | |
---|---|---|---|---|
* | Bug 1257058 - Distinguish 'empty password' from no password received to ↵ | Matt A. Tobin | 2019-11-10 | -2/+5 |
| | | | | | | avoid shutdown crash. Tag #1273 | |||
* | Bug 1333038 - Use 'modern' pointers to fix crash due to ↵ | Matt A. Tobin | 2019-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. Tobin | 2019-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. Tobin | 2019-11-10 | -9/+12 |
| | | | | | | fix MOZ_ASSERT(). Tag #1273 | |||
* | Bug 1442648 - Fix mismatched types in mingw-w64 builds (const ↵ | Matt A. Tobin | 2019-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. Tobin | 2019-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. Tobin | 2019-11-10 | -0/+1 |
| | | | | Tag #1273 | |||
* | Bug 1216951 - Fix broken handling of split CR and LF between chunks. | Matt A. Tobin | 2019-11-10 | -26/+98 |
| | | | | Tag #1273 | |||
* | Revert "Issue #1273 - Remove Telemetry from Gloda" | Matt A. Tobin | 2019-11-10 | -0/+31 |
| | | | | This reverts commit 4db1ae892bad565e8e59ec6034b4c98946077248. | |||
* | Bug 1416033 - remove some unneeded includes in mailnews | Matt A. Tobin | 2019-11-10 | -69/+9 |
| | | | | Tag #1273 | |||
* | Bug 1399756 - (More) Code clean-up: Style nits, typos and trailing spaces | Matt A. Tobin | 2019-11-10 | -21/+21 |
| | | | | Tag #1273 | |||
* | Bug 1393219 - Code clean-up: Style nits, typos and trailing spaces | Matt A. Tobin | 2019-11-10 | -109/+107 |
| | | | | Tag #1273 | |||
* | Bug 825513 - Fix crash in nsImapProtocol::GetMessageSize() by adding null ↵ | Matt A. Tobin | 2019-11-10 | -32/+21 |
| | | | | | | check for m_runningUrl && m_hostSessionList. Tag #1273 | |||
* | Bug 1462316 - fix crash in nsAbView::OnItemAdded(). | Matt A. Tobin | 2019-11-10 | -0/+3 |
| | | | | Tag #1273 | |||
* | Bug 646901 - add error checking to fix crash in ↵ | Matt A. Tobin | 2019-11-10 | -7/+8 |
| | | | | | | | | nsMsgXFVirtualFolderDBView::OnSearchHit(). dbToUse was null Rag #1273 | |||
* | Bug 1487082 - Resolve potential for build bustage regarding bad implicit ↵ | Matt A. Tobin | 2019-11-10 | -69/+71 |
| | | | | | | | | | | | 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 Gloda | Matt A. Tobin | 2019-11-10 | -31/+0 |
| | ||||
* | Bug 1427732 - fix newline handling when copying messages and compacting folders. | Matt A. Tobin | 2019-11-10 | -30/+63 |
| | | | | Tag #1273 | |||
* | Bug 1227761 - Fix logic error in BuildAttachmentList(). | Matt A. Tobin | 2019-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. Tobin | 2019-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. Tobin | 2019-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. Tobin | 2019-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. Tobin | 2019-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. Tobin | 2019-11-10 | -20/+34 |
| | | | | | | system principal is used. Tag #1273 | |||
* | Merge branch 'master' into mailnews-work | Matt A. Tobin | 2019-11-10 | -48787/+32639 |
|\ | ||||
| * | Merge pull request #1277 from adeshkp/remove-adobe-primetime | New Tobin Paradigm | 2019-11-10 | -224/+8 |
| |\ | | | | | | | Remove Adobe Primetime support | |||
| | * | Issue #1259 - Part 7. Update tests for Adobe EME removal | adeshkp | 2019-11-10 | -39/+0 |
| | | | ||||
| | * | Issue #1259 - Part 6. Remobe Adobe EME from Basilisk frontend | adeshkp | 2019-11-10 | -28/+2 |
| | | | ||||
| | * | Issue #1259 - Part 5. Remove migration path for Adobe GMP storage | adeshkp | 2019-11-10 | -36/+0 |
| | | | | | | | | | | | | As a cleanup task, also remove GMP storage migration for Fx 42 era. | |||
| | * | Issue #1259 - Part 4. Remove Adobe EME from GMPUtils | adeshkp | 2019-11-10 | -9/+4 |
| | | | ||||
| | * | Issue #1259 - Part 3. Remove Adobe EME as a GMP source | adeshkp | 2019-11-10 | -35/+0 |
| | | | ||||
| | * | Issue #1259 - Part 2. Remove Adobe Primetime localization strings | adeshkp | 2019-11-10 | -12/+0 |
| | | | ||||
| | * | Issue #1259 - Part 1. Remove Adobe Primetime support from tree | adeshkp | 2019-11-10 | -65/+2 |
| | | | ||||
| * | | Issue #618 - Flip on module type scripting. | wolfbeast | 2019-11-10 | -1/+1 |
| | | | ||||
| * | | Merge pull request #1278 from MoonchildProductions/js-modules | Moonchild | 2019-11-10 | -254/+353 |
| |\ \ | | |/ | |/| | Partial solution for JS modules | |||
| | * | Issue #618 - Misc fixes (merge conflicts) | wolfbeast | 2019-11-10 | -4/+8 |
| | | | ||||
| | * | Merge branch 'master' into js-modules | wolfbeast | 2019-11-10 | -1139829/+854817 |
| | |\ | | |/ | |/| | | | | | | | # Conflicts: # modules/libpref/init/all.js | |||
| * | | Issue #447 - Improve the getHSTSPreloadList script | wolfbeast | 2019-11-09 | -12/+16 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | - Use HEAD instead of GET for probe to avoid loading pages - Reduce retries to 2 - Reduce timeout to 10 s (since we're just getting a HEAD this is royal) - Identify ourselves to websites as an automated tool - Improve performance of list merging (O(n^2) was getting too expensive) - Add a total counter and perform GC every 200 requests | |||
| * | | Issue #447 - Update HSTS preload list. | wolfbeast | 2019-11-09 | -11027/+26141 |
| | | | ||||
| * | | Issue #1254 - Update SQLite to 3.30.1 | wolfbeast | 2019-11-08 | -3966/+5306 |
| | | | ||||
| * | | Merge pull request #1276 from MoonchildProductions/cairo-work | Moonchild | 2019-11-08 | -31685/+743 |
| |\ \ | | | | | | | | | Update the in-tree cairo code. | |||
| | * | | Issue #1274 - Part 5: Misc fixes and version update. | wolfbeast | 2019-11-07 | -194/+25 |
| | | | | ||||
| | * | | Issue #1274 - Part 4: Remove some unnecessary checks for old Windows versions. | wolfbeast | 2019-11-07 | -28/+4 |
| | | | | | | | | | | | | | | | | This gets rid of deprecated GetVersionEx() calls as a bonus. | |||
| | * | | Issue #1274 - Part 3: Update libpixman licensing | wolfbeast | 2019-11-07 | -0/+55 |
| | | | | ||||
| | * | | Issue #1274 - Part 2: Update Windows prerequisite defines. | wolfbeast | 2019-11-07 | -18/+24 |
| | | | | ||||
| | * | | Issue #1274 - Part 1: Adopt the cairo version as our own. | wolfbeast | 2019-11-07 | -31460/+650 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Move header licensing from tri-license to MPL 2.0. MPL-compatible other licensing has been retained where originally present. - Remove individual superseded licensing terms. - Remove patches, outdated readmes & incomplete patch summaries. - Remove incomplete cairo release notes (only went up to 1.6.4 anyway). - Rewrite COPYING to indicate the current state of the library in tree. | |||
| * | | | Merge pull request #1214 from MoonchildProductions/certexception-work | Moonchild | 2019-11-08 | -68/+48 |
| |\ \ \ | | | | | | | | | | | Fix Certificate Exception dialog logic | |||
| | * | | | Issue #1064 - Part 3: Fix notifyObservers() call. | wolfbeast | 2019-11-04 | -1/+1 |
| | | | | | ||||
| | * | | | Issue #1064 - Part 2: Fix shorthand and services module import. | wolfbeast | 2019-11-04 | -3/+6 |
| | | | | | ||||
| | * | | | Merge branch 'master' into certexception-work | wolfbeast | 2019-11-04 | -26960/+9884 |
| | |\| | |