Remove useless debug code. Add copyright
[claws.git] / src / prefs_account.h
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2012 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 "claws-features.h"
25 #endif
26 #include "ssl.h"
27 typedef struct _PrefsAccount    PrefsAccount;
28
29 typedef enum {
30         A_POP3,
31         A_IMAP4,
32         A_NNTP,
33         A_LOCAL,
34         A_NONE, /* SMTP only */
35         NUM_RECV_PROTOCOLS
36 } RecvProtocol;
37
38 typedef enum {
39         SIG_FILE,
40         SIG_COMMAND,
41         SIG_DIRECT
42 } SigType;
43
44 #include <glib.h>
45
46 #include "smtp.h"
47 #include "gtk/prefswindow.h"
48
49 struct _Folder;
50
51 /* Changes to this data structure might need to be reflected
52  * in account_clone() */
53 struct _PrefsAccount
54 {
55         gchar *account_name;
56
57         /* Personal info */
58         gchar *name;
59         gchar *address;
60         gchar *organization;
61
62         /* Server info */
63         RecvProtocol protocol;
64         gchar *recv_server;
65         gchar *smtp_server;
66         gchar *nntp_server;
67         gboolean use_nntp_auth;
68         gboolean use_nntp_auth_onconnect;
69         gchar *userid;
70         gchar *passwd;
71         gchar *session_passwd;
72
73         gchar * local_mbox;
74         gboolean use_mail_command;
75         gchar * mail_command;
76
77         SSLType ssl_pop;
78         SSLType ssl_imap;
79         SSLType ssl_nntp;
80         SSLType ssl_smtp;
81         
82         gchar *out_ssl_client_cert_file;
83         gchar *out_ssl_client_cert_pass;
84         gchar *in_ssl_client_cert_file;
85         gchar *in_ssl_client_cert_pass;
86
87         gboolean ssl_certs_auto_accept;
88         gboolean use_nonblocking_ssl;
89         gboolean use_tls_sni;
90
91         /* Receive */
92         gboolean use_apop_auth;
93         gboolean rmmail;
94         gint msg_leave_time;
95         gint msg_leave_hour;
96         gboolean recv_at_getall;
97         gboolean sd_rmmail_on_download;
98         gboolean enable_size_limit;
99         gint size_limit;
100         gboolean filter_on_recv;
101         gboolean filterhook_on_recv;
102         gchar *inbox;
103         gchar *local_inbox;
104         gint max_articles;
105         gboolean autochk_use_default;
106         gboolean autochk_use_custom;
107         gint autochk_itv;
108         guint autocheck_timer;
109
110         gint imap_auth_type;
111
112         gboolean receive_in_progress;
113
114         /* Send */
115         gboolean gen_msgid;
116         gboolean gen_xmailer;
117         gboolean add_customhdr;
118         gboolean use_smtp_auth;
119         SMTPAuthType smtp_auth_type;
120         gchar *smtp_userid;
121         gchar *smtp_passwd;
122         gchar *session_smtp_passwd;
123
124         gboolean pop_before_smtp;
125         gint pop_before_smtp_timeout;
126         time_t last_pop_login_time;
127
128         GSList *customhdr_list;
129
130         /* Compose */
131         SigType sig_type;
132         gchar    *sig_path;
133         gboolean  auto_sig;
134         gchar    *sig_sep;
135         gboolean  set_autocc;
136         gchar    *auto_cc;
137         gboolean  set_autobcc;
138         gchar    *auto_bcc;
139         gboolean  set_autoreplyto;
140         gchar    *auto_replyto;
141         gboolean  enable_default_dictionary;
142         gchar    *default_dictionary;
143         gboolean  enable_default_alt_dictionary;
144         gchar    *default_alt_dictionary;
145         gboolean  compose_with_format;
146         gchar    *compose_subject_format;
147         gchar    *compose_body_format;
148         gboolean  reply_with_format;
149         gchar    *reply_quotemark;
150         gchar    *reply_body_format;
151         gboolean  forward_with_format;
152         gchar    *forward_quotemark;
153         gchar    *forward_body_format;
154
155         /* Privacy */
156         gchar    *default_privacy_system;
157         gboolean  default_encrypt;
158         gboolean  default_encrypt_reply;
159         gboolean  default_sign;
160         gboolean  default_sign_reply;
161         gboolean  save_encrypted_as_clear_text;
162         gboolean  encrypt_to_self;
163
164         /* Advanced */
165         gboolean  set_smtpport;
166         gushort   smtpport;
167         gboolean  set_popport;
168         gushort   popport;
169         gboolean  set_imapport;
170         gushort   imapport;
171         gboolean  set_nntpport;
172         gushort   nntpport;
173         gboolean  set_domain;
174         gchar    *domain;
175         gboolean  set_gnutls_priority;
176         gchar    *gnutls_priority;
177         gboolean  msgid_with_addr;
178         gboolean  mark_crosspost_read;
179         gint      crosspost_col;
180
181 #ifndef G_OS_WIN32
182         /* Use this command to open a socket, rather than doing so
183          * directly.  Good if you want to perhaps use a special socks
184          * tunnel command, or run IMAP-over-SSH.  In this case the
185          * server, port etc are only for the user's own information
186          * and are not used.  username and password are used to
187          * authenticate the account only if necessary, since some
188          * tunnels will implicitly authenticate by running e.g. imapd
189          * as a particular user. */
190         gboolean  set_tunnelcmd;
191         gchar     *tunnelcmd;
192 #endif
193
194         gchar *imap_dir;
195         gboolean imap_subsonly;
196         gboolean low_bandwidth;
197
198         gboolean set_sent_folder;
199         gchar *sent_folder;
200         gboolean set_queue_folder;
201         gchar *queue_folder;
202         gboolean set_draft_folder;
203         gchar *draft_folder;
204         gboolean set_trash_folder;
205         gchar *trash_folder;
206
207         /* Default or not */
208         gboolean is_default;
209         /* Unique account ID */
210         gint account_id;
211
212         /* SOCKS proxy */
213         gboolean use_proxy;
214         gboolean use_default_proxy;
215         gboolean use_proxy_for_send;
216         ProxyInfo proxy_info;
217
218         struct _Folder *folder;
219         GHashTable *privacy_prefs;
220         SMTPSession *session;
221
222         gint config_version;
223 };
224
225 void prefs_account_init                 (void);
226
227 PrefsAccount *prefs_account_new                 (void);
228 PrefsAccount *prefs_account_new_from_config     (const gchar    *label);
229
230 void prefs_account_write_config_all     (GList          *account_list);
231
232 void prefs_account_free                 (PrefsAccount   *ac_prefs);
233
234 PrefsAccount *prefs_account_open        (PrefsAccount   *ac_prefs, gboolean *dirty);
235
236 const gchar *prefs_account_get_privacy_prefs(PrefsAccount *account, gchar *id);
237 void prefs_account_set_privacy_prefs(PrefsAccount *account, gchar *id, gchar *new_value);
238 gchar *prefs_account_generate_msgid(PrefsAccount *account);
239
240 void prefs_account_register_page        (PrefsPage      *page);
241 void prefs_account_unregister_page      (PrefsPage      *page);
242
243 gchar *prefs_account_cache_dir          (PrefsAccount   *ac_prefs, gboolean for_server);
244
245 #endif /* PREFS_ACCOUNT_H */