X-Git-Url: http://git.maemo.org/git/?p=modest;a=blobdiff_plain;f=ChangeLog2;h=c8d69a03d7d251742d7d48aba72fce1fa530f246;hp=444adaeb49aded5c0c1e66de126d68fb924b6d0d;hb=aab537f6ce755830767baa7260d7879449ceeb38;hpb=e9743b527ba57cce69f375bd3ce25f556de8e66f diff --git a/ChangeLog2 b/ChangeLog2 index 444adae..c8d69a0 100644 --- a/ChangeLog2 +++ b/ChangeLog2 @@ -1,3 +1,175 @@ +2007-09-05 Murray Cumming + + * src/maemo/modest-maemo-utils.c: + (on_camel_account_get_supported_secure_authentication), + (modest_maemo_utils_get_supported_secure_authentication_methods): + Adapted to the changed tinymail signature of the callback, and + printf a warning when there is an exception, as a clue. + +2007-09-03 Armin Burgmeier + + * src/maemo/modest-maemo-utils.c: Don't set the temporary account + online that checks for supported authentication methods. This fixes + projects.maemo.org bug NB#61369. + +2007-09-03 Murray Cumming + + * src/widgets/modest-folder-view.c: (strings_are_equal), + (on_model_foreach_set_name), (on_get_mmc_account_name), + (text_cell_data): Restored this code that was removed in + svn revision 3165 by jfernandez, because this late name-discovery + really is necessary sometimes. This is the correct fix to the endless + calling of this function: + * src/modest-tny-account.c: (on_modest_file_system_info): + Don't call tny_account_set_name() when the name is already correct, + to avoid unnecessary (endless) updates to the tree model. + +2007-08-31 Murray Cumming + + * src/modest-defs.h: Rename MODEST_CONF_CONNECTION_SPECIFIC_SMTP_LIST to + MODEST_CONF_CONNECTION_SPECIFIC_SMTP_LIST and make it a global list + for use by all accounts that enable the MODEST_ACCOUNT_USE_CONNECTION_SPECIFIC_SMTP + boolean, because this is the specified behaviour in the UI spec. + * src/modest-account-mgr-helpers.h: + * src/modest-account-mgr-helpers.c: + (modest_account_mgr_set_connection_specific_smtp), + (modest_account_mgr_remove_connection_specific_smtp), + (modest_account_mgr_get_connection_specific_smtp): Remove the account_name + parameter. + * src/maemo/modest-connection-specific-smtp-window.h: + * src/maemo/modest-connection-specific-smtp-window.c: + (modest_connection_specific_smtp_window_finalize), + (modest_connection_specific_smtp_window_fill_with_connections), + (modest_connection_specific_smtp_window_save_server_accounts): + Remove the account_name parameters and member variable. + * src/maemo/easysetup/modest-easysetup-wizard.c: + (on_button_outgoing_smtp_servers), (create_account): + * src/maemo/modest-account-settings-dialog.c: + (on_button_outgoing_smtp_servers), (check_data), + (modest_account_settings_dialog_set_account_name), + (save_configuration): + * src/maemo/modest-maemo-utils.c: (on_account_online), + (modest_maemo_utils_get_supported_secure_authentication_methods): + * src/modest-tny-account-store.c: + (get_smtp_specific_transport_account_for_open_connection), + (insert_account), (add_connection_specific_transport_accounts): + * src/modest-ui-actions.c: (on_smtp_servers_window_hide), + (modest_ui_actions_on_smtp_servers): + Adapt to the changed API. + +2007-08-29 Armin Burgmeier + + * src/modest-protocol-info.h: + * src/modest-protocol-info.c: Added + modest_protocol_info_get_auth_protocol() to translate an + authentication protocol name to the corresponding enum value. + + * src/maemo/modest-maemo-utils.c: Fixed supported auth protocol list + generation using the newly added function. + + * src/maemo/modest-account-settings-dialog.c: Use the current element + when traversing through the list of supported authentication methods, + not always the first. + +2007-08-29 Murray Cumming + + * src/maemo/easysetup/modest-easysetup-wizard.c: + (check_first_supported_auth_method), (on_before_next), + (create_account): + * src/maemo/modest-account-settings-dialog.c: (check_data): + Some cleanup, to make the code clearer. + +2007-08-29 Murray Cumming + + * src/modest-tny-account-store.c: (modest_tny_account_store_alert): + Use the mail_ni_ssl_certificate_error ("Secure connection failed") + logical ID when the secure authentication method is not supported by + the server, as requested by Mox on the wiki, though I hate not + giving the user the clue. + +2007-08-29 Murray Cumming + + * src/modest-search.c: (modest_search_all_accounts): + * src/modest-platform.h: + * src/maemo/modest-platform.c: Moved and renamed + check_and_wait_for_account_is_online() to + modest_platform_check_and_wait_for_account_is_online() so it + can be used in more places. + +2007-08-29 Murray Cumming + + * src/maemo/modest-platform.c: (modest_platform_connect_and_wait): + Removed the sleep(1) experiment because it does not seem to help, + and I should not have checked the experiment in anyway. + The problem is maybe in the TnyAccount connected state - I will + investigate that instead. + +2007-08-28 Murray Cumming + + * src/maemo/modest-platform.c: (modest_platform_connect_and_wait): + Added a sleep(1) in case it helps with bug #66769. + +2007-08-28 Murray Cumming + + * src/modest-search.c: (on_timeout_check_account_is_online), + (check_and_wait_for_account_is_online): + It is OK for local-folder and mmc accounts to be used when they + are in the _INIT folder, instead of waiting for them to change + (they never do). + For POP and IMAP, wait from them to stop being _INIT, rather than + waiting from them to be _CONNECTED, because that seems to be + the status that causes the problems. + +2007-08-28 Murray Cumming + + * src/modest-search.c: (check_and_wait_for_account_is_online): + Actually pass the account to the timeout callback. + +2007-08-28 Murray Cumming + + * src/modest-search.c: (on_timeout_check_account_is_online): + Added some debug output to help me debug a problem on the N800. + (check_and_wait_for_account_is_online): Fail immediately if the + device is offline. + modest_search_all_accounts(): Try the search even if the account does + not seem to be online, because this can work sometimes, and should work + with the cache if there is no active libconic connection. + +2007-08-27 Armin Burgmeier + + * src/modest-tny-send-queue.c: Implement TnyFolderObserver and + observe outbox for added messages to assign them a status. Previously, + this was done in modest_tny_send_queue_add(), but the message id might + not yet be known at that point. This reduces warnings when sending + mail, though I am not sure how this even worked before. + +2007-08-27 Murray Cumming + + * src/maemo/modest-account-settings-dialog.c: + (modest_account_settings_dialog_init): + * src/maemo/modest-connection-specific-smtp-edit-window.c: + (modest_connection_specific_smtp_edit_window_init): + * src/maemo/modest-connection-specific-smtp-window.c: + (modest_connection_specific_smtp_window_init): + * src/maemo/modest-maemo-utils.c: + (modest_maemo_utils_get_supported_secure_authentication_methods): + * src/maemo/modest-platform.c: + (modest_platform_run_folder_name_dialog): + * src/maemo/modest-signature-editor-dialog.c: + (modest_signature_editor_dialog_init): + * src/modest-ui-actions.c: (modest_ui_actions_on_item_not_found), + (modest_ui_actions_on_password_requested), (create_move_to_dialog): + * src/widgets/modest-global-settings-dialog.c: + (modest_global_settings_dialog_init): + Replace all uses of GTK_STOCK_OK (and GTK_BUTTONS_OK) with + mcen_bd_dialog_ok, + GTK_STOCK_CANCEL with mcen_bd_dialog_cancel, + GTK_STOCK_EDIT with mcen_bd_edit, and + GTK_STOCK_CLOSE with mcen_bd_close, + to fix projects.maemo.org bug NB#64995. + I strongly believe that Maemo's GTK+ should have the wanted translations + instead of duplicating this in each application and complicating the code. + 2007-08-27 Armin Burgmeier * src/maemo/modest-msg-edit-window.c: Fixed a crash due to endless