| Commit message (Collapse) | Author | Age | Lines |
|
|
|
| |
Default Port
|
|
|
|
| |
MailNews Core being historically comm tended to avoid defining shorthand for Components.interfaces
|
| |
|
|
|
|
|
|
| |
LIST and RETR still appear to work as intended on ftp:// URLs after my changes. I wasn't able to test STOR because the browser doesn't appear to support FTP uploads at this time (although our FTP implementation appears perfectly capable of doing an FTP upload.)
If I understood the issue correctly, though, what we're doing is ensuring that we receive a preliminary 100 response from the FTP server for a given action before jumping to the 200 code describing what we do if the action was completed. Even though it makes no logical sense for a server to say an action was completed before it was initiated, someone could write a really annoying FTP server that takes advantage of this fact to crash the browser if they wanted.
|
| |
|
|
|
|
| |
This reverts commit fa473930f424bf17a9e545b601c84dd2e61364e3.
|
|
|
|
|
|
| |
regex lookbehind changes"
This reverts commit e79607a7a694dc2d48d65697b48138fa585145c9.
|
| |
|
|
|
|
| |
look up default applications on Windows
|
|
|
|
|
|
|
|
| |
- Store the clipboard even if it was set in a GTK dialog.
- Fix a GtkTargetList leak.
- Notify GTK that the data is no longer available for
clipboard_get_cb(), so that GTK will no longer advertise nor attempt to
store the data.
|
| |
|
| |
|
| |
|
|
|
|
|
| |
This gets rid of unused boolean return values on setters and a level of
indirection for calls to set values.
|
|
|
|
|
|
|
|
|
| |
Microsoft IME on Windows 10 20H1 (build 19025+) supports IME private
mode by input scope. Although previous Windows versions use an
undocumented API for Edge and IE only, the next Windows 10 release will
use a public API for it.
We pre-empt this potential privacy concern by setting the IS_PRIVATE
flag when in PB mode.
|
| |
|
|
|
|
| |
Use AutoTArray to set input scope.
|
|
|
|
|
| |
We never reach this with our normal use of this lib but adding the
sanity check just in case. (ported from upstream)
|
| |
|
|
|
|
| |
authorization request.
|
|
|
|
| |
OAuth2 access token.
|
|
|
|
| |
or not.
|
| |
|
|
|
|
| |
Response type token is part of the OAuth 2.0 Implicit Flow which is not used in Mail Applications, but also discouraged by the OAuth Working Group: https://developer.okta.com/blog/2019/05/01/is-the-oauth-implicit-flow-dead
|
|
|
|
| |
This prevents mail applications from attempting to use an unauthenticated connection to mailbox(s) and avoid unexpected deletion of local mbox files and subsequent re-download of mailbox content over imap.
|
|
|
|
| |
enabled.
|
|\ |
|
| |
| |
| |
| | |
Windows does not need this as mar generation is dependent on the NSIS Installer which already contains the call
|
|\| |
|
| |\
| |/
|/| |
|
|\ \ |
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | | |
This rollup patch adds additional length checks around cryptographic
primitives.
|
| | |
| | |
| | |
| | |
| | |
| | | |
HKDF-Expand enforces a maximum output length much shorter than stated in
the RFC. This patch aligns the implementation with the RFC by allocating
more output space when necessary.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
On MacOS, particularly large allocations within the platform limits
(1.2G+) will fail and crash. This adds a specific size check for that
when working around driver bugs (default).
While there, added a generic size_t limited size check for the
platform, and reporting OOM if too large.
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | | |
No longer follow the value's prototype chain when creating index updates
in IndexedDB.
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This also addresses clearing of document dependent JS slots which might
get out of sync with innerWindow navigation; relevant comments added.
This resolves #1253
|
| | |
| | |
| | |
| | | |
GCC 9 compiler does not like the way we have it in XPCWrappedNative.cpp
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
When Mozilla implemented this initially, only Windows 8 existed.
Because of the strict equal check, 8.1 and 10 didn't get HWA over RDP
while they are perfectly capable of doing so with RemoteFX. This change
allows any version of Windows from 8.0 onwards to use HWA over RDP.
|
| | | |
|
| | |
| | |
| | |
| | |
| | | |
360 Safeguard/360 Total Security (Qihoo) causes crashes in a11y components.
This adds the offending dll to the injection blocklist.
See BZ bug 1536227 for details.
|
| | |
| | |
| | |
| | | |
Add NSS_CMSSignedData_GetDigestAlgs and NSS_CMSSignedData_hasDigests which are required for security patches in mailnews applications. Ref: m-c bug 1526473
|