2005-01-10 Parthasarathi@novell.com <sparthasarathi@novell.com> * initial check in for groupwise send options svn path=/trunk/; revision=28325
120 lines
3.4 KiB
C
120 lines
3.4 KiB
C
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
|
|
*
|
|
* Authors: Parthasarathi Susarla <sparthasarathi@novell.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 <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#include <unistd.h>
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
|
|
#include <glib.h>
|
|
#include <glib/gi18n.h>
|
|
|
|
#include "send-options.h"
|
|
|
|
#include "mail/em-menu.h"
|
|
#include "mail/em-utils.h"
|
|
|
|
#include "composer/e-msg-composer.h"
|
|
#include "e-util/e-account.h"
|
|
|
|
#include "widgets/misc/e-send-options.h"
|
|
|
|
static ESendOptionsDialog * dialog ;
|
|
|
|
void org_gnome_compose_send_options (EPlugin *ep, EMMenuTargetWidget *t);
|
|
|
|
void
|
|
org_gnome_compose_send_options (EPlugin *ep, EMMenuTargetWidget *t)
|
|
{
|
|
struct _EMenuTarget menu = t->target ;
|
|
EMsgComposer *comp = (struct _EMsgComposer *)menu.widget ;
|
|
EAccount *account = NULL ;
|
|
char *url, *temp = NULL ;
|
|
|
|
account = e_msg_composer_get_preferred_account (comp) ;
|
|
url = g_strdup (account->transport->url) ;
|
|
temp = strstr (url, "groupwise") ;
|
|
if (!temp) {
|
|
g_print ("Sorry send options only available for a groupwise account\n") ;
|
|
goto done ;
|
|
}
|
|
g_free (temp) ;
|
|
/*disply the send options dialog*/
|
|
if (!dialog) {
|
|
g_print ("New dialog\n\n") ;
|
|
dialog = e_sendoptions_dialog_new () ;
|
|
}
|
|
|
|
e_sendoptions_dialog_run (dialog, menu.widget, E_ITEM_MAIL) ;
|
|
|
|
return ;
|
|
/*General Options*/
|
|
|
|
if (dialog->data->gopts->reply_enabled) {
|
|
if (dialog->data->gopts->reply_convenient)
|
|
e_msg_composer_add_header (comp, X_REPLY_CONVENIENT ,"1" ) ;
|
|
else if (dialog->data->gopts->reply_within) {
|
|
temp = g_strdup_printf ("%d", dialog->data->gopts->reply_within) ;
|
|
e_msg_composer_add_header (comp, X_REPLY_WITHIN , temp) ;
|
|
g_free (temp) ;
|
|
}
|
|
}
|
|
|
|
if (dialog->data->gopts->expiration_enabled) {
|
|
if (dialog->data->gopts->expire_after != 0) {
|
|
temp = g_strdup_printf ("%d", dialog->data->gopts->expire_after) ;
|
|
e_msg_composer_add_header (comp, X_EXPIRE_AFTER, temp) ;
|
|
g_free (temp) ;
|
|
}
|
|
}
|
|
if (dialog->data->gopts->delay_enabled) {
|
|
|
|
e_msg_composer_add_header (comp, X_DELAY_UNTIL, temp) ;
|
|
g_free (temp) ;
|
|
}
|
|
|
|
/*Status Tracking Options*/
|
|
if (dialog->data->sopts->tracking_enabled) {
|
|
temp = g_strdup_printf ("%d",dialog->data->sopts->track_when) ;
|
|
e_msg_composer_add_header (comp, X_TRACK_WHEN, temp) ;
|
|
g_free (temp) ;
|
|
}
|
|
|
|
if (dialog->data->sopts->autodelete) {
|
|
e_msg_composer_add_header (comp, X_AUTODELETE, "1") ;
|
|
}
|
|
if (dialog->data->sopts->opened) {
|
|
temp = g_strdup_printf ("%d",dialog->data->sopts->opened) ;
|
|
e_msg_composer_add_header (comp, X_RETURN_NOTIFY_OPEN, temp) ;
|
|
g_free (temp) ;
|
|
}
|
|
if (dialog->data->sopts->declined) {
|
|
temp = g_strdup_printf ("%d",dialog->data->sopts->declined) ;
|
|
e_msg_composer_add_header (comp, X_RETURN_NOTIFY_DECLINE, temp) ;
|
|
g_free (temp) ;
|
|
}
|
|
done:
|
|
g_free (url) ;
|
|
}
|
|
|