Gene Smith
7585dfc162
Bug 1404049 - fix that mail.imap.use_literal_plus set to false may have no effect. r=jorgk
...
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.
--HG--
extra : rebase_source : 6bc5e4e0f71a118a01e38b27e7e5dcf1b1f182d4
2017-09-28 23:35:21 -04:00
aceman
bf248afbed
Bug 1404489 - always use uint64_t as offset and int64_t as size for functions containing SlicedInputStream(). r=jorgk
2017-10-01 09:03:00 +02:00
Jorg K
3349392677
Bug 1404003 - Bug 1402750 follow-up: char16_t triggers undesired RFind(). r=aceman
2017-09-30 23:17:20 +02:00
aceman
30b277bb07
Bug 1404045 - remove unneeded inclusions of nsIInputStreamPump.h. r=jorgk
2017-09-30 10:39:00 +02:00
Jorg K
e41b54cb43
Bug 1404045 - follow-up: Use SlicedInputStream() where offset/length for NS_NewInputStreamPump() are necessary. rs=bustage-fix
...
--HG--
extra : rebase_source : 729b808b6a4a98e7fbfaaead2a7d644a90a711ca
2017-09-30 01:37:17 +02:00
Jorg K
0b417ea9a5
Bug 1402750 - Replace Append(NS_LITERAL_STRING("")) with AppendLiteral(u""). r=aceman
2017-09-27 01:02:10 +02:00
Jorg K
040b683c21
Bug 1402750 - Use Assign('') and Append('') for single character literals. r=aceman
2017-09-26 00:43:57 +02:00
Jorg K
4061934ccb
Bug 1402750 - Replace [Assign|Append|Insert|Equals](NS_LITERAL_CSTRING("")) with [Assign|Append|Insert|Equals]Literal(""). r=aceman
2017-09-25 23:39:54 +02:00
Jorg K
3e72f90234
Bug 1402750 - Replace [Assign|Append|Insert|Equals]("") with [Assign|Append|Insert|Equals]Literal(""). r=aceman
2017-09-25 23:39:52 +02:00
David Bienvenu
3a4b959a55
Bug 312593 - Allow unicode in passwords. r=neil,standard8,jorgk
2012-07-12 16:52:00 +02:00
Jorg K
4dd5e2139f
Bug 1401026 - Follow-up: update test expectancy with server name. r=me DONTBUILD
2017-09-20 18:37:00 +02:00
Jorg K
6fdb90e194
Bug 1401026 - user real server name instead of account name (pretty name) for IMAP alerts. r=frg
2017-09-20 15:51:20 +02:00
Boris Zbarsky
e616bde4ee
Bug 1371893 - Stop relying on nsIStringInputStream inheriting from nsIInputStream in comm-central code. r=jorgk,rkent
2017-06-09 23:45:41 -04:00
Jorg K
fca142dec6
Bug 1400661 - Fix IMAP Oauth2 error message. r=aceman
2017-09-17 18:39:30 +02:00
Jorg K
409c949fcc
Bug 1340972 - Part 16: replace xxx.swap(*yyy) with xxx.forget(yyy) in mailnews. r=aceman
2017-09-15 20:30:56 +02:00
Jorg K
2030517bc5
Bug 1340972 - Part 10: Replace error-prone Addref()/Release() with using RefPtr in mailnews/imap. r=aceman
2017-09-13 19:36:35 +02:00
Jorg K
ff17a0fff2
Bug 1340972 - Part 9: Fix use of NS_ADDREF() and NS_IF_ADDREF() in mailnews/imap. r=aceman
2017-09-13 15:13:34 +02:00
Jorg K
173e93f24c
Bug 1393219 - remove define for CaseInsensitiveCompare. r=mkmelin
2017-09-10 10:10:45 +02:00
Jorg K
104b8d591d
Bug 1398039 - Follow-up: Use CaseInsensitiveCompare (nsMsgUtils.h) for consistency. rs=bustage-fix DONTBUILD
2017-09-08 12:15:00 +02:00
Jorg K
4f87262acc
Bug 1398039 - Port bug 1393230: Remove string forward declarations and fix improper string usage in Find(). rs=bustage-fix
...
--HG--
extra : amend_source : f59e736f1f0b8a65165e5e829963e44d1f7af217
2017-09-08 11:53:21 +02:00
Jorg K
9d395f54b0
Bug 1395620 - fix chunking in IMAP download. r=aceman
2017-09-04 00:14:12 +02:00
Jorg K
b03bcb5a33
Bug 1334834 - remove use of nsIAtom from mailnews/nsIFolder*.idl, JS part. r=aceman
2017-08-27 13:57:53 +02:00
Jorg K
f2ba0343d4
Bug 1334834 - remove use of nsIAtom from mailnews/nsIFolder*.idl. r=aceman
2017-08-26 12:18:00 +02:00
Nicholas Nethercote
c32823a921
Bug 1393692 (part 1) - Convert nsIAtom arguments to strings before checking their value. r=jorgk
...
A number of OnItem*() methods have nsIAtom parameters. Some of these methods
convert those nsIAtoms to strings and then check their value against another
string. Others check their value against an atom obtained from nsIAtomService.
This patch changes the latter methods to be like the former methods, thus
removing numerous uses of nsIAtomService.
2017-08-25 16:35:44 +10:00
Nicholas Nethercote
d3924824ef
Bug 1393371 - Remove unused references to the nsIAtomService. r=jorgk
2017-08-24 15:42:19 +10:00
Jorg K
ae672ccce0
Bug 1391128 - Use strtoul() instead of atoi() when converting UID to uint32_t. r=aceman
2017-08-18 22:11:30 +02:00
Nicholas Nethercote
8a05045b50
Bug 1388253 - Convert nsTextFormatter:[v]smprintf() use to [v]ssprintf() in comm-central. r=jorgk.
2017-08-08 18:52:48 +10:00
Richard Marti
734e37399d
Bug 1388328 - Port bug 389565 to C-C: Replace nsIExternalProtocolService::LoadUrl with nsIExternalProtocolService::LoadURI (CPP part). r=jorgk
2017-08-08 14:47:13 +02:00
Nicholas Nethercote
d4b9b664a0
Bug 1386600 - Update nsIStringBundle method uses to account for them returning |AString| instead of |wstring|. r=jorgk.
2017-08-04 10:32:30 +10:00
Edmund Wong
6b13bb1bb9
Bug 1386916 - Port 1326520 to mailnews: Rename GetPath/SetPath to GetPathQueryRef/SetpathQueryRef. r=jorgk
2017-08-02 21:39:00 +02:00
Jorg K
6a036b1d8e
Bug 1386220 - AddRef/Release fix in nsImapMailFolder.cpp. r=aceman
2017-08-02 00:43:27 +02:00
Jorg K
b998a1974e
Backed out changeset c553f7084ca9 (bug 1176399) for causing Gmail problems. a=jorgk
2017-07-29 10:32:34 +02:00
Jorg K
21c5e86276
Bug 1383847 - fix nsImapService::IsMsgInMemCache(). r=rkent
2017-07-27 23:20:21 +02:00
Jorg K
1f507b2ef7
Bug 1384887 - Port bug 1384162 and bug 1384233 to mailnews: remove MailNewsDLF::CreateBlankDocument and references to SizePrintfMacros.h. rs=bustage-fix
2017-07-27 13:00:43 +02:00
Sylvestre Ledru
f6a65173fa
Bug 1354011 - Remove useless else blocks in order to reduce complexity in mailnews/imap/ (part 2). r=jorgk
...
--HG--
extra : rebase_source : edc4867c411dffc86b04e56f0378c5e24bd4ed5b
2017-04-06 00:36:00 +02:00
Sylvestre Ledru
3ad27d2c65
Bug 1354011 - Remove useless else blocks in order to reduce complexity in mailnews/imap/ r=jorgk
...
--HG--
extra : amend_source : 4976a0604a43c5efea2b467d8dc59b1f2dbe6689
2017-04-06 00:36:00 +02:00
Alfred Peters
bca738edba
Bug 1382010 - Use SASL mechanisms PLAIN and LOGIN, as defined in RFC 4422, in uppercase letters. r=jorgk
2017-07-20 08:33:00 +02:00
Jorg K
ea8b23aeb1
Bug 1382320 - Port bug 1380470 to mailnews: fix calls of add_task function. rs=bustage-fix
...
--HG--
extra : amend_source : 9952562b0be566f3522dbae67f24a5a57dc98bd3
2017-07-20 00:03:36 +02:00
Jorg K
f957482053
Bug 1378290 - Bug 1361020 follow-up: Don't truncate spec at &. r=rkent
2017-07-18 09:19:50 +02:00
Jorg K
ec251350be
Bug 1381006 - Port bug 1350958 to mailnews: s/NS_ReleaseOnMainThread/NS_ReleaseOnMainThreadSystemGroup/. rs=bustage-fix DONTBUILD
...
--HG--
extra : amend_source : 4a5a5988d0b7385205dda940b1650cf3c9255065
2017-07-14 15:27:34 +02:00
Nicholas Nethercote
98dded7243
Bug 1380906 - Update Thunderbird for nsIStringBundle changes in bug 1380227. r=jorgk
...
--HG--
extra : amend_source : 3fa24515b678039ed5f9292f8fad2b4fada4cd4a
2017-07-14 12:55:40 +10:00
Richard Marti
64a0ecbb73
Bug 1378086 - Port Bug 1377222 to mailnews [Replace InitWithFuncCallback with InitWithNamedFuncCallback]. r=jorgk
...
--HG--
extra : amend_source : 99b1ca94964e6e34c59d232f6ab9e2b7bdc02219
2017-07-04 11:42:26 +02:00
Jorg K
df036e0286
Bug 1372899 - provide scriptable MUTF-7 converter and use it in tests. r=aceman
2017-07-01 15:32:47 +02:00
Jorg K
7e5d45d144
Bug 1376414 - Port bug 1372405 to mailnews [Name all runnables]. rs=bustage-fix
2017-06-27 16:31:22 +02:00
Richard Marti
4ea2cfbff1
Bug 1374927 - Port bug 1372453 to C-C [Support to name the callers of ProxyReleaseEvent]. r=jorgk
2017-06-21 07:42:37 +02:00
Jorg K
5668c6c81a
Bug 1363281 - Follow-up: remove tests related to UTF-7 or x-mac-croatian. r=me
2017-06-14 15:28:54 +02:00
aceman
08ed3828f4
Bug 1370357 - fix uninitialized variable in nsImapMailFolder.cpp and nsAbCardProperty.cpp. r=jorgk
2017-06-07 14:59:00 +02:00
Kushal Singh ext:(%20and%20aceman%20%3Cacelists%40atlas.sk%3E)
2ae2c1ce5d
Bug 1351453 - Deprecate the prettiestName attribute of nsIMsgFolder. r=aceman,jorgk
...
--HG--
extra : rebase_source : d2d0417842b3deab8c96e3585d3a948b862f7cf3
2017-05-29 03:05:06 +05:30
Jorg K
3c87a58bf9
Bug 1368738 - Use GetSpecIgnoringRef() in GetPrincipalSpec() in all protocols. r=aceman
2017-05-30 23:44:33 +02:00
Kushal Singh
1dbe824293
Bug 1351453 - Part 1: Do not use deprecated prettiestName attribute of nsIMsgFolder. r=aceman
2017-05-28 18:06:35 +05:30