aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-config.h
blob: 239a6d2feb321801ffb117cd0ad92542cbae6987 (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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
 *  Authors: Jeffrey Stedfast <fejj@ximian.com>
 *
 *  Copyright 2001 Ximian, Inc. (www.ximian.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 Place - Suite 330,
 * Boston, MA 02111-1307, USA.
 *
 */

#ifndef MAIL_CONFIG_H
#define MAIL_CONFIG_H

#include <gtk/gtk.h>
#include <camel/camel.h>

#ifdef __cplusplus
extern "C" {
#pragma }
#endif /* __cplusplus */

typedef struct {
    int id;
    char *name;
    char *filename;
    char *script;
    gboolean html;
} MailConfigSignature;

typedef struct {
    char *name;
    char *address;
    char *reply_to;
    char *organization;
    
    MailConfigSignature *def_signature;
    gboolean auto_signature;
} MailConfigIdentity;

typedef struct {
    char *url;
    gboolean keep_on_server;
    gboolean auto_check;
    int auto_check_time;
    gboolean save_passwd;
} MailConfigService;

typedef struct {
    char *name;
    char *uid;
    
    gboolean enabled;
    
    MailConfigIdentity *id;
    MailConfigService *source;
    MailConfigService *transport;
    
    char *drafts_folder_uri, *sent_folder_uri;
    
    gboolean always_cc;
    char *cc_addrs;
    gboolean always_bcc;
    char *bcc_addrs;
    
    char *pgp_key;
    gboolean pgp_encrypt_to_self;
    gboolean pgp_always_sign;
    gboolean pgp_no_imip_sign;
    gboolean pgp_always_trust;
    
    char *smime_key;
    gboolean smime_encrypt_to_self;
    gboolean smime_always_sign;
} MailConfigAccount;

typedef enum {
    MAIL_CONFIG_HTTP_NEVER,
    MAIL_CONFIG_HTTP_SOMETIMES,
    MAIL_CONFIG_HTTP_ALWAYS
} MailConfigHTTPMode;

typedef enum {
    MAIL_CONFIG_FORWARD_ATTACHED,
    MAIL_CONFIG_FORWARD_INLINE,
    MAIL_CONFIG_FORWARD_QUOTED
} MailConfigForwardStyle;

typedef enum {
    MAIL_CONFIG_REPLY_QUOTED,
    MAIL_CONFIG_REPLY_DO_NOT_QUOTE,
    MAIL_CONFIG_REPLY_ATTACH
} MailConfigReplyStyle;

typedef enum {
    MAIL_CONFIG_DISPLAY_NORMAL,
    MAIL_CONFIG_DISPLAY_FULL_HEADERS,
    MAIL_CONFIG_DISPLAY_SOURCE,
    MAIL_CONFIG_DISPLAY_MAX
} MailConfigDisplayStyle;

typedef enum {
    MAIL_CONFIG_NOTIFY_NOT,
    MAIL_CONFIG_NOTIFY_BEEP,
    MAIL_CONFIG_NOTIFY_PLAY_SOUND,
} MailConfigNewMailNotify;

typedef enum {
    MAIL_CONFIG_XMAILER_NONE            = 0,
    MAIL_CONFIG_XMAILER_EVO             = 1,
    MAIL_CONFIG_XMAILER_OTHER           = 2,
    MAIL_CONFIG_XMAILER_RUPERT_APPROVED = 4
} MailConfigXMailerDisplayStyle;

typedef struct {
    char *name;
    guint32 color;
    char *string;
} MailConfigLabel;

extern MailConfigLabel label_defaults[5];

/* signatures */
MailConfigSignature *signature_copy (const MailConfigSignature *sig);
void                 signature_destroy (MailConfigSignature *sig);

/* Identities */
MailConfigIdentity *identity_copy (const MailConfigIdentity *id);
void                identity_destroy (MailConfigIdentity *id);

/* Services */
MailConfigService *service_copy (const MailConfigService *source);
void               service_destroy (MailConfigService *source);
void               service_destroy_each (gpointer item, gpointer data);

/* Accounts */
MailConfigAccount *account_copy (const MailConfigAccount *account);
void               account_destroy (MailConfigAccount *account);
void               account_destroy_each (gpointer item, gpointer data);

/* Configuration */
void mail_config_init (void);
void mail_config_clear (void);
void mail_config_write (void);
void mail_config_write_on_exit (void);

/* General Accessor functions */
gboolean mail_config_is_configured            (void);
gboolean mail_config_is_corrupt               (void);

gboolean mail_config_get_thread_list          (const char *uri);
void     mail_config_set_thread_list          (const char *uri, gboolean value);

const char *mail_config_get_label_name  (int label);
void        mail_config_set_label_name  (int label, const char *name);
guint32     mail_config_get_label_color (int label);
void        mail_config_set_label_color (int label, guint32 color);
const char *mail_config_get_label_color_string (int label);

void mail_config_service_set_save_passwd (MailConfigService *service, gboolean save_passwd);

gboolean                  mail_config_find_account              (const MailConfigAccount *account);
const MailConfigAccount  *mail_config_get_default_account       (void);
const MailConfigAccount  *mail_config_get_account_by_name       (const char *account_name);
const MailConfigAccount  *mail_config_get_account_by_source_url (const char *url);
const MailConfigAccount  *mail_config_get_account_by_transport_url (const char *url);
const GSList             *mail_config_get_accounts              (void);
void                      mail_config_add_account               (MailConfigAccount *account);
const GSList             *mail_config_remove_account            (MailConfigAccount *account);

void                      mail_config_set_default_account       (const MailConfigAccount *account);

const MailConfigIdentity *mail_config_get_default_identity (void);
const MailConfigService  *mail_config_get_default_transport (void);

void mail_config_save_accounts (void);

/* uri's got changed by the store, etc */
void mail_config_uri_renamed(GCompareFunc uri_cmp, const char *old, const char *new);
void mail_config_uri_deleted(GCompareFunc uri_cmp, const char *uri);


GtkType evolution_mail_config_get_type (void);

/* static utility functions */
char *mail_config_folder_to_cachename (CamelFolder *folder, const char *prefix);
char *mail_config_folder_to_safe_url (CamelFolder *folder);

gboolean mail_config_check_service (const char *url, CamelProviderType type, GList **authtypes, GtkWindow *window);



gboolean evolution_mail_config_factory_init (void);

GSList *mail_config_get_signature_list (void);
MailConfigSignature *mail_config_signature_add (gboolean html, const gchar *script);
void mail_config_signature_delete (MailConfigSignature *sig);
void mail_config_signature_write (MailConfigSignature *sig);
void mail_config_signature_set_name (MailConfigSignature *sig, const gchar *name);
void mail_config_signature_set_html (MailConfigSignature *sig, gboolean html);
void mail_config_signature_set_filename (MailConfigSignature *sig, const gchar *filename);

typedef enum {
    MAIL_CONFIG_SIG_EVENT_NAME_CHANGED,
    MAIL_CONFIG_SIG_EVENT_CONTENT_CHANGED,
    MAIL_CONFIG_SIG_EVENT_HTML_CHANGED,
    MAIL_CONFIG_SIG_EVENT_ADDED,
    MAIL_CONFIG_SIG_EVENT_DELETED
} MailConfigSigEvent;

typedef void (*MailConfigSignatureClient)(MailConfigSigEvent, MailConfigSignature *sig, gpointer data);

void mail_config_signature_register_client (MailConfigSignatureClient client, gpointer data);
void mail_config_signature_unregister_client (MailConfigSignatureClient client, gpointer data);
void mail_config_signature_emit_event (MailConfigSigEvent event, MailConfigSignature *sig);

void mail_config_write_account_sig (MailConfigAccount *account, int i);
char *mail_config_signature_run_script (char *script);

#ifdef __cplusplus
}
#endif /* __cplusplus */

#endif /* MAIL_CONFIG_H */