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