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