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
24 #include "claws-features.h"
27 typedef struct _PrefsAccount PrefsAccount
;
34 A_NONE
, /* SMTP only */
47 #include "gtk/prefswindow.h"
51 /* Changes to this data structure might need to be reflected
52 * in account_clone() */
63 RecvProtocol protocol
;
67 gboolean use_nntp_auth
;
68 gboolean use_nntp_auth_onconnect
;
71 gchar
*session_passwd
;
74 gboolean use_mail_command
;
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
;
91 gboolean use_apop_auth
;
95 gboolean recv_at_getall
;
96 gboolean sd_rmmail_on_download
;
97 gboolean enable_size_limit
;
99 gboolean filter_on_recv
;
100 gboolean filterhook_on_recv
;
107 gboolean receive_in_progress
;
111 gboolean gen_xmailer
;
112 gboolean add_customhdr
;
113 gboolean use_smtp_auth
;
114 SMTPAuthType smtp_auth_type
;
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
;
132 gboolean set_autobcc
;
134 gboolean set_autoreplyto
;
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
;
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
;
160 gboolean set_smtpport
;
162 gboolean set_popport
;
164 gboolean set_imapport
;
166 gboolean set_nntpport
;
170 gboolean set_gnutls_priority
;
171 gchar
*gnutls_priority
;
172 gboolean msgid_with_addr
;
173 gboolean mark_crosspost_read
;
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
;
190 gboolean imap_subsonly
;
191 gboolean low_bandwidth
;
193 gboolean set_sent_folder
;
195 gboolean set_queue_folder
;
197 gboolean set_draft_folder
;
199 gboolean set_trash_folder
;
204 /* Unique 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
,
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 #endif /* PREFS_ACCOUNT_H */