aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/exchange-operations/exchange-mail-send-options.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/exchange-operations/exchange-mail-send-options.c')
-rw-r--r--plugins/exchange-operations/exchange-mail-send-options.c143
1 files changed, 143 insertions, 0 deletions
diff --git a/plugins/exchange-operations/exchange-mail-send-options.c b/plugins/exchange-operations/exchange-mail-send-options.c
new file mode 100644
index 0000000000..65533d8ed2
--- /dev/null
+++ b/plugins/exchange-operations/exchange-mail-send-options.c
@@ -0,0 +1,143 @@
+/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
+ *
+ * Authors: R.Raghavendran <raghavguru7@gmail.com>
+ *
+ * Copyright 2004 Novell, Inc. (www.novell.com)
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of version 2 of the GNU General Public
+ * License as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA.
+ *
+ */
+
+#include <string.h>
+#include <stdio.h>
+
+#include <glib.h>
+#include <glib/gi18n.h>
+
+#include <camel/camel-mime-message.h>
+#include "mail/em-event.h"
+
+#include "composer/e-msg-composer.h"
+#include "libedataserver/e-account.h"
+
+#include "exchange-send-options.h"
+
+void org_gnome_exchange_send_options (EPlugin *ep, EMEventTargetComposer *t);
+
+static ExchangeSendOptionsDialog *dialog=NULL;
+
+static void
+append_to_header (ExchangeSendOptionsDialog *dialog, gint state, gpointer data)
+{
+ EMsgComposer *composer;
+ composer = (EMsgComposer *)data;
+ if (state == GTK_RESPONSE_OK) {
+ if (dialog->options->importance) {
+ switch (dialog->options->importance) {
+ case E_IMP_HIGH :
+ e_msg_composer_modify_header (composer, "Importance", "high");
+ break;
+ case E_IMP_LOW :
+ e_msg_composer_modify_header (composer, "Importance", "low");
+ break;
+ default :
+ g_print ("\nNo importance set");
+ break;
+ }
+ }
+ else
+ e_msg_composer_remove_header (composer, "Importance");
+
+ if (dialog->options->sensitivity) {
+ switch (dialog->options->sensitivity) {
+ case E_SENSITIVITY_CONFIDENTIAL :
+ e_msg_composer_modify_header (composer, "Sensitivity", "Company-Confidential");
+ break;
+ case E_SENSITIVITY_PERSONAL :
+ e_msg_composer_modify_header (composer, "Sensitivity", "Personal");
+ break;
+ case E_SENSITIVITY_PRIVATE :
+ e_msg_composer_modify_header (composer, "Sensitivity", "Private");
+ break;
+ default :
+ g_print ("\nNo importance set");
+ break;
+ }
+ }
+ else
+ e_msg_composer_remove_header (composer, "Sensitivity");
+
+ if (dialog->options->delivery_enabled) {
+ EMsgComposerHdrs *hdrs = e_msg_composer_get_hdrs(composer);
+
+ char *mdn_address = hdrs->account->id->reply_to;
+ if (!mdn_address || !*mdn_address)
+ mdn_address = hdrs->account->id->address;
+ e_msg_composer_modify_header (composer, "Return-Receipt-To", mdn_address);
+ }
+ else
+ e_msg_composer_remove_header (composer, "Return-Receipt-To");
+
+ if (dialog->options->read_enabled) {
+ EMsgComposerHdrs *hdrs = e_msg_composer_get_hdrs(composer);
+
+ char *mdn_address = hdrs->account->id->reply_to;
+ if (!mdn_address || !*mdn_address)
+ mdn_address = hdrs->account->id->address;
+
+ e_msg_composer_modify_header (composer, "Disposition-Notification-To", mdn_address);
+ }
+ else
+ e_msg_composer_remove_header (composer, "Disposition-Notification-To");
+ }
+}
+
+static void
+send_options_commit (EMsgComposer *comp, gpointer user_data)
+{
+ if (!user_data && !EXCHANGE_IS_SENDOPTIONS_DIALOG (user_data))
+ return;
+
+ if (dialog) {
+ g_print ("\nDialog getting unreferenced ");
+ g_object_unref (dialog);
+ dialog = NULL;
+ }
+}
+
+void
+org_gnome_exchange_send_options (EPlugin *ep, EMEventTargetComposer *target)
+{
+ EMsgComposer *composer = target->composer;
+ EAccount *account = NULL;
+ char *temp = NULL;
+
+ account = e_msg_composer_get_preferred_account (composer) ;
+ temp = strstr (account->transport->url, "exchange") ;
+ if (!temp) {
+ return;
+ }
+ e_msg_composer_set_send_options (composer, TRUE);
+ /*disply the send options dialog*/
+ if (!dialog) {
+ g_print ("New dialog\n\n") ;
+ dialog = exchange_sendoptions_dialog_new () ;
+ }
+ exchange_sendoptions_dialog_run (dialog, composer) ;
+ g_signal_connect (dialog, "sod_response", G_CALLBACK (append_to_header), composer);
+
+ g_signal_connect (GTK_WIDGET (composer), "destroy",
+ G_CALLBACK (send_options_commit), dialog);
+
+}