From 0d27a627858afb85731bd4fec48a5f47c9f68d0f Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Thu, 25 Jul 2002 18:21:15 +0000 Subject: Use mail_tools_folder_to_url(). 2002-07-24 Jeffrey Stedfast * mail-config.c (mail_config_folder_to_safe_url): Use mail_tools_folder_to_url(). * mail-tools.c (mail_tools_folder_to_url): New convenience function to take a CamelFolder and return the URL associated with it. * mail-callbacks.c (composer_get_message): Pass in a 'post' argument so we know whether or not we can ignore a NULL set of recipients. (composer_send_cb): Default send->send to TRUE unless we are in Post-To mode, in which case set send->send to FALSE (since we'll have nothing to send). Also, if we are in Post-To mode, append to the folder the user wants to post to rather than appending to Outbox. (composer_send_queued_cb): Only queue a send thread if send->send is TRUE (ie, the composer was not in Post mode - if it was in Post mode, then the message post has already been saved in the correct folder so there is nothing to do). (post_message): New function to create an empty composer widget in Post mode. (post_reply): New function that calls mail_reply with the new mode of REPLY_POST. (mail_generate_reply): If the mode is REPLY_POST, create a Post composer widget otherwise create a normal composer widget. svn path=/trunk/; revision=17592 --- mail/folder-browser-ui.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'mail/folder-browser-ui.c') diff --git a/mail/folder-browser-ui.c b/mail/folder-browser-ui.c index 7ba0056980..c26997453e 100644 --- a/mail/folder-browser-ui.c +++ b/mail/folder-browser-ui.c @@ -59,6 +59,7 @@ static BonoboUIVerb message_verbs [] = { BONOBO_UI_UNSAFE_VERB ("MessageFollowUpFlag", flag_for_followup), BONOBO_UI_UNSAFE_VERB ("MessageMove", move_msg), BONOBO_UI_UNSAFE_VERB ("MessageOpen", open_message), + BONOBO_UI_UNSAFE_VERB ("MessagePostReply", post_reply), BONOBO_UI_UNSAFE_VERB ("MessageReplyAll", reply_to_all), BONOBO_UI_UNSAFE_VERB ("MessageReplyList", reply_to_list), BONOBO_UI_UNSAFE_VERB ("MessageReplySender", reply_to_sender), @@ -108,6 +109,7 @@ static BonoboUIVerb global_verbs [] = { BONOBO_UI_UNSAFE_VERB ("EmptyTrash", empty_trash), BONOBO_UI_UNSAFE_VERB ("ForgetPasswords", mail_session_forget_passwords), BONOBO_UI_UNSAFE_VERB ("MailCompose", compose_msg), + BONOBO_UI_UNSAFE_VERB ("MailPost", post_message), BONOBO_UI_UNSAFE_VERB ("MailStop", stop_threads), BONOBO_UI_UNSAFE_VERB ("ToolsFilters", filter_edit), BONOBO_UI_UNSAFE_VERB ("ToolsSubscriptions", manage_subscriptions), @@ -202,6 +204,7 @@ struct _UINode default_ui_nodes[] = { { "MessageResend", IS_SENT_FOLDER | SELECTION_SINGLE }, /* actions that work on exactly 1 message */ + { "MessagePostReply", IS_ANY_FOLDER | SELECTION_SINGLE }, { "MessageReplyAll", IS_ANY_FOLDER | SELECTION_SINGLE }, { "MessageReplyList", IS_ANY_FOLDER | SELECTION_SINGLE }, { "MessageReplySender", IS_ANY_FOLDER | SELECTION_SINGLE }, -- cgit v1.2.3