Commit graph

83 commits

Author SHA1 Message Date
Eric Gregory
03d63ecc1a Toolbar replaces the menu. Closes #3816 2011-10-11 19:12:20 -07:00
Jim Nelson
05503981bf On second thought, it should be String.escape_markup(). 2011-10-07 18:05:33 -07:00
Jim Nelson
df687bb86c Deal better with mailing list groups when parsing incoming mail.
Mailing list groups aren't completely accounted for in Geary (#3713) but in the last commit
I skipped one place they can easily be dealt with.  This takes care of that.
2011-10-07 17:49:55 -07:00
Jim Nelson
0021b74281 This patch expands Geary.RFC822.Message to be a more full-blown container for an RFC 822
message (email), suitable for decoding a message off the wire or converting a
human-generated form into something suitable for pushing on the wire via SMTP.
2011-10-07 17:33:34 -07:00
Jim Nelson
ee22b632e8 Addresses not stored in database in RFC 822 format: Closes #4231
Email addresses were being stored in the database in a human-readable fashion, not proper
quoted RFC 822 format.  This fixes that, as well as another error this exposed in
MessageListCellRenderer dealing with situations where no From: is available.  Courtesy
Charles Lindsay.
2011-10-07 17:23:20 -07:00
Jim Nelson
af7c5f585e Fixes a crasher when a message on the server has an empty Subject: line. 2011-10-07 16:58:19 -07:00
Jim Nelson
c012c3b3f5 Command tagging restructuring.
Commands were build with their commands prior to this change, for various reasons (mostly as
a convenience for myself).  This is not technically a good way to do things, it's far better
if the Tag is assigned right before the Command is sent to ensure they go out in order.
2011-10-07 13:08:54 -07:00
Jim Nelson
77d9962406 Fixes segfault when navigating between folders: Closes #3820
This bug was exacerbated by rapidly switching between folders.  This patch introduces a
Cancellable to most of the requests the client performs so it can cancel old requests when
the user switches folders.  This fixed some issues but exposed others.

Testing this demonstrates another bug: #4233
2011-10-06 19:04:17 -07:00
Eric Gregory
686f4cbfde Folder list scrolling keeps highlighted item in the view. Closes #4227 2011-10-05 17:08:12 -07:00
Jim Nelson
bbb747e3ce Move to sqlheavy-0.2: Closes #4214
Geary now requires sqlheavy-0.2, currently only available in its gitorious trunk.
2011-10-04 19:38:10 -07:00
Jim Nelson
428c0825a9 Fast listing of messages in a folder
This adds a new flag when listing messages, FAST.  This indicates that the caller wants
messages that are immediately available to the Folder, avoiding a round-trip to the server
(or even disk) if possible.  Not all folders will support FAST, but it can be used (as it is
now in the client) to quickly populate the message list and then initiate a connection in
the background to get the straight dope.
2011-10-04 19:02:59 -07:00
Eric Gregory
aa3044f57d Adds word wrap. Closes #4218 2011-10-04 18:26:56 -07:00
Eric Gregory
570a45c822 Makes message list wider. Closes #4217 2011-10-04 18:24:13 -07:00
Eric Gregory
4d3888da7e Keyboard scrolling in message list; Closes #3922 2011-10-04 17:57:54 -07:00
Eric Gregory
955fdf1f32 Adds copied executables to clean. Closes #4202 2011-10-03 17:26:40 -07:00
Eric Gregory
e6e1ca8357 Composer window. Closes #3711 2011-10-03 12:05:25 -07:00
Jim Nelson
10d714d756 SMTP module added for email composer (#3711)
This adds an SMTP library into Geary that can perform basic client submission of emails.
The interface is exposed generically through the Geary.EngineAccount interface.
2011-09-30 17:29:03 -07:00
Eric Gregory
98f3ef7e00 #4130 remember paned grabber positions 2011-09-27 18:34:26 -07:00
Jim Nelson
fb54fb1847 Now builds with Vala 0.14: closes #3756
This commit introduces a Scheduler module which deals with the problem of scheduling on the
idle or timeout queue unowned SourceFuncs (because the idle and timeout functions require
owned delegates).  It also takes care of a handful of places where an out parameter was not
being set before the method returned, which Vala's new code analysis now picks up.
2011-09-26 16:07:40 -07:00
Jim Nelson
0fdc45e4ec Move to GTK+3: Closes #4163 2011-09-22 13:11:35 -07:00
Eric Gregory
4ad276aa9a 3817 fancy 3-column layout 2011-09-21 18:03:41 -07:00
Jim Nelson
bd9f0c4ff5 Created THANKS file, added Eric to it. 2011-09-20 14:25:51 -07:00
Eric Gregory
9d2b10530c 4028, 3700 login dialog and password persistence
Adds a login dialog box
Support for Glade UI files
Gnome keyring for password storage
Assumption of single Geary account (for now)
2011-09-15 12:19:39 -07:00
Eric Gregory
6a5d1fa048 3701 remember window size
* Added GSettings
* Geary binary copied to project root
2011-09-14 17:38:53 -07:00
Eric Gregory
2e501eff68 changes to build on Ubuntu Natty 2011-08-25 18:45:34 -07:00
Jim Nelson
7442caf88e Detect deleted (or moved) messages in open folder: #3793
This commit finishes the second half of #3793 by detecting when messages have been deleted
(or moved out of) an open folder and notifying the system of the change.  The nonblocking
synchronization primitives have been beefed up and may be broken out to a separate library
some day.

This commit also introduces the ReplayQueue, which replays events that occur on the server
locally.  This class will probably become much more important as time goes on, perhaps used
to store user events that are replayed on the server as well.
2011-07-29 20:10:43 -07:00
Jim Nelson
d1208e8efe Monitor currently selected folder: #3793
This commit represents the first half of this ticket, as it only monitors additions (new
emails) in the folder.  A second commit will follow for monitoring removals (deleted emails)
in the folder.
2011-07-26 15:29:08 -07:00
Jim Nelson
e812ef6166 Some cleanup dealing with commit for #3851.
The commit for #3851 changed the semantics of how messages are stored in the local cache,
and not all the code was properly updated to recognize that, particularly in EngineFolder.

This patch also introduces EmailIdentifier, which allows for a mail message to be fetched by
a unique identifier rather than its position in the folder list.  This is much more
efficient and less error-prone, and means that Email objects don't have to be updated if
their position changes (although there are still some questions in that area).  For IMAP,
this means being able to use the message's UID.
2011-07-19 15:55:56 -07:00
Jim Nelson
9adabb21ed Assertion failure when reading message: #3858
Caused by a valac bug set off by a generic function designed to convert a Gee List to a Vala
array.  Rather than fight it I've removed the function and added to FetchCommand a
constructor to build the command using a Gee Collection.
2011-07-18 15:57:55 -07:00
Jim Nelson
3e308a4d13 Now using new async versions of SQLHeavy.Transaction.commit_async().
This revision of Geary requires the latest revision of SQLHeavy.
2011-07-18 12:26:43 -07:00
Jim Nelson
1683775ddf Added the CLOSE command to the IMAP console program. 2011-07-18 11:55:38 -07:00
Jim Nelson
8b26d6d112 Folder no longer attempts to download existing messages when re-selected: #3851
The SQLite Geary.Folder implementation now uses reference semantics, so when it's reselected
the same Folder object is used and in-memory state is consistent.  Also found an off-by-one
error when first querying an IMAP Folder that caused the most recent new email not to be
downloaded the first time.  Fixed as well in this commit.
2011-07-18 11:48:42 -07:00
Jim Nelson
b1775ae879 Code organization cleanup. 2011-07-15 16:50:12 -07:00
Jim Nelson
8e62435dec Fixes off-by-one error and bitfield issue when fetching an email.
In prior revision, the email message that appeared didn't always match the header selected.  This fixes that problem.
2011-07-15 14:29:33 -07:00
Jim Nelson
e06690a526 Now only prefetching emails required to maintain contiguous messages in database.
It's vital that the message table always have a contiguous list of messages from the highest (newest) to the oldest requested by the user.  If the user requests messages early enough that there would be a gap, the missing patch in the middle needs to be downloaded (UIDs, at least) to hold their position in the database.  Prior commit downloaded too many; this change makes sure only messages not being requested by user but unavailable in the database are prefetched.
2011-07-15 14:01:27 -07:00
Jim Nelson
0533bc9700 Further work on detecting message removal when folder first selected: #3805
Needed to rethink storage strategies as I researched this and realized that a true scarce database -- where the database is sparsely populated both in columns and rows -- is not feasible due to IMAP's UID rules.  The strategy now means that the database rows are contiguous from the highest (newest) message to the oldest *requested by the user*.  This is a better situation than having to download the UID for the entire folder.
2011-07-15 13:39:02 -07:00
Jim Nelson
6b8951bfd8 Implemented IMAP-specific folder and message properties tables: #3805
This commit adds support for IMAP-specific properties, of which UIDValidity is crucial toward completing #3805.  The additional code is to integrate these tables into the SQLite Geary backend and to make sure this information is requested from the IMAP server.

NOTE: This commit changes the database schema.  Old databases will need to be blown away before running.
2011-07-15 12:54:10 -07:00
Jim Nelson
9792780edb Display To:, From:, and Subject: in message viewer: #3812
Fields added.  However, it would be nice to use formatting to separate them from the body of the message.  This is not easy with Gtk.TextView/Gtk.TextBuffer; see https://bugzilla.gnome.org/show_bug.cgi?id=59390.  This may push us to move to Webkit earlier rather than later.
2011-07-14 15:47:01 -07:00
Jim Nelson
d1fa42fc13 Message view should not be editable: #3826
No longer editable and the cursor has been disabled as well.
2011-07-14 14:49:29 -07:00
Jim Nelson
fdc2853904 Display unread messages in boldface: #3807
This ticket enables this, however IMAP properties are not yet coming up from the local database yet, so this isn't technically complete.  That work will be included in the commit for #3805, which requires those properties.
2011-07-14 14:45:35 -07:00
Jim Nelson
9176d4778d Fixes a bug where the From: field remained undecoded (i.e. ISO charset) when first pulled from the server but would be properly decoded when pulled from the local database. 2011-07-14 14:00:38 -07:00
Jim Nelson
4b03ba004e Use GMime to display the text/plain portion of email messages: #3710
This makes available MIME portions of the message, although more work will need to be done to expose all MIME parts.
2011-07-06 15:46:24 -07:00
Jim Nelson
7f293f9a6f No longer crashes when running for the first time: #3798
Problem was that the client fetches folder objects for the special folders (Inbox, Drafts, etc.) prior to fetching the full folder list and the Engine's fetch_folder_async() call wasn't prepared to handle fetches for folders not located in the local database.
2011-07-04 13:54:00 -07:00
Jim Nelson
fff39e8a44 Move special folders to the top of the tree, put other folders in container, and start in Inbox: #3707 and #3692
This commit introduces the idea of a Personality, customizations for particular IMAP servers and services to allow the interface to configure itself for more natural use.  Also, this commit has the app start in the Inbox, and an optimization was added that makes showing what's in the Inbox (at least, what's in the local cache) come up instantly.
2011-07-01 19:33:35 -07:00
Jim Nelson
009a061a16 Fixes crasher when parsing an email address in an ISO encoding: #3790
GMime needs to be initialized prior to use.  It looks like it builds some internal caches for encoding/decoding, leading to a null pointer fault when not initialized.
2011-07-01 15:50:17 -07:00
Jim Nelson
0273b78005 Folder heirarchies: #3788
Now supporting folder heirarchies.  The client will now descend looking for subfolders.  This task now opens up multiple outstanding requests to the Engine as well as exercises the database schema.

Closing this ticket opens the door to finishing #3692.
2011-07-01 15:40:20 -07:00
Jim Nelson
a774034aff More responsive loading of folders: #3702
This commit introduces lazy loading of folder contents, which allows the Engine to report back email in chunks rather than all at once (which might require a round-trip to the server).  This allows for the local database results to be returned to the caller right away while background I/O is occuring.
2011-06-28 16:33:27 -07:00
Jim Nelson
708b3d754a Check for valac >= 0.12.0: #3726
This checks the version of Vala when ./waf configure is executed, not at build time, but that's okay.
2011-06-27 15:01:04 -07:00
Jim Nelson
328683ecfb Moved to waf for build system: #3690
This closes #3690 because waf fulfills that requirement, moving the .c's to a separate directory.  waf also gives us incremental builds, so -j4 is back.
2011-06-27 14:55:22 -07:00
Jim Nelson
41faa36103 New file naming scheme and organization for the Engine.
The code base is growing much faster than expected, faster than Shotwell it seems (not necessarily line count, but files and necessary organization of the library vs. Shotwell's initial flat directory).  After some thought decided to move to a more standard Vala/GTK naming scheme of all lowercase with dashes for spaces starting with namespace (minus the "geary-", unless the class was in the topmost namespace).  Three motivations:

1. Often confusing when working on code to see three "Folder.vala" in the gedit tabs: one IMAP, one SQLite, and one the interface definition.
2. This paves the way for waf integration, as right now we're held up using it because it barfs on projects with two files of the same name in different directories.
3. I find the CamelCase in the file browser becoming hard on the eyes, and this scheme seems a little more browsable.
2011-06-27 11:24:39 -07:00