aboutsummaryrefslogtreecommitdiffstats
path: root/modules
Commit message (Collapse)AuthorAgeFilesLines
...
* Teach EMailExtensionRegistry to find extensions.Matthew Barnes2012-12-0810-412/+0
| | | | | | | | | | | | | | | | | | | | | Now we have the following extension points in the GType hierarchy: E_TYPE_MAIL_FORMATTER_EXTENSION E_TYPE_MAIL_FORMATTER_PRINT_EXTENSION E_TYPE_MAIL_FORMATTER_QUOTE_EXTENSION E_TYPE_MAIL_PARSER_EXTENSION A registry just needs to be given one of these extension points, and it can use g_type_children() to find and load all registered extensions. This eliminates e-mail-format-extensions.[ch] as well as the dynamic loaders I added a few commits back. Dynamically loaded extensions are now easier to register, at the cost of internal extensions being a tad more cumbersome to register. Fair tradeoff, imo. This also makes e_mail_extension_registry_add_extension() a private function used only by e_mail_formatter_extension_registry_load() and e_mail_parser_extension_registry_load().
* EMailParserExtension: Convert get_flags() to an enum field.Matthew Barnes2012-12-083-21/+3
| | | | | | | Of the parser extensions that override get_flags(), they all return a fixed set of flags. So we don't need an instance of the extension to obtain its flags. Just make it an EMailParserExtensionFlags field in the class structure.
* Convert EMailParserExtension to an abstract class.Matthew Barnes2012-12-086-114/+58
| | | | | | | | | With the previous changes, all parser extensions derive from GObjectClass and implement the EMailParserExtensionInterface. Simplify things further by making EMailParserExtension an abstract base class so parser extensions are now just direct subclasses and need not bother with implementing GObject interfaces.
* EMailFormatterExtension: Convert get_description() to a string field.Matthew Barnes2012-12-084-28/+4
| | | | | | Of the formatter extensions that provide a description, they all use a static string. So we don't need an instance of the extension to obtain its description. Just make it a string field in the class structure.
* EMailFormatterExtension: Convert get_display_name() to a string field.Matthew Barnes2012-12-084-28/+4
| | | | | | Of the formatter extensions that provide a display name, they all use a static string. So we don't need an instance of the extension to obtain its display name. Just make it a string field in the class structure.
* Convert EMailFormatterExtension to an abstract class.Matthew Barnes2012-12-084-85/+45
| | | | | | | | | With the previous changes, all formatter extensions derive from GObjectClass and implement the EMailFormatterExtensionInterface. Simplify things further by making EMailFormatterExtension an abstract base class so formatter extensions are now just direct subclasses and need not bother with implementing GObject interfaces.
* Remove EMailExtension.Matthew Barnes2012-12-0810-346/+432
| | | | | | | | | | | | EMailExtension is now too trivial to keep as a standalone interface. Add a 'mime_types' string array to the EMailFormatterExtension and EMailFormatterParser interface structs. Alter e_mail_extension_registry_add_extension() to take a 'mime_types' string array and the GType of an extension to instantiate, rather than the extension instance directly. e_mail_extension_registry_remove_extension() is no longer needed.
* EMailExtension: Replace mime_types() method with a string array.Matthew Barnes2012-12-0810-109/+89
| | | | | | | | | | | In all implementations for EMailExtension, the MIME type list is a static string array -- with the single exception of the text-highlight module, where the MIME type list is dynamically assembled once. Replace the mime_types() method with a "mime_types" string array in the EMailExtensionInterface struct. Then the list of MIME types supported by the class implementing the EMailExtensionInterface can be obtained without requiring an instance of the class.
* EMailParserExtension: Collect EMailParts in a GQueue.Matthew Barnes2012-12-086-148/+162
| | | | | | | | | | | | | | | Collect EMailParts in a GQueue provided to the EMailParserExtension, and change the return type of parse() to gboolean to indicate whether the given CamelMimePart was handled (even if no parts were added to the output GQueue). This avoids the awkward corner case of a parser extension returning a linked list node with a NULL data member to indicate the CamelMimePart was handled but no EMailParts produced, and then having to watch out for that NULL data member corner case throughout the application. Also, remove the GCancellable parameter from e_mail_parser_error() and e_mail_parser_wrap_as_attachment() since neither function blocks.
* Make EMailPartList thread-safe.Matthew Barnes2012-12-085-14/+23
| | | | | | 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-083-14/+30
| | | | | Replace the individual components of an EMailPartList with a reference on the EMailPartList itself in EMailFormatContext. Easier to manage.
* Bug #315317 - Add option to expunge messages on folder leaveMilan Crha2012-12-053-9/+12
|
* Address couple issues found by a Coverity scanMilan Crha2012-11-301-0/+2
|
* Avoid using GdkEventButton directly in certain places.Matthew Barnes2012-11-305-30/+33
| | | | | | | | | | | | Prefer dealing with GdkEvent pointers and using accessor functions like gdk_event_get_button(). This is complicated by the fact that some GtkWidget method declarations still use GdkEventButton pointers, and synthesizing button events pretty much requires direct GdkEventButton access. But GDK seems to be nudging itself toward sealing the GdkEvent union. Likely to happen in GDK4. Mainly clean up signal handlers and leave method overrides alone for now.
* Avoid gdk_cursor_unref().Matthew Barnes2012-11-292-2/+2
| | | | Use g_object_unref() instead.
* Bug #671628 - Size of backup window is bigMilan Crha2012-11-281-24/+35
|
* Identify calendar/memo/task sources in error messagesMilan Crha2012-11-273-6/+60
|
* Bug #680244 - CalDAV URL should be configured in once, not separatedMilan Crha2012-11-261-112/+77
|
* Bug #202576 - A way to refresh IMAP folder listMilan Crha2012-11-223-0/+69
|
* Bug #680201 - Backup restore doesn't migrate accounts from GConfMilan Crha2012-11-222-10/+62
|
* Bug #687999 - 'Open calendar' in invitation email does nothingMilan Crha2012-11-121-50/+25
|
* Bug 688084 - Cannot configure connection to webdav address bookAlban Browaeys2012-11-111-3/+4
|
* Coding style and whitespace cleanup.Matthew Barnes2012-11-1120-60/+74
|
* Bug 687137 - Google account user name overwritten with email addressMatthew Barnes2012-11-091-8/+8
| | | | | | | | | | | Evolution's Google account module was setting the ECollectionSource's "identity" property to the account's email address before submitting the account to E-D-S. Meanwhile, the Google module in E-D-S was syncing the account user name to the ECollectionSource's "identity" property. This mismatch resulted in an explicitly specified GMail user name being overwritten when the account information is submitted. Evolution should instead set the "identity" property to the account's user name.
* Bug #683877 - No more contextual menus for linksMilan Crha2012-11-091-9/+3
|
* Bug #686325 - Preview message window keyboard use severely limitedMilan Crha2012-11-081-27/+66
|
* Bug #656143 - Stop using deprecated Gtk[HV]Box(Class)Dominique Leuenberger2012-11-074-8/+8
|
* Replace deprecated soup_message_headers_get() with ↵Milan Crha2012-11-061-1/+1
| | | | soup_message_headers_get_list()
* Replace deprecated GLib symbols (as of GLib 2.34.x)Milan Crha2012-11-064-39/+39
|
* Missing search buttons in Calendar viewMilan Crha2012-11-061-1/+1
|
* Bug 687400 - Composer settings not appliedMatthew Barnes2012-11-035-215/+391
| | | | | | | | | | | EMailConfigWebView is an extension that configures EWebView instances. This used to cover both the email formatter and the email composer, but with the email formatter now using WebKit/GTK+ and the email composer still using GtkHtml, the composer was left unconfigured. Add an EMailConfigWebViewGtkHTML extension that targets EWebViewGtkHTML instances and applies the relevant settings, and remove all the GtkHTML contortions from EMailConfigWebView.
* Bug #687442 - Magic spacebar avoids iTip formatter comment writeMilan Crha2012-11-022-7/+39
|
* Remove unused/forgotten function declarationsMilan Crha2012-11-021-5/+0
|
* Bug #663844 - [CalDAV] Fails to parse iCloud XML responseMilan Crha2012-10-291-2/+0
|
* Prefer e_source_registry_check_enabled().Matthew Barnes2012-10-261-3/+3
| | | | | Prefer e_source_registry_check_enabled() over e_source_get_enabled() for most instances where we want to exclude disabled data sources.
* Bug 686813 - ECaldavChooser: Deadlock on cancellationMatthew Barnes2012-10-251-1/+6
|
* EMailShellView: Remove GroupWise-specific cruft.Matthew Barnes2012-10-191-43/+0
| | | | | The GroupWise backend is dead, and this logic never belonged here in the first place.
* Remove "Disable Account" menu item for GOA-based accounts.Matthew Barnes2012-10-191-1/+4
| | | | GOA-based accounts must only be disabled from gnome-control-center.
* Bug #310978 - USENET always requires authenticationMilan Crha2012-10-181-3/+10
|
* Bug #201807 - Cannot specify sendmail parametersMilan Crha2012-10-181-0/+58
|
* Bug #686278 - Prefer-plain can break parts listMilan Crha2012-10-171-16/+7
|
* Adapt to CamelJunkFilter API changes.Matthew Barnes2012-10-162-16/+21
|
* Remove mail module's g_module_check_init().Matthew Barnes2012-10-161-12/+0
| | | | Not needed anymore since all modules are resident nowadays.
* Bug #663844 - [CalDAV] calendar-home-set/href may contain full URIMilan Crha2012-10-161-4/+16
|
* Prefer e_source_extension_ref_source().Matthew Barnes2012-10-133-5/+9
| | | | e_source_extension_get_source() is now deprecated.
* Prototype CamelSaslXOAuth2.Matthew Barnes2012-10-124-3/+343
| | | | Untested, but conforms to the specification as well as I understand it.
* CamelSaslXOAuth: Further refinements.Matthew Barnes2012-10-121-40/+35
| | | | To synchronize with the forthcoming XOAUTH2 prototype.
* CamelSaslXOAuth: Use GHmac to sign the client request.Matthew Barnes2012-10-111-242/+124
| | | | Also refactor the code to more closely resemble EGDataGoaAuthorizer.
* CamelSaslXOAuth: Remove unused GOA_KEY definition.Matthew Barnes2012-10-111-4/+0
|
* Bug 685675 - Fix packing of spell check language optionsMatthew Barnes2012-10-101-11/+1
| | | | | | Word-wrapped GtkLabels and GtkTables just don't seem to get along. The vertical allocation for the GtkLabel was way too big. Replace the GtkTable with a GtkGrid.
* Bug 684691 - EMailConfigFormatHTML: Signal handler never disconnectedMatthew Barnes2012-10-101-33/+59
| | | | | | | | | | | EMailConfigFormatHTML listens for "changed" signals from a GSettings instance, passing itself as the 'user_data' to the signal handler. But the signal handler was left connected after EMailConfigFormatHTML was finalized, resulting in the signal handler receiving a dangling pointer. Not using g_signal_connect_object() here because of the unresolved reference leak issue in GObject. The GSettings instance is likely cached internally and lives well beyond the EMailConfigFormatHTML.
* EBookConfigNameSelectorEntry: Use G_DEFINE_DYNAMIC_TYPE.Matthew Barnes2012-10-103-44/+82
| | | | Follow the usual GObject conventions.
* ECalConfigView: Use G_DEFINE_DYNAMIC_TYPE.Matthew Barnes2012-10-103-27/+71
| | | | Follow the usual GObject conventions.
* ECalConfigModel: Use G_DEFINE_DYNAMIC_TYPE.Matthew Barnes2012-10-103-27/+73
| | | | Follow the usual GObject conventions.
* ECalConfigMeetingTimeSelector: Use G_DEFINE_DYNAMIC_TYPE.Matthew Barnes2012-10-103-27/+77
| | | | Follow the usual GObject conventions.
* ECalConfigMeetingStore: Use G_DEFINE_DYNAMIC_TYPE.Matthew Barnes2012-10-103-27/+75
| | | | Follow the usual GObject conventions.
* ECalConfigDateEdit: Use G_DEFINE_DYNAMIC_TYPE.Matthew Barnes2012-10-103-27/+74
| | | | Follow the usual GObject conventions.
* ECalConfigCompEditor: Use G_DEFINE_DYNAMIC_TYPE.Matthew Barnes2012-10-103-27/+74
| | | | Follow the usual GObject conventions.
* ECalConfigCalendarItem: Use G_DEFINE_DYNAMIC_TYPE.Matthew Barnes2012-10-103-27/+76
| | | | Follow the usual GObject conventions.
* EMailConfigWebView: Use G_DEFINE_DYNAMIC_TYPE.Matthew Barnes2012-10-093-63/+103
| | | | Follow the usual GObject conventions.
* EMailConfigReader: Use G_DEFINE_DYNAMIC_TYPE.Matthew Barnes2012-10-093-27/+74
| | | | Follow the usual GObject conventions.
* EMailConfigFormatHTML: Use G_DEFINE_DYNAMIC_TYPE.Matthew Barnes2012-10-093-27/+76
| | | | Follow the usual GObject conventions.
* Don't rely on user's $PATH, use HIGHLIGHT_COMMAND defined by configureDan Vrátil2012-10-091-1/+1
|
* Bug #684447 - Check for highlight during configure.Dan Vrátil2012-10-092-33/+60
| | | | | | | | | | | | | | If the highlight program cannot be found width AC_PATH_PROGS, configure will abort with an error message. You can either a) install highlight b) specify the patch with HIGHLIGHT=/path/to/highlight c) pass --disable-text-highlight to configure to exclude the module This also makes text-highlight module to fallback to text/plain formatter when highlight program would crash or fail to ensure the content is delivered to user.
* portability: don't use too generic variable namesAntoine Jacoutot2012-10-041-4/+4
| | | | | | | OpenBSD (and maybe other OS) already declare stdout and stdin in <stdio.h> which breaks evolution build, so prefix both with "pipe_" to prevent clashing. https://bugzilla.gnome.org/show_bug.cgi?id=685471
* Remove e_mail_junk_filter_available().Matthew Barnes2012-10-012-74/+0
| | | | | | | | Because we now check for junk filtering software in configure, junk filtering modules can now safely assume the required junk filtering software is installed. No more having the module installed but not the required software. If this invariant is broken, an error will be shown for each new message received.
* spamassassin: Delay spamd tests until needed using GOnce.Matthew Barnes2012-10-011-19/+59
| | | | | Avoid blocking the available() method with synchronous tests that, it turns out, do cause a noticable delay.
* Check for SpamAssassin during configure.Matthew Barnes2012-10-012-135/+40
| | | | | | | | | | | | | If the spamassassin and sa-learn programs cannot be found with AC_PATH_PROG, configure will abort with an error message. You can then either: a) install the SpamAssassin software b) specify the path with SPAMASSASSIN=/path/to/spamassassin and/or SA_LEARN=/path/to/sa-learn c) pass --disable-spamassassin to configure to exclude the module This also drops the "spamc" and "spamd" GSettings keys.
* Check for Bogofilter during configure.Matthew Barnes2012-10-012-9/+9
| | | | | | | | | | If the bogofilter program cannot be found with AC_PATH_PROG, configure will abort with an error message. You can then either: a) install the Bogofilter software b) specify the path with BOGOFILTER=/path/to/bogofilter c) pass --disable-bogofilter to configure to exclude the module
* Remove ldap-config.ui.Matthew Barnes2012-09-182-707/+0
| | | | Leftover file from ages past. No longer used.
* Bug #549819 - Cannot specify a custom sendmail programMilan Crha2012-09-181-2/+108
|
* Bug 684021 - EBookConfigWebdav: Invalid callback on property bindingMatthew Barnes2012-09-161-1/+1
|
* Could not set custom port for LDAP addressbookMilan Crha2012-09-141-4/+16
|
* Bug #683949 - Cannot create new LDAP AddressbookMilan Crha2012-09-141-0/+13
|
* Avoid code duplication for reply on message attachmentMilan Crha2012-09-121-33/+11
|
* [itip-formatter] Do not include empty values in a printoutMilan Crha2012-09-121-22/+38
|
* [prefer-plain] Always show HTML part as attachment for only HTML messagesMilan Crha2012-09-121-11/+5
| | | | | | | | When the prefer-plain is set to show only text/plain parts, without showing suppressed HTML parts as attachments, and the received message contains only one part, the text/html part, then the preview was completely empty, which is confusing. With this change, the text/html only messages will show the suppressed part as attachment regardless the setting.
* BR is not a "pair" HTML elementMilan Crha2012-09-111-1/+1
|
* Bug #683758 - Crash on display meeting inviteLucian Langa2012-09-111-1/+2
|
* Make sure the selected days in the calendar matches shown daysMilan Crha2012-09-111-0/+16
|
* Bug #683407 - Preserve week views in calendar when clicking one dayMilan Crha2012-09-111-2/+5
|
* [itip-formatter] May not send replies on meeting request mailsMilan Crha2012-09-101-1/+1
|
* [itip-formatter] Cancel pending event searches when any foundMilan Crha2012-09-101-3/+37
|
* Bug #682873 - Prefer-plain shows text plain in meeting inviteMilan Crha2012-09-061-9/+3
|
* Bug #682820 - Settings not converted on backup restoreMilan Crha2012-09-051-0/+5
|
* Make sure evolution-alarm-notify is running on Evolution's startMilan Crha2012-08-302-0/+34
|
* Add support for application/ics to ITIP formatterDan Vrátil2012-08-282-3/+20
|
* Fix visibility of parts in prefer-plainDan Vrátil2012-08-281-6/+20
|
* Bug 682519 - vcard-inline: Typo in translatable stringMatthew Barnes2012-08-251-1/+1
|
* cal-config-webcal: Fix error in a tranform function.Matthew Barnes2012-08-251-5/+3
| | | | | | | | When writing a GBindingTransformFunc for a bi-directional binding in the reverse direction, the "source" and "target" properties of the GBinding are flip-flopped wrt the transform function. That always throws me. Just pass the ESource to the tranform function to avoid this confusion.
* cal-config-webcal: Accept URIs with webcal:// scheme.Matthew Barnes2012-08-251-0/+8
| | | | | webcal:// is a non-standard URI scheme, but still commonly used. We're using HTTP[S] regardless, so just accept it in the editor.
* Bug #680786 - [text-highlight] Correctly display binary patchesDan Vrátil2012-08-231-6/+19
|
* Bug #678476 - Critical warnings on calendar factory consoleMilan Crha2012-08-213-0/+48
|
* Fix all 'may be used uninitialized' compiler warningsDan Vrátil2012-08-201-0/+1
|
* Coding style and whitespace cleanup.Matthew Barnes2012-08-2040-641/+761
|
* Bind labels to widgets for day times settings in preferences so mnemonics workAndre Klapper2012-08-191-0/+2
|
* Add cal_shell_content_check_state().Matthew Barnes2012-08-193-162/+289
|
* Add event/memo/task "Save As" item to File menu.Matthew Barnes2012-08-181-0/+2
| | | | | | Contacts view already has "File -> Save as vCard". This adds "File -> Save as iCalendar" to Calendar/Memos/Tasks views.
* Bug 555325 - Delete key should not delete a whole address bookMatthew Barnes2012-08-181-22/+0
|
* action_memo_list_delete_cb(): Fix typo.Matthew Barnes2012-08-181-1/+1
|
* Bug #682019 - Always display text/plain when there's nothing else in ↵Dan Vrátil2012-08-171-9/+14
| | | | multipart/alternative
* Add e_mail_session_append_to_local_folder().Matthew Barnes2012-08-151-14/+17
| | | | | | Asynchronous + synchronous convenience functions. Uses the EMailLocalFolder enumeration to specify a well-known folder.
* Bug 681321 - Support both old and new-buf libxml2 APIsMatthew Barnes2012-08-131-1/+18
| | | | | libxml2 changed the API for xmlOutputBuffer incompatibly. See https://mail.gnome.org/archives/desktop-devel-list/2012-August/msg00004.html
* Remove GroupWise specific code from itip-formatterMilan Crha2012-08-132-55/+0
| | | | | | | | This had been removing meeting invitations from mail folders when they were added to calendars which had set "save-schedules", but it removed them only from summary, thus server had the message still there, only users didn't see them. As a comment said, this belongs to GroupWise mail provider anyway, thus I removed it.
* Adapt to CamelSession API changes.Matthew Barnes2012-08-123-11/+20
| | | | | | | | | | | | These functions now return new references: camel_session_add_service() camel_session_list_services() These functions have been renamed and also return new references: camel_session_get_service() -> camel_session_ref_service() camel_session_get_service_by_url() -> camel_session_ref_service_by_url()
* prefer-plain: Unref objects in dispose(), not finalize().Matthew Barnes2012-08-122-5/+22
|
* prefer-plain: Cleanups.Matthew Barnes2012-08-122-16/+28
|
* Remove the settings capplet.Matthew Barnes2012-08-114-44/+0
| | | | | | | | | | The evolution-settings capplet was originally designed for Anjal, it was used in MeeGo as part of the Express Mode effort, but doesn't really fit in GNOME 3 nowadays (nor did it really fit in GNOME 2, in my opinion). This is pretty clearly dead weight at this point. The MeeGo developers have disappeared, and the remaining Evolution developers are not and do not intend to maintain it. Plus it doesn't even build currently.
* backup-restore: Add version info to evolution.dirs file.Matthew Barnes2012-08-101-8/+54
| | | | | | | | | Store the Evolution version used to create the backup file in the evolution.dir file which is part of the tarball. After restoring the backup file we need to reset the last-used-version key in GSettings to the version listed in the evolution.dir file so the proper migration routines run when Evolution is restarted.
* Bug #680786 - [text-highlight] Prefer Content-Type header over file name ↵Dan Vrátil2012-08-101-14/+18
| | | | extension
* Bug #676785 - Enables wrong calendar after saving appointmentMilan Crha2012-08-101-5/+4
|
* Fix redefinition of EMailPartItip in itip-view.hMilan Crha2012-08-091-3/+5
|
* Bug #681400 - Fix build against WebKitGtk+ 1.9.6Dan Vrátil2012-08-081-2/+10
|
* Return of the "mark messages as read" preference.Matthew Barnes2012-08-081-0/+56
| | | | | | | | | | | | This reverses the removal of the "Mark messages as read" preference in commit e7247d6d60336861ed5c0ba05dd64e29f728349c. I apparently misjudged the popularity of this preference, as there's been a surprising amout of backlash and confusion as to its removal on the mailing list, IRC channel, and various distro-support forums. So, "mea culpa" for removing that one. Haven't heard a peep about the other removed preferences, however, so they will stay gone.
* Bug #246530 - Rules editor lacks "Label is (not) 'None'"Milan Crha2012-08-062-3/+150
|
* Bug #681017 - Bogus SMTP port in the account manager UIMilan Crha2012-08-061-0/+7
|
* e-memo-shell-view-actions.c: Support deleting remote resources.Matthew Barnes2012-08-031-16/+17
|
* e-task-shell-view-actions.c: Support deleting remote resources.Matthew Barnes2012-08-031-16/+17
|
* e-cal-shell-view-actions.c: Support deleting remote resources.Matthew Barnes2012-08-031-16/+17
|
* e-book-shell-view-actions.c: Support deleting remote resources.Matthew Barnes2012-08-031-6/+18
|
* Enable "delete" action for remote-deletable sources.Matthew Barnes2012-08-0312-11/+71
|
* Bug #680331 - Crash when replying to a messageDan Vrátil2012-08-031-0/+2
|
* Fix some memory leaksDan Vrátil2012-08-021-0/+16
|
* text-highlight: Add missing linker flags.Matthew Barnes2012-07-281-0/+2
|
* Bug #679404 - Read colors for message preview from Gtk themeDan Vrátil2012-07-273-10/+9
|
* Bug #680577 - [text-highlight] - Failed to load partDan Vrátil2012-07-272-2/+10
|
* Bug #680634 - Missing image attachmentDan Vrátil2012-07-271-7/+8
|
* action_address_book_new_cb(): Fix a runtime warning.Matthew Barnes2012-07-261-1/+1
|
* Bug #678635 - File->Send/Receive lists too many sourcesMilan Crha2012-07-251-70/+138
|
* Highlighting of text parts and source codesDan Vrátil2012-07-2510-30/+1277
| | | | | | | | | | 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)
* EMailShellBackend: Fix an EAlertSink runtime warning.Matthew Barnes2012-07-191-5/+14
|
* Bug #679049 - [itip-formatter] Cannot reply to meeting invitationDan Vrátil2012-07-181-8/+43
|
* Bug 679814 - Calendar invitation shows both calendar and html partDan Vrátil2012-07-131-0/+3
|
* Update to libgweather 3.5Giovanni Campagna2012-07-121-64/+21
| | | | | | | libgweather 3.5.0 changed API compared to API, and some small changes are needed in the configuration widgets. https://bugzilla.gnome.org/show_bug.cgi?id=678984
* Preset timeout on SoupSession-s to 90 secondsMilan Crha2012-07-111-0/+2
|
* Bug #548778 - Use original location when replying in Search FolderMilan Crha2012-07-112-3/+3
|
* Bug 679649 - Remove "Recent Messages" from Quick Search BarMatthew Barnes2012-07-104-31/+4
| | | | | | | | | | | | | | | | The story on this is a question [1] was recently posed to the mailing list about what's the different between "Recent Messages" and "Last 5 Days' Messages" as listed in the Show: combo box, and even I could not answer before looking up the query expression for "Recent Messages" in the source code (messages received in the past 24 hours, it turns out). I can't defend why we need both options, and "Last 5 Days' Messages" is less ambiguous and overlaps the results for "Recent Messages", so "Last 5 Days' Messages" seems sufficient to me. There are numerous ways to re-create the "Recent Messages" query if it's still desired: saved search, search folder, or just sort messages by date received. [1] https://mail.gnome.org/archives/evolution-list/2012-July/msg00044.html
* Bug #602425 - Search in "Current Account"/"All Accounts" depends on vfoldersMilan Crha2012-07-091-102/+103
|
* Remove mail_expunge_folder().Matthew Barnes2012-07-091-21/+18
| | | | Use e_mail_folder_expunge() instead.
* Remove mail_refresh_folder().Matthew Barnes2012-07-091-4/+18
| | | | Use e_mail_reader_refresh_folder() instead.
* Add e_mail_reader_unsubscribe_folder_name().Matthew Barnes2012-07-091-63/+16
| | | | Replaces e_mail_session_unsubscribe_folder().
* Add e_mail_reader_delete_folder_name().Matthew Barnes2012-07-091-4/+13
| | | | Fetches the CamelFolder asynchronously, then deletes it asynchronously.
* Avoid em_folder_tree_get_selected_folder() in some places.Matthew Barnes2012-07-091-2/+20
| | | | | | | em_folder_tree_get_selected_folder() currently blocks, and I'm about to remove the function. But there's a couple places where we just need to block for now, else it would require a significant rewrite. So execute the em_folder_tree_get_selected_folder() logic manually in those places.
* Disconnect a CamelService after editing its settings.Matthew Barnes2012-07-071-0/+82
| | | | | | | | | | | | This will force Evolution to reconnect to the service using the current settings. However this is not a complete solution. If the new settings now point to a completely different mail account, we leave behind cached messages and database tables from the previous account such that you end up with some weird hybrid of the previous account and current account. I guess for now the answer is "don't do that", but we should try to handle that more gracefully in the future -- more for architectural correctness than it being a common real world use case.
* Fix compiler warningMilan Crha2012-06-281-3/+3
|
* prefer-plain: Add missing linker flags.Matthew Barnes2012-06-281-0/+2
|
* Fix few memory leaksMilan Crha2012-06-281-0/+2
|
* [prefer-plain] Fix displaying suppressed HTML partsDan Vrátil2012-06-261-20/+21
| | | | | | Fix regression from commit 99a875ed which has broken displaying of suppressed HTML parts as attachments when the HTML part is embedded in a multipart/* container.
* Bug #515004 - Allow toggling between text and HTML view of mailDan Vrátil2012-06-265-150/+534
|
* itip-formatter/plugin: Can't link a module to another module.Matthew Barnes2012-06-261-2/+5
| | | | | Point modules/itip-formatter/plugin/Makefile.am to the source files it needs from the module directory. Have to rebuild them for the plugin.
* Include e-mail-part-audio-inline.h in tarball.Matthew Barnes2012-06-261-0/+1
| | | | Private header, but still need to distribute it.
* Include e-mail-part-vcard-inline.h in tarball.Matthew Barnes2012-06-261-0/+1
| | | | Private header, but still need to distribute it.
* Include e-mail-part-itip.h in tarball.Matthew Barnes2012-06-261-0/+1
| | | | Private header, but still need to distribute it.
* itip-formatter: Forgot to build the EPluginMatthew Barnes2012-06-261-0/+2
|
* google: Remove the offline caching option for Google Contacts address booksPhilip Withnall2012-06-261-3/+0
| | | | | | Commit 6905e9ed885cd1d5be26106d64831a6d35c36bd9 permanently enabled the on-disk cache in EDS for Google Contacts address books, so the option is now redundant.
* google: Remove SSL option for Google Contacts address booksPhilip Withnall2012-06-261-2/+0
| | | | SSL is always enabled by libgdata.
* Coding style and whitespace cleanup.Matthew Barnes2012-06-2512-45/+43
|
* Reduce usage of g_type_class_peek_parent().Matthew Barnes2012-06-259-20/+0
| | | | G_DEFINE_TYPE macros define a static "parent_class" variable.
* EMailConfigSummaryPage: Remove "account-name" property.Matthew Barnes2012-06-232-10/+18
| | | | It's redundant. Just set the display name on one of the ESources.
* ESourceContacts: Only include local address book by default.Matthew Barnes2012-06-221-2/+30
| | | | | A more reasonable default than including all address books by default. Weeds out large, remote address books that can take forever to query.
* Bug 678397 - Move "mail-to-task" actions to a submenuMatthew Barnes2012-06-211-8/+8
| | | | Shortens the Message menu a little for low screen resolutions.
* Bug 678393 - Disable Properties for built-in mail storesMatthew Barnes2012-06-211-2/+4
|
* Bug 678347 - Put spamd pid/socket files in $XDG_RUNTIME_DIRMatthew Barnes2012-06-201-2/+38
|
* Use SoupURI instead of EUri.Matthew Barnes2012-06-194-17/+33
| | | | EUri is now deprecated.
* Remove Mono and Python EPlugin bindings.Matthew Barnes2012-06-1913-874/+0
| | | | | EPlugin is deprecated. These bindings have never been used for anything and they're never going to be used at this point. Remove the dead weight.
* Do not call g_object_notify() when property didn't changeMilan Crha2012-06-1811-5/+94
|
* cal-config-caldav: Hide host details for collection members.Matthew Barnes2012-06-161-8/+26
|
* Disable 'Rename' if source is a collection member.Matthew Barnes2012-06-1512-58/+133
| | | | | | For consistency with the Preferences window. We assume the display names are server-assigned and not user-assigned, at least not assigned through Evolution.
* Fix typo in SOURCES for itip-formatterMilan Crha2012-06-151-1/+1
|
* Remove the last remaining usage of GConfMilan Crha2012-06-1519-1351/+119
|
* Finish incomplete change (and fix newly introduced compiler warning)Milan Crha2012-06-151-22/+9
|
* Remove some unnecessary linker flags.Matthew Barnes2012-06-1510-26/+1
|
* Move ECalSourceConfig to /widgets/misc.Matthew Barnes2012-06-1512-12/+12
| | | | | | ECalSourceConfig drags in no additional dependencies, and although we do publish a libevolution-calendar.so, this keeps all the ESource config UI in one place so it can more easily be moved to Evolution-Data-Server.
* Move EBookSourceConfig to /widgets/misc.Matthew Barnes2012-06-157-7/+7
| | | | | | | | | | | EBookSourceConfig drags in no additional dependencies, and allows us to delay publishing a libevolution-addressbook.so since 3rd party packages will need to subclass EBookSourceConfig. The address book source code will need to be flattened into a single library before we could publish a libevolution-addressbook.so anyway. That would be a good thing to do regardless -- Evolution has way too many internal libraries -- but it's out of scope at the moment.
* Bug #676179 - Memos/Tasks - Update preview when it's shownDan Vrátil2012-06-142-0/+12
|
* Add forgotten -include $(top_srcdir)/git.mk to Makefile.am filesMilan Crha2012-06-142-0/+4
|
* Adapt to evolution-data-server's port from GConf to GSettingsMilan Crha2012-06-145-6/+172
|
* Bug #677607 - Closing Mail Browser emits critical warningsDan Vrátil2012-06-131-2/+4
|
* itip-formatter: Remove redundant declaration.Matthew Barnes2012-06-091-2/+0
|
* Remove "enable-local" and "enable-vfolders" GSettings key.Matthew Barnes2012-06-093-21/+10
| | | | | We have built-in ESources for the 'local' and 'vfolder' mail stores, and can now track their enabled state as we would any other mail store.
* ItipView should hold a reference to underlaying WebKitDOMDocumentDan Vrátil2012-06-081-1/+2
|
* Fix displayed message headersDan Vrátil2012-06-081-0/+75
| | | | | | | | | The new formatter was ignoring selected headers, always displaying only From, To, Subject and Date (default headers). Handling of the currently displayed headers has been moved to EMailConfigFormatHTML extension, because it is related to configuration of EMailFormatter, rather then EMailReader.
* Bug #670876 - Missing mnemonics for buttons for vcard attached to emailDan Vrátil2012-06-083-58/+61
|
* Bug 677624 - Disable Properties when Search Folders is selectedMatthew Barnes2012-06-081-4/+4
|
* Fix build issue in itip-formatterMilan Crha2012-06-071-1/+3
|
* Mail formatter rewrite - convert some plugins to modulesDan Vrátil2012-06-0648-1/+12438
| | | | | | | | | | audio-inline, itip-formatter, prefer-plain, tnef-attachments and vcard-inline plugins were converted to modules so that they can fit into concept of the new formatter. Every module still installs .eplug file, because there is no suitable API at the moment to register plugins to the plugins dialog and to extend the Preferences dialog.
* Mail formatter rewriteDan Vrátil2012-06-065-45/+36
| | | | | | | | 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.
* Fix a couple distcheck errors.Matthew Barnes2012-06-051-0/+2
|
* Fix build (typo in e-source-weather.c)Milan Crha2012-06-041-1/+1
|
* Adapt to single-include E-D-S libraries.Matthew Barnes2012-06-0480-183/+79
|
* Add 'mail-config' module.Matthew Barnes2012-06-0312-1/+1694
| | | | | | This breaks a good chunk of logic out of EMAccountEditor and hopefully makes it less brittle. Because honestly, every time I fix one thing in EMAccountEditor it breaks three other things. It's unmaintainable.
* Add 'imap-features' module.Matthew Barnes2012-06-037-0/+1230
| | | | | | Adds an extra page to EMailConfigNotebook for 'imap' accounts. Replaces the 'imap-features' plugin.
* Add 'cal-config-webcal' module.Matthew Barnes2012-06-033-0/+244
| | | | | | Registers the "On The Web" backend in ECalSourceConfig widgets. Replaces the 'calendar-http' plugin.
* Add 'cal-config-weather' module.Matthew Barnes2012-06-035-0/+677
| | | | | | Registers the "Weather" backend in ECalSourceConfig widgets. Replaces the 'calendar-weather' plugin.
* Add 'cal-config-google' module.Matthew Barnes2012-06-039-0/+1692
| | | | | | Registers the "Google" backend in ECalSourceConfig widgets. Replaces the 'google-account-setup' plugin.
* Add 'cal-config-contacts' module.Matthew Barnes2012-06-037-0/+678
| | | | Registers the "Contacts" backend in ECalSourceConfig widgets.
* Add 'cal-config-caldav' module.Matthew Barnes2012-06-037-0/+2681
| | | | | | Registers the "CalDAV" backend in ECalSourceConfig widgets. Replaces the 'caldav' plugin.
* Add 'cal-config-local' module.Matthew Barnes2012-06-035-0/+605
| | | | | | Registers the "On This Computer" backend in ECalSourceConfig widgets. Replaces the 'calendar-file' plugin.
* Add 'book-config-webdav' module.Matthew Barnes2012-06-033-0/+259
| | | | | | Registers the "WebDAV" backend in EBookSourceConfig widgets. Replaces the 'webdav-account-setup' plugin.
* Add 'book-config-ldap' module.Matthew Barnes2012-06-035-0/+1808
| | | | Register the "On LDAP Servers" backend in EBookSourceConfig widgets.
* Add 'book-config-google' module.Matthew Barnes2012-06-033-0/+189
| | | | | | Register the "Google" backend in EBookSourceConfig widgets. Partially replaces the 'google-account-setup' plugin.
* Add 'book-config-local' module.Matthew Barnes2012-06-033-0/+101
| | | | | | Registers the "On This Computer" backend in EBookSourceConfig widgets. Replaces the 'addressbook-file' plugin.
* Add 'backup-restore' module.Matthew Barnes2012-06-039-0/+2157
| | | | Replaces the 'backup-restore' plugin.
* Adapt modules/startup-wizard to the new ESource API.Matthew Barnes2012-06-038-488/+1330
|
* Adapt modules/online-accounts to the new ESource API.Matthew Barnes2012-06-035-1036/+47
|
* Adapt modules/mdn to the new ESource API.Matthew Barnes2012-06-031-31/+96
|
* Adapt modules/mail to the new ESource API.Matthew Barnes2012-06-0310-409/+1027
|
* Adapt modules/calendar to the new ESource API.Matthew Barnes2012-06-0338-2194/+717
|
* Adapt modules/addressbook to the new ESource API.Matthew Barnes2012-06-0314-2133/+179
|
* Revert "Bug #669463 - HTML signature opens in editor as Plain text"Matthew Barnes2012-06-031-12/+7
| | | | | | This reverts commit f25826211b007a615118f9b583a66d7027eddeac. Not an issue on the account-mgmt branch. We can do without this hack.
* Reduce diff noise with 'account-mgmt' branch.Matthew Barnes2012-06-0317-42/+74
| | | | One last time.
* Fix an unused-but-set-variable warning.Matthew Barnes2012-06-021-1/+3
|
* Fix memory leaks around gtk_tree_model_get() functionMilan Crha2012-05-311-0/+7
|
* Adapt to vFolder changes from evolution-data-serverMilan Crha2012-05-315-9/+45
|
* Make the settings capplet optional.Matthew Barnes2012-05-295-39/+63
| | | | | | | | | The evolution-settings capplet was originally designed for Anjal, it was used in MeeGo as part of the Express Mode effort, but doesn't really fit in GNOME 3 nowadays (nor did it really fit in GNOME 2, in my opinion). Add a --with-capplet configure switch defaulting to 'no'. The capplet will eventually be removed unless I see someone actively maintaining it.
* Adapt to CamelService API changes.Matthew Barnes2012-05-201-2/+2
| | | | | | em_utils_connect_service_sync() and em_utils_disconnect_service_sync() are no longer needed. CamelService itself now effectively does what these functions were doing.
* Bug #676226 - Changing GOA mail account looses GOA keyMilan Crha2012-05-171-0/+7
|
* Bug #675863 - Cannot load webview.css from Tasks/MemosDan Vrátil2012-05-172-24/+32
|
* Bug #671585 - Add support for smooth scrolling devicesMilan Crha2012-05-151-4/+27
|
* Use g_simple_async_result_set_check_cancellable().Matthew Barnes2012-05-131-0/+4
| | | | Always call it immediately after g_simple_async_result_new().
* Whitespace cleanups.Matthew Barnes2012-05-134-19/+19
|
* Rename Evolution module libraries.Matthew Barnes2012-05-1116-81/+80
| | | | | | | Drop the "libevolution" prefix so it's not so verbose and also consistent with upcoming evolution-data-server module libraries. libevolution-module-foo.so --> module-foo.so
* Bug #669463 - HTML signature opens in editor as Plain textMilan Crha2012-05-031-7/+12
|
* Bug #668687 - MDN panel left shown when moving to an empty folderMilan Crha2012-04-231-7/+71
|
* Bug #564820 - Search filter persists when changing foldersMilan Crha2012-04-231-1/+6
|
* Bug #655753 - Improve offline notification for network outageMilan Crha2012-04-231-7/+8
|
* Missed one.Matthew Barnes2012-04-221-4/+8
|
* Adapt to libedataserver[ui] changes.Matthew Barnes2012-04-2220-124/+212
|
* Bug #674249 - Crash when showing message with large text/plainDan Vrátil2012-04-191-10/+0
|
* Show calendar Find Next/Prev/Stop buttons beside Search text entryMilan Crha2012-04-161-0/+56
|
* Bug #600860 - Opening IMAP message with large attachment blocks UIMilan Crha2012-04-132-0/+9
|
* Bug #584143 - Global Search Function withing CalendarMilan Crha2012-04-116-1/+552
|
* Bug #670967 - Moving event in offline doesn't delete event from original ↵Vibha Yadav2012-04-041-0/+20
| | | | | | | calendar check for online state and if not verify source isn't a local calendar and operation is move or destination isn't a local calendar.
* Whitespace cleanup.Matthew Barnes2012-04-021-1/+1
| | | | | Replace 8-space indentation with tab characters, and various other automated cleanups.
* Drop the ConnMan/NetworkManager/WindowsSENS modules.Matthew Barnes2012-04-017-1242/+1
| | | | | | We rely on GNetworkMonitor for network availability now. Not our problem anymore. \o/
* EMFormat: Add "session" as a constructor property.Matthew Barnes2012-04-012-11/+21
| | | | Pass it in instead of digging it out of EShellSettings.
* WebKit port - port formatter and mail moduleDan Vrátil2012-03-2911-166/+351
|
* Bug 672474 - Flaw in GOA synchronization logicMatthew Barnes2012-03-202-2/+18
| | | | | Changes to EAccountList and ESourceList must be explicitly synchronized back to GConf. I forgot. Fix it throughout the online-accounts module.
* startup-wizard: Avoid em_account_editor_get_widget().Matthew Barnes2012-03-071-6/+19
| | | | | em_account_editor_get_widget() won't be around much longer. Instead, use gtk_container_foreach() to scan for a GtkLabel.
* Add missing linker flags.Matthew Barnes2012-03-045-0/+5
|
* Whitespace cleanups.Matthew Barnes2012-03-031-4/+4
|
* Move vfolders to libemail-engine and rest as mail-vfolder-ui. It all works andSrinivasa Ragavan2012-03-033-5/+7
| | | | | the daemon can now start the vfolder storage without bothering much with the UI.
* Move EAlert* and e-xml-utils references from other part of the code to ↵Srinivasa Ragavan2012-03-0316-16/+16
| | | | libevolution-utils.
* Bug #671211 - 'Mark Citations' preferences not appliedDan Vrátil2012-03-021-0/+5
|
* Bug #670934 - Was saving ESourceList first, rather than lastMilan Crha2012-03-011-1/+1
|
* Account properties shown also on remote foldersMilan Crha2012-02-211-1/+1
|
* Coding style and whitespace cleanup.Matthew Barnes2012-02-2020-102/+224
|
* Use GSettings for EProxyMilan Crha2012-02-172-109/+89
|
* Bug #320976 - Remember last New button choice in Calendar viewMilan Crha2012-02-172-2/+17
|
* Bug #668482 - Edit account properties from menu on folder storeMilan Crha2012-02-166-107/+177
|