aboutsummaryrefslogtreecommitdiffstats
path: root/mail/e-mail-request.c
Commit message (Collapse)AuthorAgeFilesLines
* Convert EMailPart to a GObject.Matthew Barnes2013-05-201-1/+1
| | | | | EMailPart is reference-counted, subclassed, and allows a custom finalize function. There's no excuse for it not to use GObject.
* Add e_mail_part_get_mime_type().Matthew Barnes2013-05-201-1/+1
|
* Add e_mail_part_ref_mime_part().Matthew Barnes2013-05-201-1/+5
|
* em-format cleanups.Matthew Barnes2013-05-201-2/+6
|
* Bug #696173 - Various memory leaksMilan Crha2013-03-251-2/+4
|
* EMailRequest: Use EPhotoCache to obtain contact photos.Matthew Barnes2013-02-271-67/+40
|
* EMailRequest cleanups.Matthew Barnes2013-02-271-30/+44
|
* Bug #692009 - text/css always formatted as attachmentMilan Crha2013-01-241-9/+1
| | | | | | | Might be the final change for this bug, the two previous commits were not using the right approach, causing regression in rendering of text/* parts which were not named in the list of excluded content types for a 'raw' formatting.
* Exclude also text/calendar in a fix for bug #692009Milan Crha2013-01-221-1/+2
|
* Bug #692009 - text/css always formatted as attachmentMilan Crha2013-01-211-3/+28
|
* Bug #692005 - Changing character encoding doesn't workMilan Crha2013-01-191-0/+9
|
* Consolidate base utility libraries into libeutil.Matthew Barnes2012-12-131-7/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Evolution consists of entirely too many small utility libraries, which increases linking and loading time, places a burden on higher layers of the application (e.g. modules) which has to remember to link to all the small in-tree utility libraries, and makes it difficult to generate API documentation for these utility libraries in one Gtk-Doc module. Merge the following utility libraries under the umbrella of libeutil, and enforce a single-include policy on libeutil so we can reorganize the files as desired without disrupting its pseudo-public API. libemail-utils/libemail-utils.la libevolution-utils/libevolution-utils.la filter/libfilter.la widgets/e-timezone-dialog/libetimezonedialog.la widgets/menus/libmenus.la widgets/misc/libemiscwidgets.la widgets/table/libetable.la widgets/text/libetext.la This also merges libedataserverui from the Evolution-Data-Server module, since Evolution is its only consumer nowadays, and I'd like to make some improvements to those APIs without concern for backward-compatibility. And finally, start a Gtk-Doc module for libeutil. It's going to be a project just getting all the symbols _listed_ much less _documented_. But the skeletal structure is in place and I'm off to a good start.
* Make EMailPartList thread-safe.Matthew Barnes2012-12-081-2/+3
| | | | | | Exposing data members in the public struct is unwise, especially when EMailPartList is used from multiple threads. Instead keep the members private and provide a set of thread-safe functions to manipulate them.
* EMailFormatterContext: Keep a reference to EMailPartList.Matthew Barnes2012-12-081-5/+5
| | | | | Replace the individual components of an EMailPartList with a reference on the EMailPartList itself in EMailFormatContext. Easier to manage.
* Revert "Decode EMailRequest::priv::uri_base URI-escaped letters"Matthew Barnes2012-10-181-2/+1
| | | | | | This reverts commit 7050a12868252cf6254620cd27dcb6832851040d. Incomplete solution, renders Bugzilla mails unreadable.
* Decode EMailRequest::priv::uri_base URI-escaped lettersMilan Crha2012-10-181-1/+2
| | | | | | | | It's for cases when message UID contains letters which are supposed to be encoded, like "<>" in NNTP message UIDs. Without the decode the message preview is left empty and only console shows a runtime critical warning: handle_mail_request: assertion `part_list != NULL' failed
* Bug #683866 - Leaks of EMailFormatter objectMilan Crha2012-09-131-0/+1
|
* Coding style and whitespace cleanup.Matthew Barnes2012-08-201-7/+7
|
* Bug #680577 - [text-highlight] - Failed to load partDan Vrátil2012-07-271-1/+1
|
* Highlighting of text parts and source codesDan Vrátil2012-07-251-12/+12
| | | | | | | | | | This adds 'Format as' submenu to the preview pane context menu. The submenu is available only for text/plain parts or parts with a source code (we support about 40 various types). Using the 'highlight' utility, the formatter processes the part and highlights the source code it contains. (discussion in bug #680026)
* Coding style and whitespace cleanup.Matthew Barnes2012-06-251-2/+2
|
* Bug #677608 - Fails to open message which is not yet downloadedDan Vrátil2012-06-181-5/+5
|
* Fix some memory leaksDan Vrátil2012-06-181-0/+1
|
* Bug #674887 - Hang on sender's photo lookupDan Vrátil2012-06-141-3/+122
|
* Mail formatter rewriteDan Vrátil2012-06-061-48/+62
| | | | | | | | All mail-parsing and formatting code has been moved to em-format. Parsing is handeled by EMailParser class, formatting by EMailFormatter. Both classes have registry which hold extensions - simple classes that do actual parsing and formatting. Each supported mime-type has it's own parser and formatter extension class.
* Don't unref GAsyncResult in "finish" functions.Matthew Barnes2012-05-141-1/+0
|
* Fix some GSimpleAsyncResult reference leaks.Matthew Barnes2012-05-131-0/+2
|
* Use g_simple_async_result_set_check_cancellable().Matthew Barnes2012-05-131-5/+10
| | | | Always call it immediately after g_simple_async_result_new().
* Bug #674272 - Contacts preview differs with mailer running and notDan Vrátil2012-04-231-534/+14
| | | | | | This splits the giant EMailRequest to individual EFileRequest, EStockRequest, EHTTPRequest and EMailRequest, making the first two available globally from e-utils, the othe two are loaded only with mailer, since no other component uses them.
* Bug #673123 - Crash in http_request_write_to_cacheDan Vrátil2012-04-161-52/+85
|
* Pass GCancellable to em_format_write()Dan Vrátil2012-04-161-2/+2
|
* Bug #673525 - Crash under efh_write_message()Dan Vrátil2012-04-131-0/+11
| | | | Make sure the EMFormat* lives until EMailRequest is finished.
* Fix compiler warning about unused variableMilan Crha2012-04-051-1/+0
|
* Bug #673430 - Can't read messages in virtual Junk/Trash foldersDan Vrátil2012-04-031-3/+1
|
* EMailRequest: Decode mail:// URIs when looking up a formatter.Matthew Barnes2012-04-011-2/+6
| | | | This is why I hate URIs...
* EMailRequest: Cleanups.Matthew Barnes2012-04-011-90/+88
|
* EMailRequest: Add license header.Matthew Barnes2012-04-011-0/+18
|
* WebKit port - last-minute fixDan Vrátil2012-03-291-0/+2
|
* WebKit port - port formatter and mail moduleDan Vrátil2012-03-291-0/+771