1
0
mirror of https://github.com/moparisthebest/k-9 synced 2025-01-30 14:50:14 -05:00

Commit Graph

  • 4a6f2e419b . Fixed bug where always BCC address is added again when editing a draft Bao-Long Nguyen-Trong 2009-05-14 00:09:43 +0000
  • 536133daf1 . Fixed issue 419 . Moved signature to the bottom of the message body view so that it is not editable TODO: Add signature location preference / settings Bao-Long Nguyen-Trong 2009-05-14 00:03:19 +0000
  • 182bc74755 New spanish translation from Ivan Jimenez <ijs1980@yahoo.es> Jesse Vincent 2009-05-12 10:44:24 +0000
  • 724c0aed31 Minor optiomization to help with the OutOfMemoryError pbs we have been getting Bao-Long Nguyen-Trong 2009-05-12 05:31:21 +0000
  • 6caccc4ead . Rolled back some code from r505 that are not usefull. The code that really prevents the double message in POP3 is when we set the X_DOWNLOADED_FULL in the POP3 folder class Bao-Long Nguyen-Trong 2009-05-11 23:31:59 +0000
  • 5ab77dcd64 Refactored message loading for view --> Perfomance improvement: the code was doing duplicates calls to the server to set SEEN flag and duplicate access to the db. Bao-Long Nguyen-Trong 2009-05-11 04:39:03 +0000
  • 7d98ed60ad Reverted signature formatting code that was not meant to be committed Bao-Long Nguyen-Trong 2009-05-10 13:55:28 +0000
  • bb8629abe8 . Potential fix for issue 404: now doing all HTMLization in one pass to minimize the amount of String objects Bao-Long Nguyen-Trong 2009-05-10 07:05:24 +0000
  • 5b0dee8cc0 . Large messages are now only retrieved once for POP3 servers that don't support the TOP command Bao-Long Nguyen-Trong 2009-05-10 05:47:26 +0000
  • e844f4ab0c Fixed issue 191 Bao-Long Nguyen-Trong 2009-05-10 05:39:47 +0000
  • 97a4f97b64 Issue 234 Fix POP3 deletes. Verizon uses - in their POP3 UIDs, and K9 was assuming that only Local UIDs have -. Removed that assumption. Also, after issuing DELE on POP3 connection, need to also issue a QUIT. The delete code in MessagingController now closes the folder after deleting a message, which will slow down IMAP deletes, but also conserve connections, so is probably a net benefit. Daniel Applebaum 2009-05-09 15:22:36 +0000
  • 718e27dab9 WebDavStore updates to fix authentication issues - based on design and counselling from ismarc31 Jesse Vincent 2009-05-07 03:17:26 +0000
  • 96c98e3070 Reformat executeSimpleCommand Daniel Applebaum 2009-05-06 00:16:47 +0000
  • 27e0ec1b80 Decrement mMessageCount when an untagged EXPUNGE is received Daniel Applebaum 2009-05-06 00:12:30 +0000
  • 5be7ee8517 . Added Z as keyboard shortcut to toggle read flag . Removed duplicate adapter notification and hence data reload Bao-Long Nguyen-Trong 2009-05-05 16:26:04 +0000
  • 28b054c8d2 v112 Jesse Vincent 2009-05-05 04:53:29 +0000
  • 1d7fdbeb92 expose download status of messages. slightly grey out messages that haven't yet been downloaded fully Jesse Vincent 2009-05-05 04:51:11 +0000
  • 7cdac9e721 Flip the message color background to white in the message list for better contrast Jesse Vincent 2009-05-05 04:20:41 +0000
  • aac64b03a5 Make sure not to lose an untagged EXISTS, even if it came during a command that we didn't handle properly. Daniel Applebaum 2009-05-05 04:03:56 +0000
  • 4ed1c82855 Proposed fix for "unreopenable" folders bug Jesse Vincent 2009-05-05 03:15:07 +0000
  • fb7882411e v111 Jesse Vincent 2009-05-05 02:13:42 +0000
  • d20fbc09fc Stop using a custom WebViewClient - it caused keybinding and url-opening bugs. If anything the new version feels a bit faster Jesse Vincent 2009-05-05 02:13:02 +0000
  • 7dcd346e0f MessageView shouldn't swallow keybindings Jesse Vincent 2009-05-05 01:56:41 +0000
  • 651642faeb Automatically re-synchronize the IMAP protocol. Previously, losses of synchronization could happen if an Exception was thrown while parsing an untagged response without using executeSimpleCommand. For instance, while doing a fetch. Once synchronization was lost, later commands would fail in surprising ways. One manifestation of such failures was spontaneously emptying of folders when search results were not returned properly. The new code makes sure to only accept OK responses with the tag of the command, and discards the untagged responses from previous command. Daniel Applebaum 2009-05-05 00:42:05 +0000
  • 7daf4ef1e6 We don't actually want to clear out the plaintext version of the message. K-9 uses that for replies Jesse Vincent 2009-05-05 00:29:15 +0000
  • dec4a6371f Fix auto-open of INBOX per danapple0 Jesse Vincent 2009-05-05 00:24:18 +0000
  • 90df78d5e8 v110 Jesse Vincent 2009-05-03 20:54:06 +0000
  • 323c294250 Move our linkification and htmlification of mesages from on-display to on-sync. There's no need to defer this work until the user is waiting for it Jesse Vincent 2009-05-03 20:52:32 +0000
  • f2fa5ae2f6 FolderMessageList performance improvement from debauchedsloth++ (Partial application of his patch from Issue 285) Jesse Vincent 2009-05-03 04:39:13 +0000
  • 92a8c174cc All strings updates from debauchedsloth++'s patch in Issue 285 - not all strings are in use yet Jesse Vincent 2009-05-03 04:38:04 +0000
  • 2dda469255 MessageView performance improvlements by debauchedsloth++ (This includes all changes from Issue 285's MessageView.java patch) Jesse Vincent 2009-05-03 04:36:33 +0000
  • 4b444b2bcf don't try to recreate the indexes on every db update as it will surely fail Jesse Vincent 2009-05-03 04:22:34 +0000
  • 46eef4589d Fixed issue 160 - Applied a patch to enable K9 to respond to addtional SEND intents Jesse Vincent 2009-05-02 22:30:08 +0000
  • ab82b10918 Add a few indexes to the message and folder lists Jesse Vincent 2009-05-02 22:14:45 +0000
  • d185adfc27 Fix up text/plain message view to escape < and > and & when converting plain text to html for display Jesse Vincent 2009-05-02 22:06:42 +0000
  • 0ffe1621a2 Issue 394 Issue 252 Daniel Applebaum 2009-05-02 14:49:29 +0000
  • b603d899db Issue 395 Daniel Applebaum 2009-05-02 00:37:22 +0000
  • d34b8119f6 release 109 Jesse Vincent 2009-04-29 13:02:15 +0000
  • 509fa8c8d3 Issue 386 Daniel Applebaum 2009-04-28 12:23:57 +0000
  • 8f41f8a96d Google changed the manifest requirements Jesse Vincent 2009-04-25 15:27:46 +0000
  • 332b152ae6 v108 Jesse Vincent 2009-04-25 15:11:33 +0000
  • e6ea0d725c Made text_box_light have a white background Jesse Vincent 2009-04-25 15:10:33 +0000
  • 973b3f63fa Made long email addresses not ovewrite dates in vertical folder message lists. Jesse Vincent 2009-04-24 07:36:26 +0000
  • 989ccad161 Fix for issue 382 - Kind of ugly for the moment, but render the folder config popup as a popup. This makes the menus it shows not white-on-white Jesse Vincent 2009-04-24 07:35:40 +0000
  • 79623b2e70 release 107 Jesse Vincent 2009-04-21 11:04:43 +0000
  • 636127d6fb Make the folder selector use a new K9 dialog theme so it looks like a popup rather than the whole current app context (This wouldn't be necessary, but the builtin dialog styles are broken for light themes before cupcake) Jesse Vincent 2009-04-21 10:43:18 +0000
  • d1661ee1f5 Reset mMessageCount before executing SELECT. Only handle untagged responses to SELECT once. Daniel Applebaum 2009-04-21 05:34:57 +0000
  • f0f07c36de Issue 63 Issue 201 Issue 224 Issue 342 Daniel Applebaum 2009-04-21 04:22:02 +0000
  • b0a295e1a3 Re-add the code I removed twice, now that dan explained what it works around Jesse Vincent 2009-04-20 06:27:51 +0000
  • ee92878d9e Small english localization cleanups Jesse Vincent 2009-04-20 02:07:47 +0000
  • 6972a58801 Temporary fix for preferences theme - make it black until we figure out how to fix the dialogs Jesse Vincent 2009-04-20 01:59:23 +0000
  • 1728f9bfa9 Fixing the background color of the textbox for new-message items Jesse Vincent 2009-04-20 01:46:14 +0000
  • d0d6eb5442 Set the landscape-mode text colors to something more reasonable (and really "default") in the landscape xml layout templates Re-remove the explicit subject color hardcoding in FolderMessageList.java Jesse Vincent 2009-04-20 00:58:50 +0000
  • c00eb30524 Restore text color handling Daniel Applebaum 2009-04-19 14:59:18 +0000
  • 64eda5106c Switch to a light visual theme more in keeping with every other mail client on the planet. Start to improve padding/spacing/layout Jesse Vincent 2009-04-19 09:10:32 +0000
  • e24b3429dc Allow the user to continue setup, even if their server settings don't work Jesse Vincent 2009-04-19 07:20:38 +0000
  • 3ea142d60d 105 Jesse Vincent 2009-04-17 16:16:18 +0000
  • 47f5230bed Issue 248 Issue 192 Daniel Applebaum 2009-04-17 03:22:45 +0000
  • 4ad4216de5 Fix problems connecting to POP3 servers which lack the CAPA command. Daniel Applebaum 2009-04-15 13:05:29 +0000
  • 7db506e2d0 104 release engineering Jesse Vincent 2009-04-12 02:01:38 +0000
  • 03dd89b3f9 Get rid of @Overrides that cause compilation failures with Java 1.5 Daniel Applebaum 2009-04-12 01:51:54 +0000
  • aa4a92a541 Application of patch submitted by cnehren for Issue 356, with generalization. Daniel Applebaum 2009-04-11 15:24:22 +0000
  • 932adf5ed2 Issue 143 Merged from branch issue143 @ revision 426: Daniel Applebaum 2009-04-11 14:33:54 +0000
  • 06a90571cd Obsolete Daniel Applebaum 2009-04-11 14:23:24 +0000
  • f282d86c76 Better error message for new failure algorithm Daniel Applebaum 2009-04-11 14:22:19 +0000
  • 5711abdee5 Issue 234 Issue 366 Issue 329 Daniel Applebaum 2009-04-11 02:11:17 +0000
  • 388969d76c Automatically fix folder selections. Daniel Applebaum 2009-04-11 01:26:44 +0000
  • bf98b5c2af Issue 366 Daniel Applebaum 2009-04-09 17:48:05 +0000
  • e92ac38052 Fix for empty real folder name issue identified in Comment 10 of Issue 366 Daniel Applebaum 2009-04-09 15:05:24 +0000
  • ee4ac07788 Issue 364 Daniel Applebaum 2009-04-08 18:14:52 +0000
  • f307bfc1eb Issue 235 Daniel Applebaum 2009-04-06 01:37:35 +0000
  • d39739f884 103 Jesse Vincent 2009-04-05 21:17:39 +0000
  • 1b5fdb99d9 Fix for authentication issue describe in issue 359. Matthew Brace 2009-04-02 01:52:00 +0000
  • f2ee0ae34f Updated german translation (Issue 357, thanks dani!). Removed some unused strings that were left in the files. Robert Jacob 2009-04-01 14:57:55 +0000
  • b210762ac7 Revert unintentional change Daniel Applebaum 2009-04-01 03:38:55 +0000
  • 8ca1830afb Add "Check mail" menu items: Accounts: Option menu->Check mail = check mail in all folders of all accounts Accounts: Context (long-press on account) menu->Check mail = check mail in all folders of this account Daniel Applebaum 2009-04-01 03:25:16 +0000
  • f699361390 Prevent multiple appendages of the email signature (Issue 66). Matthew Brace 2009-03-26 06:06:04 +0000
  • b0cf11d64c IMAP "system" folders can be selected with pick list (Patch for Issue 182) Robert Jacob 2009-03-24 18:20:16 +0000
  • 6a2ab4008c Restructure the organization of WBXML classes and code pages. activesync Matthew Brace 2009-03-18 00:44:21 +0000
  • 6949a04d28 Added a code page that was missed. Built out the architecture for generic store/specialized protocol model. Implemented getPersonalNamespaces for ActiveSyncProtocol. Some logic in ActiveSyncProtocol.java should be abstracted further and has a little bit of cleanup work needed. Matthew Brace 2009-03-16 04:26:04 +0000
  • 6411e006fc 0.102 Jesse Vincent 2009-03-16 02:12:51 +0000
  • f0bfb31883 Merge compile options change from trunk. Enable selecting an ActiveSync account and checkSettings for Incoming messages for ActiveSyncStore. Matthew Brace 2009-03-15 02:04:26 +0000
  • a1e2f87ac6 Adding the framework for the execution model for ActiveSync. Matthew Brace 2009-03-15 00:52:49 +0000
  • 5a729ab0df Some fixes to WBXML. Turns out recursing through the folder listing can overflow the stack, so loop over it instead. Matthew Brace 2009-03-14 02:43:53 +0000
  • 122e29082f . Applied patch from mpredosin fixing issue 269: Message list does not expand to screen size (in landscape mode with screens larger than HVGA) Bao-Long Nguyen-Trong 2009-03-13 17:51:55 +0000
  • 9f7a4b05d8 Elminate harmful selection of delete policy on Incoming settings page. Daniel Applebaum 2009-03-12 01:50:06 +0000
  • 272bb699c9 Use format, instead of hardcoded concatenation, for formatting recipient display. (suggested by dumbfile in Comment 12 of Issue 10) Daniel Applebaum 2009-03-12 01:31:55 +0000
  • 49c2708f4c Patch ImapFolders.r389.patch submitted in Comment 3 of Issue 214 by dumbfile on Feb 28, 2009. Daniel Applebaum 2009-03-12 01:13:26 +0000
  • 3e90811a20 Add explicit memory argument for dex build Daniel Applebaum 2009-03-10 18:57:15 +0000
  • e6b323ae27 Missed a code page Matthew Brace 2009-03-08 02:37:41 +0000
  • aa3f14ae4c Adding code pages that Microsoft Exchange ActiveSync uses. Matthew Brace 2009-03-08 02:11:00 +0000
  • 79377c220f Added WBXML encoder and decoder and the default WBXML code page. Updated Utility.java to provide base64 encoding/decoding in a format needed by WBXML. Matthew Brace 2009-03-08 01:58:13 +0000
  • 8e36f48be5 Adding branch for Microsoft Exchange ActiveSync work Matthew Brace 2009-03-08 00:50:37 +0000
  • 45227e2708 Delete now uses LocalFolder.moveMessages Daniel Applebaum 2009-03-07 07:20:15 +0000
  • 6d5b158787 Restore ability to delete server-side messages for POP3 and WebDAV Daniel Applebaum 2009-03-05 13:43:05 +0000
  • 014691bac9 Fix reverse sorting when in sort-by-date mode. Daniel Applebaum 2009-03-05 08:08:37 +0000
  • 7b2a754009 Cleanup of minor issues with r395. r395 and this revision are to address Issue 2, not Issue 3 as previously stated. Daniel Applebaum 2009-03-05 07:50:53 +0000
  • 15e5cb4eaf Provides the ability to move and copy messages between folders. Issue 3. Daniel Applebaum 2009-03-05 07:32:45 +0000
  • db426c44b7 . Applied patch from dumbfile which fixes issue 307 and issue 265 related to date format when running on a device with a non US locale Bao-Long Nguyen-Trong 2009-03-04 19:49:39 +0000
  • 73d5e16178 Fix for problem with r386 found by kanisdragon. Daniel Applebaum 2009-03-02 00:47:27 +0000