aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/exchange-operations/exchange-mail-send-options.c
blob: 65533d8ed2970e1617f1b02bbbe762e863579a1d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
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);
    
}