2011-11-19 [pawel] 3.7.10cvs94
[claws.git] / src / prefs_account.h
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2011 Hiroyuki Yamamoto and the Claws Mail team
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program. If not, see <http://www.gnu.org/licenses/>.
17  * 
18  */
19
20 #ifndef PREFS_ACCOUNT_H
21 #define PREFS_ACCOUNT_H
22
23 #ifdef HAVE_CONFIG_H
24 #  include "config.h"
25 #endif
26 #include "ssl.h"
27 typedef struct _PrefsAccount    PrefsAccount;
28
29 typedef enum {
30         A_POP3,
31         A_APOP, /* deprecated */
32         A_RPOP, /* deprecated */
33         A_IMAP4,
34         A_NNTP,
35         A_LOCAL,
36         A_NONE, /* SMTP only */
37         NUM_RECV_PROTOCOLS
38 } RecvProtocol;
39
40 typedef enum {
41         SIG_FILE,
42         SIG_COMMAND,
43         SIG_DIRECT
44 } SigType;
45
46 #include <glib.h>
47
48 #include "smtp.h"
49 #include "folder.h"
50 #include "gtk/prefswindow.h"
51
52 /* Changes to this data structure might need to be reflected
53  * in account_clone() */
54 struct _PrefsAccount
55 {
56         gchar *account_name;
57
58         /* Personal info */
59         gchar *name;
60         gchar *address;
61         gchar *organization;
62
63         /* Server info */
64         RecvProtocol protocol;
65         gchar *recv_server;
66         gchar *smtp_server;
67         gchar *nntp_server;
68         gboolean use_nntp_auth;
69         gboolean use_nntp_auth_onconnect;
70         gchar *userid;
71         gchar *passwd;
72         gchar *session_passwd;
73
74         gchar * local_mbox;
75         gboolean use_mail_command;
76         gchar * mail_command;
77
78         SSLType ssl_pop;
79         SSLType ssl_imap;
80         SSLType ssl_nntp;
81         SSLType ssl_smtp;
82         
83         gchar *out_ssl_client_cert_file;
84         gchar *out_ssl_client_cert_pass;
85         gchar *in_ssl_client_cert_file;
86         gchar *in_ssl_client_cert_pass;
87
88         gboolean use_nonblocking_ssl;
89
90         /* Receive */
91         gboolean use_apop_auth;
92         gboolean rmmail;
93         gint msg_leave_time;
94         gint msg_leave_hour;
95         gboolean recv_at_getall;
96         gboolean sd_rmmail_on_download;
97         gboolean enable_size_limit;
98         gint size_limit;
99         gboolean filter_on_recv;
100         gboolean filterhook_on_recv;
101         gchar *inbox;
102         gchar *local_inbox;
103         gint max_articles;
104
105         gint imap_auth_type;
106
107         /* Send */
108         gboolean gen_msgid;
109         gboolean gen_xmailer;
110         gboolean add_customhdr;
111         gboolean use_smtp_auth;
112         SMTPAuthType smtp_auth_type;
113         gchar *smtp_userid;
114         gchar *smtp_passwd;
115         gchar *session_smtp_passwd;
116
117         gboolean pop_before_smtp;
118         gint pop_before_smtp_timeout;
119         time_t last_pop_login_time;
120
121         GSList *customhdr_list;
122
123         /* Compose */
124         SigType sig_type;
125         gchar    *sig_path;
126         gboolean  auto_sig;
127         gchar    *sig_sep;
128         gboolean  set_autocc;
129         gchar    *auto_cc;
130         gboolean  set_autobcc;
131         gchar    *auto_bcc;
132         gboolean  set_autoreplyto;
133         gchar    *auto_replyto;
134         gboolean  enable_default_dictionary;
135         gchar    *default_dictionary;
136         gboolean  enable_default_alt_dictionary;
137         gchar    *default_alt_dictionary;
138         gboolean  compose_with_format;
139         gchar    *compose_subject_format;
140         gchar    *compose_body_format;
141         gboolean  reply_with_format;
142         gchar    *reply_quotemark;
143         gchar    *reply_body_format;
144         gboolean  forward_with_format;
145         gchar    *forward_quotemark;
146         gchar    *forward_body_format;
147
148         /* Privacy */
149         gchar    *default_privacy_system;
150         gboolean  default_encrypt;
151         gboolean  default_encrypt_reply;
152         gboolean  default_sign;
153         gboolean  default_sign_reply;
154         gboolean  save_encrypted_as_clear_text;
155         gboolean  encrypt_to_self;
156
157         /* Advanced */
158         gboolean  set_smtpport;
159         gushort   smtpport;
160         gboolean  set_popport;
161         gushort   popport;
162         gboolean  set_imapport;
163         gushort   imapport;
164         gboolean  set_nntpport;
165         gushort   nntpport;
166         gboolean  set_domain;
167         gchar    *domain;
168         gboolean  msgid_with_addr;
169         gboolean  mark_crosspost_read;
170         gint      crosspost_col;
171
172 #ifndef G_OS_WIN32
173         /* Use this command to open a socket, rather than doing so
174          * directly.  Good if you want to perhaps use a special socks
175          * tunnel command, or run IMAP-over-SSH.  In this case the
176          * server, port etc are only for the user's own information
177          * and are not used.  username and password are used to
178          * authenticate the account only if necessary, since some
179          * tunnels will implicitly authenticate by running e.g. imapd
180          * as a particular user. */
181         gboolean  set_tunnelcmd;
182         gchar     *tunnelcmd;
183 #endif
184
185         gchar *imap_dir;
186         gboolean imap_subsonly;
187         gboolean low_bandwidth;
188         gboolean imap_use_trash;
189
190         gboolean set_sent_folder;
191         gchar *sent_folder;
192         gboolean set_queue_folder;
193         gchar *queue_folder;
194         gboolean set_draft_folder;
195         gchar *draft_folder;
196         gboolean set_trash_folder;
197         gchar *trash_folder;
198
199         /* Default or not */
200         gboolean is_default;
201         /* Unique account ID */
202         gint account_id;
203
204         Folder *folder;
205         GHashTable *privacy_prefs;
206         SMTPSession *session;
207 };
208
209 void prefs_account_init                 (void);
210
211 PrefsAccount *prefs_account_new         (void);
212
213 void prefs_account_read_config          (PrefsAccount   *ac_prefs,
214                                          const gchar    *label);
215 void prefs_account_write_config_all     (GList          *account_list);
216
217 void prefs_account_free                 (PrefsAccount   *ac_prefs);
218
219 PrefsAccount *prefs_account_open        (PrefsAccount   *ac_prefs, gboolean *dirty);
220
221 const gchar *prefs_account_get_privacy_prefs(PrefsAccount *account, gchar *id);
222 void prefs_account_set_privacy_prefs(PrefsAccount *account, gchar *id, gchar *new_value);
223
224 void prefs_account_register_page        (PrefsPage      *page);
225 void prefs_account_unregister_page      (PrefsPage      *page);
226
227 #endif /* PREFS_ACCOUNT_H */