Commit graph

1188 commits

Author SHA1 Message Date
Charles Lindsay
fca993fec7 Merge branch 'master' into feature/search
Conflicts:
	sql/version-010.sql
	src/client/folder-list/folder-list-folder-entry.vala
	src/engine/rfc822/rfc822-message.vala

Also, I had to manually fix some compile errors introduced due to
interfaces changing on master.
2013-06-24 17:54:41 -07:00
Jim Nelson
a4ce7899a8 Command continuation and synchronizing literals: Closes #3737
This introduces synchronized literals into the IMAP stack.  This
work also includes a new Memory.Buffer interface (replacing the old
Memory.AbstractBuffer classes) which is more flexible and has more
potential for avoid buffer copies.  Some work in RFC822 and Db use
these new unowned buffer capabilities.

This opens the door for saving drafts (#6992).  It also fixes issues
people have reported using UTF-8 usernames and passwords with IMAP.
2013-06-24 16:46:37 -07:00
Eric Gregory
c4ef5eecad Closes #7092 Fix archive button 2013-06-24 12:01:37 -07:00
Jim Nelson
1bfc75004d Resolves failure to build: "The name add_all_array" does not exist": Closes #7135 2013-06-23 08:25:48 -07:00
Eric Gregory
5806f1eae4 Closes #7119 Single folder properties 2013-06-21 18:24:12 -07:00
Eric Gregory
dc26b19aac Closes #7120 Store and update unseen count in database 2013-06-21 18:20:56 -07:00
Charles Lindsay
316f19c69a Clean up numerous conv. monitor bugs; fix #7103 2013-06-21 17:19:39 -07:00
Charles Lindsay
93a10b243f Move progress bar update to main thread; fix #7124 2013-06-21 17:03:24 -07:00
Avi Levy
34236be3d5 Closes #5303 Attachment reminder 2013-06-20 19:13:39 -07:00
Alexander Wilms
833066746c Closes #6759 New edit icon in account dialog 2013-06-19 19:06:16 -07:00
Jim Nelson
e9e80336f9 Don't treat SELECT/EXAMINE UNSEEN as unseen count: Closes #7121
An UNSEEN response code is the position of the first unseen email,
not the number of unseen messages in the folder.
2013-06-19 15:21:53 -07:00
Jim Nelson
24f76781fa Solves "Requires 280h, only fulfills 80h" messages when opening a folder 2013-06-19 14:46:53 -07:00
Eric Gregory
66c845c11b Closes #6771 Search result highlighting 2013-06-18 11:26:44 -07:00
Charles Lindsay
26928a521c Fix conv. filling when changing folders; fix #7099
Due to #5327, whenever you're on a folder with lots of conversations and
you're viewing one in the conversation viewer, if you then select a
different folder, you get many "conversation selected" signals.  This
fixes a bug where each one of those would trigger some background work
that wouldn't get cancelled, leading to many spurious messages showing
up in the conversation viewer as a result, instead of clearing the
viewer as expected.
2013-06-17 12:40:27 -07:00
Jim Nelson
933e3a859f Use friendlier time for any duration less than 12 hours rather than 6 2013-06-15 15:25:51 -07:00
Charles Lindsay
6fb415356b Fixing merge fallout 2013-06-14 16:34:06 -07:00
Charles Lindsay
bc2146dad5 Merge branch 'master' into feature/search
Conflicts:
	src/engine/imap-db/imap-db-account.vala
	src/engine/imap-engine/imap-engine-generic-account.vala
	src/engine/imap-engine/imap-engine-generic-folder.vala
2013-06-14 15:50:20 -07:00
Jim Nelson
cdfacb7690 Merge branch 'master' into bug/5224-dovecot 2013-06-14 12:37:15 -07:00
Jim Nelson
17d05a0fed Add FLAGS flag when setting flags.
Follow?
2013-06-14 12:36:35 -07:00
Robert Schroll
1186a40b05 Clear conversation view when none selected
Fix #7071
2013-06-14 11:59:42 -07:00
Charles Lindsay
5aa617820b Fix errors in the query preparer; fix #7084 2013-06-14 10:53:37 -07:00
Charles Lindsay
025328afe9 Index attached emails for search; fix #7069 2013-06-14 10:52:28 -07:00
Jim Nelson
a903b603f4 Clean up some error-reporting that occurs when closing ReplayQueue 2013-06-13 19:21:14 -07:00
Jim Nelson
a83d6619fb Merge branch 'master' into bug/5224-dovecot 2013-06-13 18:54:58 -07:00
Jim Nelson
b3df61ab6b Working around some reported problems with servers not returning FETCH data 2013-06-13 18:54:06 -07:00
Charles Lindsay
78979a1bba Merge branch 'master' into feature/search 2013-06-13 18:06:04 -07:00
Jim Nelson
1a610afa95 Update to last commit
(a) More efficient by using Gee.Iterator.  (b) Deal with trailing
delimiter issue, which the last commit overlooked.
2013-06-13 17:07:44 -07:00
Jim Nelson
989b801cbf Fix situation where server returns parent folder when asking for children
This causes a hard loop during recursive descent.
2013-06-13 16:45:58 -07:00
Charles Lindsay
7cf33f293e Blacklist spam, trash in search; fix #7067 2013-06-13 16:44:46 -07:00
Jim Nelson
6270b80640 Support UIDVALIDITY 2013-06-13 15:58:43 -07:00
Jim Nelson
ad436f22a2 Only fire Imap.Folder signals when opened 2013-06-13 15:49:47 -07:00
Avi Levy
80769ec5f0 Modeless Preferences and Accounts dialog: Closes #5012 2013-06-13 15:41:15 -07:00
Jim Nelson
e9a27e55be JPEG Orientation now respected in viewer, thumbnails, file chooser: Closes #7007, Closes #7074
This may also close issue #7073, but more investigation is required.
2013-06-13 15:17:04 -07:00
Jim Nelson
b091855593 Sort signalled Folders by path so when traversing parents are
always listed before children.
2013-06-11 19:57:43 -07:00
Eric Gregory
06cb693c0e Closes #7063 Fixed clear button on search box 2013-06-11 19:02:46 -07:00
Jim Nelson
8d21f20c92 Merge branch 'master' into bug/5224-dovecot 2013-06-11 18:48:40 -07:00
Avi Levy
f21cda540b Use text-only headers in folder list: Closes #6397
Sidebar.Headers are rendered without an icon and without spacing
for one, and emphasized (boldfaced).
2013-06-11 18:40:06 -07:00
Avi Levy
85f070e74c Single-click on Labels to expand/close: Closes #4985
Requirements reworked to only allow single-click open/close when
the item can't be selected, i.e. is expandable but not selectable.
2013-06-11 18:35:22 -07:00
Avi Levy
fe0549267c Friendlier date/time formatting in conversation list: Closes #7051 2013-06-11 17:40:20 -07:00
Charles Lindsay
c7470a4a1b Do search only after slight delay; fix #7066 2013-06-11 12:12:55 -07:00
Eric Gregory
aa1af8eb74 Closes #7065 Reinstates toolbar icons 2013-06-11 11:49:33 -07:00
Jim Nelson
52663cff0b Merge branch 'master' into bug/5224-dovecot 2013-06-10 20:08:21 -07:00
Jim Nelson
b254ad54e4 Improved FolderPath and separator handling
This commit fixes a number of issues with traversing, showing, and
opening subfolders, especially on systems that don't use the
forward slash as a separator.
2013-06-10 20:07:12 -07:00
Eric Gregory
e41b0be339 Closees #7062 Conversation monitor signal disconnect assertion fixed 2013-06-10 19:11:42 -07:00
Eric Gregory
4cdeab029d Closes #7055 Re-instates search index progress bar 2013-06-10 18:56:38 -07:00
Charles Lindsay
2d2cf74300 Correctly order search results; fix #7068 2013-06-10 18:09:07 -07:00
Avi Levy
55232af631 Geary does not update conversation time labels when running for long time: Closes #5315 2013-06-10 14:04:10 -07:00
Charles Lindsay
a77874620e Limit search results from DB; fix #7049
This caps the search results at 1000 emails, due to our unfortunate
requirement of constructing an object for each search result.  A better
way to proceed here would be to do the search only as items were loaded
in the SearchFolder, but that gets complicated when the search phrase
gets updated.
2013-06-10 12:21:28 -07:00
Jim Nelson
f246ff4919 Merge branch 'master' into bug/5224-dovecot 2013-06-07 18:17:45 -07:00
Avi Levy
b882b6e62d Don't display main window until Welcome dialog is dismissed: Closes #6566 2013-06-07 17:49:53 -07:00