aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* EMFolderTree: Add an EAlertSink property.Matthew Barnes2011-05-247-11/+112
| | | | | Now EMFolderTree has access to both an EShellBackend and an EAlertSink; everything it needs to build and submit EActivity instances.
* Let EMFolderSelector create its own EMFolderTree.Matthew Barnes2011-05-247-252/+285
| | | | | Also, minimize the EMFolderSelector API by removing frivolous wrapper functions and unused functions.
* EMFolderTree: Whitespace cleanups.Matthew Barnes2011-05-241-6/+9
|
* Bug 649993 - Change behavior of --component optionMatthew Barnes2011-05-241-0/+22
| | | | | | | | | | This is primarily for the GNOME Shell calendar. If, for example, "evolution --component calendar" is invoked and there is already an Evolution window opened to the calendar view, present that window. Otherwise open a new Evolution window to the requested view. Same behavior applies to all requested views.
* EMFolderTree: Store an EMailBackend instead of an EMailSession.Matthew Barnes2011-05-2444-426/+441
| | | | | | | | All this so EMFolderTree can submit EActivity instances for async ops. You can obtain an EMailSession from an EMailBackend, but not vice versa. Creates lots of pretty ripples in the mail code, but ultimately reduces complexity. So it's a code cleanup of sorts.
* Remove emfu_create_folder_real().Matthew Barnes2011-05-243-187/+231
| | | | Use e_mail_store_create_folder() instead.
* Bug #643819 - Autocomplete the Location fieldDan Vrátil2011-05-231-4/+157
|
* Updated Irish translation.Seán de Búrca2011-05-231-12504/+11183
|
* Bug 537691 - Account editor window HIGMatthew Barnes2011-05-231-18/+25
| | | | | | Change the OK button to Apply, and fix the padding around the window edges. People already bitching about the window being too tall are just gonna bitch louder now, but it does look better on normal size screens.
* Revert "Correct garbled mailto: uris passed in through GApplication interface"Matthew Barnes2011-05-231-4/+0
| | | | | | This reverts commit 94d5fb1b664ab38790ba620f7d2c6d585b666c91. Wrong solution. See bug #650491.
* Bug 650491 - Shell handles forwarding uris to existing process wrongMatthew Barnes2011-05-237-58/+43
| | | | | This adds a "handle-uris" GAction which takes a string array argument, so the URIs can be passed to the primary process verbatim.
* Updated Spanish translationJorge González2011-05-221-587/+590
|
* Bug 650524 - Use g_unix_signal_add_watch_full() for SIGTERMColin Walters2011-05-221-22/+19
| | | | | We can't call anything safely except write() inside a signal handler, g_unix_signal_add_watch_full() handles this for us nicely.
* Fix crash when opening message window.Matthew Barnes2011-05-221-2/+2
| | | | Would help if I actually did what the comment said...
* Handle SIGTERM instead of SIGQUIT.Matthew Barnes2011-05-221-9/+9
| | | | SIGQUIT is supposed to produce a core dump. We don't want that.
* Bug 650525 - Don't install a SEGV handlerColin Walters2011-05-221-51/+0
| | | | | Assume the operating system ships with a system-wide crash catching service like ABRT or Apport.
* Coding style and whitespace cleanup.Matthew Barnes2011-05-22107-1101/+2036
|
* Updated Spanish translationDaniel Mustieles2011-05-211-19/+20
|
* EMailReader: Remove the forward/reply style hack.Matthew Barnes2011-05-211-24/+23
| | | | | Now that we're configuring EMailReader instances from an idle callback, we can safely store the forward and reply styles in the private struct.
* Bug 650587 - Hide Search Folder actions when Search Folders are disabledMatthew Barnes2011-05-2110-71/+141
| | | | | | | | | | | | | | | | Add an action group for Search Folders to EMailReader. The action group's visibility is bound to the "mail-enable-search-folders" setting, so that menu items related to Search Folders are hidden when Search Folders are disabled in GConf. Affected menu items are: Edit -> Search Folders Message -> Create Rule -> Search Folder from Subject... Message -> Create Rule -> Search Folder from Sender... Message -> Create Rule -> Search Folder from Recipients... Message -> Create Rule -> Search Folder from Mailing List... Search -> Create Search Folder From Search...
* EMailReader: Support multiple action groups.Matthew Barnes2011-05-218-42/+81
| | | | | | Use an enum type to request different action groups. For now we just have E_MAIL_READER_ACTION_GROUP_STANDARD. EMailReader implementations should map the enum value to an appropriate GtkActionGroup.
* mail-autofilter.c: Add argument guards in public functions.Matthew Barnes2011-05-211-1/+13
| | | | | | | | | This is related to bug #650587, but is not a proper fix. The proper fix is in the next couple commits about EMailReader action groups. This commit just trades a crash for a runtime warning, but can be backported to the stable branch, whereas the changes required for the proper fix are too extensive to backport.
* Remove mail_remove_folder().Matthew Barnes2011-05-2114-286/+359
| | | | Use e_mail_folder_remove() instead.
* Always initialized all structure membersMilan Crha2011-05-191-1/+1
|
* Bug 650522 - em-format-html: Fix uninitialized variableColin Walters2011-05-191-1/+1
|
* Remove mail_get_folderinfo().Matthew Barnes2011-05-193-131/+55
| | | | Use camel_store_get_folder_info() instead.
* Updated Spanish translationJorge González2011-05-191-410/+409
|
* Remove mail_save_messages().Matthew Barnes2011-05-188-238/+378
| | | | Use e_mail_folder_save_messages() instead.
* Remove mail_store_prepare_offline().Matthew Barnes2011-05-187-89/+139
| | | | Use e_mail_store_prepare_for_offline() instead.
* Remove mail_check_service().Matthew Barnes2011-05-183-146/+73
| | | | Use camel_service_query_auth_types() instead.
* Updated Spanish translationJorge González2011-05-181-583/+595
|
* Bug #647785 - Pasting an 24h event in month and week view doesn't workMilan Crha2011-05-171-3/+4
|
* Fix typo in gl translation. See bug 650384Andre Klapper2011-05-171-1/+1
|
* bug #648612 crash during drag & drop of recurring eventsPunit Jain2011-05-171-0/+1
|
* Remove mail_remove_attachments().Matthew Barnes2011-05-177-149/+309
| | | | Use e_mail_folder_remove_attachments() instead.
* Bug 650223 - evolution-backup does not terminate without --guiMatthew Barnes2011-05-171-48/+81
| | | | | | | | | | | Use g_io_scheduler_push_job() instead of g_thread_create(). When the operation is finished, call gtk_main_quit() from the main thread using g_io_scheduler_job_send_to_mainloop(). Also, check for cancellation with a GCancellable instead of a boolean. Note: We really should be using GLib's process spawning API instead of system(), but that's a job for another day.
* Add EPortEntry to the Glade catalog.Matthew Barnes2011-05-171-0/+3
|
* Bug 650088 - Cannot send message from Contacts viewMatthew Barnes2011-05-171-0/+5
| | | | | | | | This starts up the EMailShellBackend whenever a new composer window is created. Normally this happens when switching to the Mail shell view, but if trying to send a message from a different shell view before the Mail shell view is ever activated, the mail accounts were not getting loaded and sending or saving the message to a mail folder would fail.
* Bug 649990 - Remove get_font_options() from e-util.c.Matthew Barnes2011-05-175-152/+0
| | | | | | | | | Not only is get_font_options() no longer needed, it's actually doing the wrong thing by reading settings through GConfClient instead of GSettings. But it turns out, thanks to the tighter Cairo integration in GTK3, the widgets that call get_font_options() can be made to work correctly by simply removing this hack. Love it when that happens.
* Bug #646615 - Bad single formMilan Crha2011-05-161-1/+1
|
* Remove unused e_get_gnome2_user_dir().Matthew Barnes2011-05-165-37/+8
|
* Bug #649392 - Improve calendar's "Goto" dialog and move it to dialogsDan Vrátil2011-05-1612-24/+28
|
* Bug #601541 - Add 'Copy Image' Option On Inline Email ImagesMilan Crha2011-05-165-3/+126
|
* Correct garbled mailto: uris passed in through GApplication interfaceMilan Crha2011-05-161-0/+4
|
* Updated Slovenian translationMatej Urbančič2011-05-161-3/+3
|
* Updated Slovenian translationMatej Urbančič2011-05-161-2220/+3698
|
* Remove mail_get_folder_quota().Matthew Barnes2011-05-152-83/+0
| | | | Use camel_folder_get_quota_info() instead.
* EMFolderProperties: Fetch quota information asynchronously.Matthew Barnes2011-05-151-11/+52
|
* Remove mail_get_message().Matthew Barnes2011-05-142-85/+0
| | | | Use camel_folder_get_message() instead.
* Reimplement the "mail-reply-sender" action.Matthew Barnes2011-05-141-47/+79
| | | | Now uses camel_folder_get_message().
* Reimplement the "mail-reply-all" action.Matthew Barnes2011-05-141-33/+59
| | | | Now uses camel_folder_get_message().
* Reimplement part of the "templates" plugin.Matthew Barnes2011-05-141-19/+132
| | | | Now uses camel_folder_get_message().
* Bug #243938 - Clicking on week numbers changes work week to week viewMilan Crha2011-05-134-6/+55
|
* Bug #646033 - Update progress in Send/Receive dialogMilan Crha2011-05-131-0/+16
|
* GN-bug #649935 - Check folder validity before asking for its URIMilan Crha2011-05-131-2/+5
|
* Bug #619347 - Decode QP in email in Contact List EditorMilan Crha2011-05-131-0/+10
|
* EMailShellView: Remove some unused utility functions.Matthew Barnes2011-05-132-159/+0
| | | | | I guess I meant to move these to EMailReader but forgot to delete the original versions.
* Keep forgetting to add prefixes to EAlert tags.Matthew Barnes2011-05-135-8/+8
|
* Reimplement "mailing-list-actions" plugin.Matthew Barnes2011-05-131-25/+72
| | | | Now uses camel_folder_get_message().
* Miscellaneous cleanups.Matthew Barnes2011-05-138-108/+137
|
* em_format_html_print_message(): Require a CamelMimeMessage.Matthew Barnes2011-05-134-49/+91
| | | | | | Let EMailReader fetch the CamelMimeMessage itself, handle errors, and then pass it off to EMFormatHTMLPrint. This also eliminates the need for em_format_html_print_raw_message().
* em_utils_reply_to_message(): Require a CamelMimeMessage.Matthew Barnes2011-05-135-86/+19
| | | | | No more fetching a message itself. Oh, and stop unreffing the message. Those kinds of insane semantics are what lead to crashes.
* Remove em_utils_redirect_message_by_uid().Matthew Barnes2011-05-132-42/+0
| | | | Use em_utils_redirect_message() instead.
* Reimplement the "mail-redirect" action.Matthew Barnes2011-05-131-8/+59
| | | | | Now fetches the message itself using camel_folder_get_message(), then calls em_utils_redirect_message().
* Add e_mail_reader_new_activity().Matthew Barnes2011-05-136-90/+66
| | | | | | | | | | | | | | | | Configuring and submitting an EActivity for every mail operation is getting tedious. This function helps reduce boilerplate code by: * Creating a new EActivity instance. * Installing an EAlertSink using e_mail_reader_get_alert_sink(). * Installing a GCancellable (which is really a CamelOperation). * Submitting the activity via e_shell_backend_add_activity(). I'm considering adding a similar function (or class method) for EShellView. Not sure yet...
* Reimplement e_mail_reader_create_vfolder_from_selected().Matthew Barnes2011-05-131-5/+0
| | | | Now uses camel_folder_get_message().
* Reimplement e_mail_reader_create_vfolder_from_selected().Matthew Barnes2011-05-131-24/+75
| | | | Now uses camel_folder_get_message().
* Reimplement e_mail_reader_create_filter_from_selected().Matthew Barnes2011-05-131-33/+72
| | | | Now uses camel_folder_get_message().
* Updated Spanish translationDaniel Mustieles2011-05-131-446/+467
|
* EMConfigTargetFolder: Remove URI member.Matthew Barnes2011-05-133-11/+3
| | | | | Use e_mail_folder_uri_from_folder() if you really need a folder URI for the target's CamelFolder.
* Bug #645476 - Avoid scroll to cursor on folder change in message listMilan Crha2011-05-121-12/+15
|
* Cannot send message with just enabled accountMilan Crha2011-05-123-56/+46
| | | | | | | | | | | | | Everything in UI seemed as working fine, but the message is just lost, even there was printed a runtime warning on the console. This is fixing couple things along this issue: - differentiate between NULL and invalid pointers/objects in new e_mail_folder_uri_...() functions - report error to UI if mail_session_send_to_thread() fails to find corresponding transport service - call e_mail_store_add_by_account() in mail_store_load_accounts() (a side-effect of this change is no code duplication and unified processing of the same action)
* e_mail_session_uri_to_folder_sync(): Remove redundant status message.Matthew Barnes2011-05-121-5/+0
| | | | camel_store_get_folder() pushes an "Opening folder" message itself.
* Remove mail_get_folder().Matthew Barnes2011-05-122-87/+0
| | | | Use camel_store_get_folder() instead.
* Reimplement em_folder_properties_show().Matthew Barnes2011-05-123-101/+197
| | | | | Now uses camel_store_get_folder() and camel_folder_get_quota_info(), although I need to rewrite the quota function to be asynchronous.
* Get vfolder_edit_rule() working again.Matthew Barnes2011-05-122-65/+62
| | | | | | It was handling folder URIs the old way. Also, use gtk_dialog_run() to simplify the logic.
* mark-all-read: Reimplement to not block.Matthew Barnes2011-05-121-63/+204
| | | | | | I'm mainly trying to get rid of mail_get_folder(), but I'm also tired of this plugin blocking the UI. If there's a lot of messages the lockup is really noticable.
* Fix some GPtrArray leaks.Matthew Barnes2011-05-122-23/+50
|
* Add e_activity_handle_cancellation().Matthew Barnes2011-05-1210-50/+39
| | | | | | | | Convenience function for use in GAsyncReadyCallback functions. This acknowledges the cancellation, so that the activity's description changes from "(cancelling)" to "(cancelled)" and the description appears crossed out in the UI for a moment before disappearing.
* Remove mail_get_messages().Matthew Barnes2011-05-122-99/+0
| | | | Use e_mail_folder_get_multiple_messages() instead.
* Remove mail_build_attachment().Matthew Barnes2011-05-122-67/+0
| | | | Use e_mail_folder_build_attachment() instead.
* Reimplement em_utils_edit_messages().Matthew Barnes2011-05-125-68/+86
| | | | Now uses e_mail_folder_get_multiple_messages().
* Add a 'message_uid' param to em_utils_edit_message().Matthew Barnes2011-05-123-54/+49
| | | | | So we can remove the internal edit_message() function and do the work directly in em_utils_edit_message().
* Reimplement em_utils_forward_messages().Matthew Barnes2011-05-125-119/+190
| | | | | Now uses e_mail_folder_build_attachment() and e_mail_folder_get_multiple_messages().
* Add e_mail_folder_build_attachment().Matthew Barnes2011-05-122-0/+186
| | | | Replaces mail_build_attachment() from mail-ops.c.
* EMailReader: Reimplement "mail-remove-duplicates" action.Matthew Barnes2011-05-124-151/+166
| | | | Now uses e_mail_folder_find_duplicate_messages().
* Add e_mail_folder_find_duplicate_messages().Matthew Barnes2011-05-122-0/+218
| | | | Moves the non-interactive logic out of EMailReader.
* Add e_mail_folder_get_multiple_messages().Matthew Barnes2011-05-122-0/+154
| | | | Replaces mail_get_messages() from mail-ops.c.
* Bug #649939 - Cann't create new folder (second shot)Milan Crha2011-05-112-3/+12
| | | | | The previous patch worked for local account only, for anything which has '@' in account's UID it still failed.
* Bug #649952 - Do not unref result of camel_session_get_service()Milan Crha2011-05-112-1/+2
|
* Bug #649939 - Cann't create new folderMilan Crha2011-05-111-41/+14
|
* Updated Galician translationsFran Diéguez2011-05-111-1289/+1161
|
* Updated Bulgarian translationAlexander Shopov2011-05-111-1895/+1795
|
* "email://" URIs have encoded paths too.Matthew Barnes2011-05-091-1/+1
|
* Encode the path part of folder URIs.Matthew Barnes2011-05-091-8/+16
| | | | | | | | | | | | Wasn't sure if this was necessary, but it -is- in order to handle the local Junk and Trash vfolder names correctly: .#evolution/Junk .#evolution/Trash If we don't escape the path and we feed camel_url_new() something like "folder://local/.#evolution/Trash", it's gonna think the path is '.' and the rest of it's a fragment.
* Updated Spanish translationJorge González2011-05-091-1166/+1029
|
* Coding style cleanups.Matthew Barnes2011-05-09209-1538/+1538
|
* Post-release version bump.Matthew Barnes2011-05-091-1/+1
|
* NEWS update for 3.1.1 release.EVOLUTION_3_1_1Matthew Barnes2011-05-092-1/+253
|
* Remove groupwise-features files from POTFILES.in.Matthew Barnes2011-05-091-27/+0
|
* Whitespace and coding style cleanups.Matthew Barnes2011-05-0874-206/+446
|
* Adapt to CamelFolder:name -> display-name.Matthew Barnes2011-05-078-9/+11
|
* Adapt to CamelFolderInfo.name -> display_name.Matthew Barnes2011-05-074-19/+22
|
* mail-send-recv.c:get_folders(): Adapt to CamelVeeStore change.Matthew Barnes2011-05-071-8/+7
| | | | See E-D-S commit 26c74be4066dff41dd1e9c9adc1c2c116142ba60.
* MailFolderCache: Drop folder URI in "folder-changed" signal.Matthew Barnes2011-05-073-34/+25
| | | | | We already include a CamelStore and folder name string in the signal arguments, so it's trivial to reconstruct the URI if it's needed.
* Remove em_folder_tree_get_selected_folder_info().Matthew Barnes2011-05-072-45/+0
| | | | Function is no longer used, or wanted.
* em_folder_utils_create_folder(): Change function parameters.Matthew Barnes2011-05-075-16/+22
| | | | | Take a folder URI string instead of a CamelFolderInfo, and swap places with the GtkWindow parameter.
* em_folder_utils_copy_folder(): Change function parameter.Matthew Barnes2011-05-073-41/+60
| | | | Take a folder URI string instead of a CamelFolderInfo.
* Remove e_get_account_by_source_url().Matthew Barnes2011-05-064-79/+0
| | | | Function is no longer used, or wanted.
* Adapt to X-Evolution-Source headers storing UIDs.Matthew Barnes2011-05-062-33/+13
|
* Remove uid_cachename_hack().Matthew Barnes2011-05-061-24/+7
| | | | | | It was building the old CamelStore path based on the URI. Gone before 0.11 my ass.
* fetch_mail_exec(): Remove hack for local Inbox.Matthew Barnes2011-05-061-92/+66
| | | | | | Don't call camel_filter_driver_filter_mbox() on the local Inbox since the local Inbox is no longer an mbox. Just treat it like any other folder.
* Remove em_uri_from_camel() and em_uri_to_camel().Matthew Barnes2011-05-062-146/+0
| | | | Functions are no longer used, or wanted.
* mail-config.c: Don't try to rename obsolete config files.Matthew Barnes2011-05-061-10/+3
|
* MailFolderCache: Emit folder names instead of URIs in signals.Matthew Barnes2011-05-066-230/+202
|
* mail-config.c: Code cleanups.Matthew Barnes2011-05-061-105/+108
|
* mail-vfolder.c: Coding style cleanups.Matthew Barnes2011-05-061-20/+16
|
* Simplify vfolder_adduri_desc().Matthew Barnes2011-05-061-37/+30
|
* Simplify em_vfolder_rule_from_address().Matthew Barnes2011-05-061-4/+2
|
* Simplify em_vfolder_rule_from_message().Matthew Barnes2011-05-061-4/+2
|
* Simplify e_mail_session_unsubscribe_folder_sync().Matthew Barnes2011-05-061-31/+18
|
* e_mail_local_init(): Use the new folder URI format.Matthew Barnes2011-05-061-5/+5
|
* EMVFolderRule: Use the new folder URI format.Matthew Barnes2011-05-061-16/+17
|
* EMFilterFolderElement: Use the new folder URI format.Matthew Barnes2011-05-063-45/+8
| | | | No longer need to distinguish between Camel URIs and Evolution URIs.
* EMFolderTreeModel: Use the new folder URI format.Matthew Barnes2011-05-061-5/+9
| | | | Disregard CamelFolderInfo.uri strings.
* Introduce a new, simpler folder URI format.Matthew Barnes2011-05-062-8/+65
| | | | | | | | | | | | | | | | Folder URIs shall henceforth be exclusive to Evolution. The new format is: 'folder://' CAMEL_STORE_UID '/' CAMEL_FOLDER_PATH Add e_mail_folder_uri_build() to construct such a URI from a CamelStore and folder path string, change e_mail_folder_uri_from_folder() to build the new URI, and teach e_mail_folder_uri_parse() to parse it. e_mail_folder_uri_parse() will continue to know how to parse the older URI formats still present in config files and GConf keys. This captures the legacy knowledge neatly into one function.
* EMAccountEditor: Fix a runtime warning.Matthew Barnes2011-05-061-2/+5
| | | | | | Before selecting a URI in the EMFolderSelectionButton for Drafts and Sent folders, install an EMailSession in each button which is needed for parsing URIs.
* Random little coding style cleanups.Matthew Barnes2011-05-064-32/+35
|
* EMailDisplay: Coding style cleanup.Matthew Barnes2011-05-061-1/+2
|
* EMFolderTreeModel: Avoid e_get_account_by_source_url().Matthew Barnes2011-05-061-1/+3
| | | | Use e_get_account_by_uid() instead.
* EMFolderTreeModel: Always populate the CamelStore column.Matthew Barnes2011-05-061-4/+3
| | | | | Even in 'Loading...' rows. This way we know the CamelStore is present in all rows, and don't have to test for NULL.
* Simplify em_folder_tree_model_set_folder_info().Matthew Barnes2011-05-061-6/+4
| | | | | e_mail_folder_uri_equal() uses e_mail_folder_uri_parse() to parse both URIs, so we can just hand it an 'email://' URI directly.
* Simplify em_utils_folder_is_sent().Matthew Barnes2011-05-061-9/+4
| | | | | e_mail_folder_uri_equal() uses e_mail_folder_uri_parse() to parse both URIs, so we can just hand it an 'email://' URI directly.
* Simplify em_utils_folder_is_drafts().Matthew Barnes2011-05-061-8/+3
| | | | | e_mail_folder_uri_equal() uses e_mail_folder_uri_parse() to parse both URIs, so we can just hand it an 'email://' URI directly.
* Simplify em_utils_folder_is_templates().Matthew Barnes2011-05-061-8/+3
| | | | | e_mail_folder_uri_equal() uses e_mail_folder_uri_parse() to parse both URIs, so we can just hand it an 'email://' URI directly.
* Simplify emae_account_folder().Matthew Barnes2011-05-061-7/+2
| | | | | EMFolderSelectionButton uses e_mail_folder_uri_parse(), so we can just hand it an 'email://' URI directly.
* Drop support for command-line 'email://' URIs.Matthew Barnes2011-05-061-106/+3
| | | | | I have no idea what this was used for, but it looks way too convoluted to be useful anymore.
* Simplify e_mail_session_uri_to_folder_sync().Matthew Barnes2011-05-061-67/+13
| | | | | | This relies on e_mail_folder_uri_parse() to handle 'email://' URIs. See the previous commit.
* Teach e_mail_folder_uri_parse() to parse 'email://' URIs.Matthew Barnes2011-05-061-9/+60
|
* Simplify em_folder_tree_set_selected_list().Matthew Barnes2011-05-061-59/+38
|
* Updated galician translationsFran Diéguez2011-05-061-2/+2
|
* Bug 649381 - Memory leaks in contact editorDan Vrátil2011-05-051-0/+7
|
* Bug 332497 - Add Edit -> Available CategoriesDan Vrátil2011-05-055-0/+56
| | | | | | Opens a window to manage categories without having to edit a contact or appointment. Not available in the Mail shell view since it doesn't use categories.
* Bug #627952 - 'Local delivery' mbox's aren't read properlyMilan Crha2011-05-052-7/+15
|
* Updated Spanish translationDaniel Mustieles2011-05-051-501/+509
|
* Bug 649365 - Creation of new repository evolution-groupwiseVibha Yadav2011-05-0438-10350/+2
| | | | Removing groupwise plugin code from evolution.
* Updated Norwegian bokmål translationKjartan Maraas2011-05-041-1728/+1753
|
* Use e_mail_folder_uri_from_folder() instead of camel_folder_get_uri().Matthew Barnes2011-05-046-46/+48
|
* Remove EMFolderTreeModel::folder-added signal.Matthew Barnes2011-05-042-18/+0
| | | | No one was listening.
* EMFolderSelectionButton: Avoid e_get_account_by_source_url().Matthew Barnes2011-05-041-10/+19
| | | | Use e_get_account_by_uid() instead.
* MessageList: Simplify the "Location" column.Matthew Barnes2011-05-041-25/+18
|
* groupwise-features: Avoid e_get_account_by_source_url().Matthew Barnes2011-05-043-21/+21
| | | | Use e_get_account_by_uid() instead.
* Drop 'folder_uri' member from MessageList.Matthew Barnes2011-05-045-40/+31
|
* Remove e_mail_reader_get_folder_uri().Matthew Barnes2011-05-048-69/+69
| | | | | Instead call e_mail_reader_get_folder() and, if you really need to, generate the folder URI with e_mail_folder_uri_from_folder().
* Build vfolder rules with CamelFolders instead of folder URIs.Matthew Barnes2011-05-046-28/+35
|
* Remove 'from_uri' params from e-msg-composer-utils.c.Matthew Barnes2011-05-046-81/+107
| | | | | Pass CamelFolder objects instead, which are already available at almost every call site.
* Change em_folder_tree_model_user_marked_unread() params.Matthew Barnes2011-05-034-7/+11
| | | | Take a CamelFolder instead of a folder URI string.
* Fix a runtime warning in e_mail_reader_check_state().Matthew Barnes2011-05-031-6/+6
| | | | | Don't call em_utils_folder_is_drafts() or em_utils_folder_is_outbox() if the CamelFolder is NULL.
* Fix compiler warnings.Matthew Barnes2011-05-0312-42/+1
| | | | Mostly dead assignments.
* Drop 'folder_uri' param from em_utils_folder_is_outbox().Matthew Barnes2011-05-0311-38/+25
|
* Drop 'folder_uri' param from em_utils_folder_is_sent().Matthew Barnes2011-05-039-20/+21
|
* Drop 'folder_uri' param from em_utils_folder_is_templates().Matthew Barnes2011-05-035-12/+14
|
* Drop 'folder_uri' param from em_utils_folder_is_drafts().Matthew Barnes2011-05-0311-29/+27
|
* em-utils.c: Simplify guess_account_from_folder().Matthew Barnes2011-05-031-13/+5
|
* em-utils.c: More coding style cleanups.Matthew Barnes2011-05-031-8/+17
|
* Replace camel_store_folder_uri_equal() with e_mail_folder_uri_equal().Matthew Barnes2011-05-033-67/+87
|
* em-utils.c: Coding style cleanups.Matthew Barnes2011-05-031-66/+71
|
* Add some handy folder URI utility functions.Matthew Barnes2011-05-032-0/+165
| | | | | | | | | | | | | | | | | e_mail_folder_uri_parse() Parses a folder URI and returns a corresponding CamelStore instance and folder name string, or else sets a GError. e_mail_folder_uri_equal() Compares two folder URIs for equality. Replaces camel_store_folder_uri_equal(). e_mail_folder_uri_from_folder() This will eventually replace camel_folder_get_uri(), but for now it just calls camel_folder_get_uri() and duplicates the URI string.
* Drop 'folder_uri' param from message_list_set_folder().Matthew Barnes2011-05-033-8/+14
|
* MessageList coding style cleanups.Matthew Barnes2011-05-031-12/+12
|
* Remove e_mail_reader_set_folder_uri().Matthew Barnes2011-05-032-32/+0
| | | | Function is no longer used, or wanted.
* EMailShellView: Open the selected folder ourselves.Matthew Barnes2011-05-0315-89/+194
| | | | | | | | | | | | | | | | | This one's a little involved: - EMailShellView now obtains a CamelFolder itself in response to EMFolderTree::folder-selected signals. Uses EActivity to do so. - Revise EMFolderTree::folder-selected signal arguments to be more useful: emit a CamelStore object instead of a folder URI. - Also revise EMFolderTree::folder-activiated signal arguments the same way while we're at it. - Remove the "folder_uri" argument from e_mail_reader_set_folder(). If you have a CamelFolder object you can obtain the URI string by calling camel_folder_get_uri().
* Add em_folder_tree_get_selected_account().Matthew Barnes2011-05-034-18/+35
| | | | Comes in handy for a few EMailShellView actions.
* EMFolderTree: Coding style cleanups.Matthew Barnes2011-05-031-6/+10
|
* EMailSession: Fix popb4smtp authentication.Matthew Barnes2011-05-031-6/+1
| | | | | Forgot I had already made CamelSaslPOPB4SMTP expect a CamelSource UID from camel_session_get_password().
* Remove e_get_account_by_transport_url().Matthew Barnes2011-05-034-69/+0
| | | | Function is no longer used, or wanted.
* Simplify mail_session_get_password().Matthew Barnes2011-05-031-16/+13
| | | | | Utilizes the new capability in e_get_account_by_uid() to handle both CamelStore and CamelTransport UIDs.
* EMConfigTargetAccount: Add original_account member.Matthew Barnes2011-05-036-30/+54
| | | | | | | Rename the existing 'account' member to 'modified_account' and add an 'original_account' member so plugins have direct access to both. Mostly of benefit to the imap-features plugin.
* EMConfig coding style cleanups.Matthew Barnes2011-05-032-86/+92
|
* EMEventTargetFolder: Add an EAccount member.Matthew Barnes2011-05-034-13/+23
| | | | | The mail-notification plugin can use the EAccount member directly instead of searching for it by URI.
* EMEvent coding style cleanups.Matthew Barnes2011-05-032-72/+106
|
* e_get_account_by_uid(): Also handle CamelTransport UIDs.Matthew Barnes2011-05-031-4/+21
| | | | | | | | | | | | | | Enhance e_get_account_by_uid() to also accept CamelTransport UIDs. The convention we use to distinguish them is simple: Given an EAccount UID: - The CamelStore UID is the EAccount UID verbatim. - The CamelTransport UID is the EAccount UID + "-transport". So just check for a "-transport" suffix and truncate it.
* MailFolderCache: Remove 'folders_uri' hash tableMatthew Barnes2011-05-021-11/+0
| | | | | We've been adding and removing folder URIs to this hash table but never actually using it for anything. Not a single lookup. So just remove it.
* [l10n] Updated German help translationChristian Kirbach2011-05-021-4742/+4694
|
* Bug 649046 - crash on startup with latest CamelURL modificationsLucian Langa2011-05-021-1/+0
|
* [l10n] Updated German translation (Bug #647782)Christian Kirbach2011-05-011-344/+414
|
* Updated Swedish translationDaniel Nylander2011-05-011-1568/+1951
|
* Updated galician translationsFran Diéguez2011-05-011-1269/+1317
|
* groupwise-features: Fix a compiler warning.Matthew Barnes2011-04-301-1/+1
|
* EMFolderSelectionButton: Remove unused multiselect functions.Matthew Barnes2011-04-303-154/+25
|
* Updated Spanish translationDaniel Mustieles2011-04-301-558/+592
|
* Adapt to extra arg in camel_session_get_service_by_url().Matthew Barnes2011-04-296-9/+11
|
* Bug #588891 - Spam settings dialog terribly un-higgyDan Vrátil2011-04-292-39/+164
|
* Bug 648756 - Custom imap port forgottenDan Vrátil2011-04-291-4/+6
|
* Bug 645825 - Search bar not changing color when showing resultsDan Vrátil2011-04-291-2/+2
|
* Updated Spanish translationDaniel Mustieles2011-04-291-461/+467
|
* Make EAlertBar messages selectableMilan Crha2011-04-281-0/+2
|
* Bug 597082 - Crash while migrating folder infoMatthew Barnes2011-04-281-11/+25
| | | | | | | | In migrate_folders(), free the idle callback closure using a GDestroyNotify callback so we don't try to free the same memory repeatedly if the idle callback recurses while cycling the main loop. Why *are* we cycling the main loop anyway? I don't get that part.
* Add itip_get_fallback_identity().Matthew Barnes2011-04-285-38/+48
| | | | | Convenience function returns a name + address string from the default mail identity, to be used as a fallback for organizers.
* Fix a memory leakMilan Crha2011-04-281-0/+1
|
* Bug #303862 - Cannot scroll message after clicking image attachment buttonDan Vrátil2011-04-281-0/+34
|
* Bug #303653 - Make headers collapsable in preview paneDan Vrátil2011-04-277-6/+197
|
* Bug #641845 - Add default expansion variables to templates pluginDan Vrátil2011-04-272-98/+452
| | | | | Users can read values from original message in the template by $ORIG[header] and with a special value $ORIG[body].
* Add itip_get_user_identities().Matthew Barnes2011-04-275-125/+105
| | | | | Convenience function returns a NULL-terminated array of name + address strings based on registered mail identities.
* Refactor CompEditor pages to isolate EAccount usage.Matthew Barnes2011-04-273-236/+354
| | | | | Hide EAccount usage behind more generic APIs so EAccount can be replaced more easily in the account-mgmt branch.
* Add itip_address_is_user().Matthew Barnes2011-04-265-20/+40
| | | | | Convenience function that checks whether the given email address matches a registered mail identity.
* itip-utils cleanups.Matthew Barnes2011-04-262-56/+96
|
* Add e_meeting_store_find_self().Matthew Barnes2011-04-264-36/+61
| | | | | Convenience function that uses registered mail identities to find the user among meeting attendees.
* Remove redundant EAccountList utilities.Matthew Barnes2011-04-2616-62/+45
| | | | | Kill itip_addresses_get() and itip_addresses_get_default(), and use e_get_account_list() and e_get_default_account() instead.
* CompEditor cleanups.Matthew Barnes2011-04-268-746/+768
| | | | Random cleanups from the account-mgmt branch, to reduce diff noise.
* Some modules missing CFLAGS/LIBS for EShell.Matthew Barnes2011-04-264-7/+15
|
* EMailBackend: Ignore cancelled background jobs.Matthew Barnes2011-04-251-1/+4
|
* [l10n] Updated Estonian translationIvar Smolin2011-04-251-7/+7
|
* Added UG translationAbduxukur Abdurixit2011-04-251-2733/+3603
|
* Bump gladeui-2.0 minimum version to 3.10.0.Matthew Barnes2011-04-241-1/+1
|
* Adapt to new CamelSession background job API.Matthew Barnes2011-04-242-65/+119
|
* Updated Bulgarian translationAlexander Shopov2011-04-231-3289/+1141
|
* Updated Bulgarian translationKrasimir Chonov2011-04-231-7412/+8650
|
* Bug 619782 - Characters override in contact editor express modeMatthew Barnes2011-04-231-3/+0
|
* Bug 547954 - Clarify delete-from-search-folder warningDan Vrátil2011-04-232-5/+4
|
* e_mail_local_init(): Improve error handling.Matthew Barnes2011-04-231-8/+13
|
* Bug 648308 - Do not display full folder URI in "Opening folder" activityDan Vrátil2011-04-221-2/+7
|
* Do not require unique-3.0 in .pc filesMilan Crha2011-04-222-2/+2
|
* Adapt to CamelService changes.Matthew Barnes2011-04-2136-649/+638
|
* Bug 648346 - Add style class to message browser toolbarMatthew Barnes2011-04-211-0/+4
|
* Bug #641154 - Crash in emae_check_authtype_doneMilan Crha2011-04-211-2/+22
|
* Bug 648317 - MeeGo shell looking for the wrong atomAbner Silva2011-04-211-1/+1
| | | | | | Yet another s/MOBLIN/MEEGO/ https://bugs.meego.com/show_bug.cgi?id=13756
* Bug #502188 - Store 'Remember password' for calendarsMilan Crha2011-04-211-4/+38
|
* evolution-alarm-notify: replace Moblin by MeegoAlban Crequy2011-04-191-2/+2
| | | | | | | evolution-alarm-notify didn't start correctly on Meego Netbook. This patch fixes the problem by replacing "Moblin" by the new Meego strings. https://bugs.meego.com/show_bug.cgi?id=14683
* Bug #647116 - Crash in g_error_matches, e_contact_editor_contact_modifiedMilan Crha2011-04-191-3/+3
|
* Bug #645721 - Fix build error when enabling kerberos without specifying pathNiki Guldbrand2011-04-192-10/+42
|
* Bug #645610 - [regression] Editing contact doesn't refresh viewMilan Crha2011-04-191-9/+8
|
* Bug 647708 - e_plugin_xml_prop() can return libxml2 allocated memoryMatthew Barnes2011-04-191-10/+9
| | | | | Always copy the xmlChar property into GLib-allocated memory. g_mem_is_system_malloc() has nothing to do with libxml2.
* Bug #647429 - Hide port-entry for providers without portDan Vrátil2011-04-191-13/+13
|
* Bug #646197 - Crash with VALARM without ACTION propertyMilan Crha2011-04-181-1/+1
|
* Adapt to sealed up CamelService.Matthew Barnes2011-04-1815-50/+137
|
* Updated Russian translationYuri Myasoedov2011-04-161-389/+193
|
* Bug 647816 - Moving folder hierarchy causes errorDavid Woodhouse2011-04-151-2/+9
| | | | | When *moving*, as opposed to copying, we only need to operate on the top-level folder; its children will automatically follow it.
* Kill em_composer_prefs_new_signature().Matthew Barnes2011-04-152-14/+0
| | | | No longer used.
* EWebView: Coding style cleanupMatthew Barnes2011-04-151-1/+2
|
* Bug 647698 - Selected calendar doesnt authenticate after offline/onlineMatthew Barnes2011-04-141-17/+39
| | | | | | | | | | | | | | | | | | | | | | | | When I wrote e_load_cal_source_async() it didn't occur to me that a calendar backend may emit "auth-required" after the initial connection attempt. And because I was passing the allocated context data for the asynchronous load operation to e_cal_set_auth_func(), meaning the data gets freed at the end of the load operation, I was then calling e_cal_set_auth_func(cal, NULL, NULL) after the initial authentication was complete so that the ECal would not try to access the freed context data after the load operation finished. But that turned out to break the case of switching to offline mode, then back to online mode. Most calendar backends need to re-authenticate when they come back online. This commit instead passes data to the authentication function by way of g_object_set_data_full() so that the authentication function can be left in place for the duration of the ECal instance. Note that e_cal_set_auth_func() lacks a GDestroyNotify argument for the user data passed to it, which rules out passing any kind of allocated data structure. This is an API design flaw, in my opinion. But g_object_set_data_full() *does* take a GDestroyNotify argument.
* Don't try to refresh or sync mail folders when offline.Matthew Barnes2011-04-142-2/+10
| | | | | Switching between mail folders in offline mode produces lots of annoying alerts for operations we shouldn't even be attempting.
* Work around another a11y crash.Matthew Barnes2011-04-141-2/+10
| | | | | | Some kind of object lifetime issue in GalA11yETableItem. Just work around it for now. Killing this class would pretty much mean killing a11y support for ETables entirely and I'm not that pissed off... yet.
* Demonstrate EWebView as an EAlertSink.Matthew Barnes2011-04-142-11/+9
|
* EWebView: Fix icon retrieval when showing EAlerts.Matthew Barnes2011-04-141-1/+13
| | | | Need to convert the icon filename to a URI for use in <img> tags.
* EWebView: Implement the EAlertSink interfaceMatthew Barnes2011-04-132-10/+116
| | | | Shows alerts directly in the HTML area, similar to GtkInfoBar.
* Don't crash on missing EAlert definitions.Matthew Barnes2011-04-131-0/+1
|
* Updated Spanish translationDaniel Mustieles2011-04-121-929/+923
|
* Updated Japanese translation.Takayoshi OKANO2011-04-111-2/+15
|
* Bug 646817 - Hide View->Preview menu in express modeMatthew Barnes2011-04-081-0/+2
|