for release 3.15.1
[claws.git] / src / prefs_account.h
blob83f6efad74a2027ba9a625f90d46b4495d106878
1 /*
2 * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3 * Copyright (C) 1999-2012 Hiroyuki Yamamoto and the Claws Mail team
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.
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.
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/>.
20 #ifndef PREFS_ACCOUNT_H
21 #define PREFS_ACCOUNT_H
23 #ifdef HAVE_CONFIG_H
24 #include "claws-features.h"
25 #endif
26 #include "ssl.h"
27 typedef struct _PrefsAccount PrefsAccount;
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;
38 typedef enum {
39 SIG_FILE,
40 SIG_COMMAND,
41 SIG_DIRECT
42 } SigType;
44 #include <glib.h>
46 #include "smtp.h"
47 #include "gtk/prefswindow.h"
49 struct _Folder;
51 /* Changes to this data structure might need to be reflected
52 * in account_clone() */
53 struct _PrefsAccount
55 gchar *account_name;
57 /* Personal info */
58 gchar *name;
59 gchar *address;
60 gchar *organization;
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;
73 gchar * local_mbox;
74 gboolean use_mail_command;
75 gchar * mail_command;
77 SSLType ssl_pop;
78 SSLType ssl_imap;
79 SSLType ssl_nntp;
80 SSLType ssl_smtp;
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;
87 gboolean ssl_certs_auto_accept;
88 gboolean use_nonblocking_ssl;
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;
105 gint imap_auth_type;
107 gboolean receive_in_progress;
109 /* Send */
110 gboolean gen_msgid;
111 gboolean gen_xmailer;
112 gboolean add_customhdr;
113 gboolean use_smtp_auth;
114 SMTPAuthType smtp_auth_type;
115 gchar *smtp_userid;
116 gchar *smtp_passwd;
117 gchar *session_smtp_passwd;
119 gboolean pop_before_smtp;
120 gint pop_before_smtp_timeout;
121 time_t last_pop_login_time;
123 GSList *customhdr_list;
125 /* Compose */
126 SigType sig_type;
127 gchar *sig_path;
128 gboolean auto_sig;
129 gchar *sig_sep;
130 gboolean set_autocc;
131 gchar *auto_cc;
132 gboolean set_autobcc;
133 gchar *auto_bcc;
134 gboolean set_autoreplyto;
135 gchar *auto_replyto;
136 gboolean enable_default_dictionary;
137 gchar *default_dictionary;
138 gboolean enable_default_alt_dictionary;
139 gchar *default_alt_dictionary;
140 gboolean compose_with_format;
141 gchar *compose_subject_format;
142 gchar *compose_body_format;
143 gboolean reply_with_format;
144 gchar *reply_quotemark;
145 gchar *reply_body_format;
146 gboolean forward_with_format;
147 gchar *forward_quotemark;
148 gchar *forward_body_format;
150 /* Privacy */
151 gchar *default_privacy_system;
152 gboolean default_encrypt;
153 gboolean default_encrypt_reply;
154 gboolean default_sign;
155 gboolean default_sign_reply;
156 gboolean save_encrypted_as_clear_text;
157 gboolean encrypt_to_self;
159 /* Advanced */
160 gboolean set_smtpport;
161 gushort smtpport;
162 gboolean set_popport;
163 gushort popport;
164 gboolean set_imapport;
165 gushort imapport;
166 gboolean set_nntpport;
167 gushort nntpport;
168 gboolean set_domain;
169 gchar *domain;
170 gboolean set_gnutls_priority;
171 gchar *gnutls_priority;
172 gboolean msgid_with_addr;
173 gboolean mark_crosspost_read;
174 gint crosspost_col;
176 #ifndef G_OS_WIN32
177 /* Use this command to open a socket, rather than doing so
178 * directly. Good if you want to perhaps use a special socks
179 * tunnel command, or run IMAP-over-SSH. In this case the
180 * server, port etc are only for the user's own information
181 * and are not used. username and password are used to
182 * authenticate the account only if necessary, since some
183 * tunnels will implicitly authenticate by running e.g. imapd
184 * as a particular user. */
185 gboolean set_tunnelcmd;
186 gchar *tunnelcmd;
187 #endif
189 gchar *imap_dir;
190 gboolean imap_subsonly;
191 gboolean low_bandwidth;
193 gboolean set_sent_folder;
194 gchar *sent_folder;
195 gboolean set_queue_folder;
196 gchar *queue_folder;
197 gboolean set_draft_folder;
198 gchar *draft_folder;
199 gboolean set_trash_folder;
200 gchar *trash_folder;
202 /* Default or not */
203 gboolean is_default;
204 /* Unique account ID */
205 gint account_id;
207 struct _Folder *folder;
208 GHashTable *privacy_prefs;
209 SMTPSession *session;
212 void prefs_account_init (void);
214 PrefsAccount *prefs_account_new (void);
216 void prefs_account_read_config (PrefsAccount *ac_prefs,
217 const gchar *label);
218 void prefs_account_write_config_all (GList *account_list);
220 void prefs_account_free (PrefsAccount *ac_prefs);
222 PrefsAccount *prefs_account_open (PrefsAccount *ac_prefs, gboolean *dirty);
224 const gchar *prefs_account_get_privacy_prefs(PrefsAccount *account, gchar *id);
225 void prefs_account_set_privacy_prefs(PrefsAccount *account, gchar *id, gchar *new_value);
226 gchar *prefs_account_generate_msgid(PrefsAccount *account);
228 void prefs_account_register_page (PrefsPage *page);
229 void prefs_account_unregister_page (PrefsPage *page);
231 gchar *prefs_account_cache_dir (PrefsAccount *ac_prefs, gboolean for_server);
233 #endif /* PREFS_ACCOUNT_H */