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