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