2005-06-15 [paul] 1.9.11cvs71
[claws.git] / src / prefs_account.h
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2004 Hiroyuki Yamamoto
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, 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
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 #if USE_OPENSSL
75         SSLType ssl_pop;
76         SSLType ssl_imap;
77         SSLType ssl_nntp;
78         SSLType ssl_smtp;
79         gboolean use_nonblocking_ssl;
80 #endif /* USE_OPENSSL */
81
82         /* Temporarily preserved password */
83         gchar *tmp_pass;
84
85         /* Receive */
86         gboolean use_apop_auth;
87         gboolean rmmail;
88         gint msg_leave_time;
89         gboolean getall;
90         gboolean recv_at_getall;
91         gboolean sd_rmmail_on_download;
92         gboolean sd_filter_on_recv;
93         gboolean enable_size_limit;
94         gint size_limit;
95         gboolean filter_on_recv;
96         gchar *inbox;
97         gint max_articles;
98
99         gint imap_auth_type;
100
101         /* Send */
102         gboolean add_date;
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;
109
110         /* Temporarily preserved password */
111         gchar *tmp_smtp_pass;
112
113         gboolean pop_before_smtp;
114         gint pop_before_smtp_timeout;
115         time_t last_pop_login_time;
116
117         GSList *customhdr_list;
118
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
131         /* Privacy */
132         gchar    *default_privacy_system;
133         gboolean  default_encrypt;
134         gboolean  default_sign;
135         gboolean  save_encrypted_as_clear_text;
136
137         /* Advanced */
138         gboolean  set_smtpport;
139         gushort   smtpport;
140         gboolean  set_popport;
141         gushort   popport;
142         gboolean  set_imapport;
143         gushort   imapport;
144         gboolean  set_nntpport;
145         gushort   nntpport;
146         gboolean  set_domain;
147         gchar    *domain;
148         gboolean  mark_crosspost_read;
149         gint      crosspost_col;
150
151         /* Use this command to open a socket, rather than doing so
152          * directly.  Good if you want to perhaps use a special socks
153          * tunnel command, or run IMAP-over-SSH.  In this case the
154          * server, port etc are only for the user's own information
155          * and are not used.  username and password are used to
156          * authenticate the account only if necessary, since some
157          * tunnels will implicitly authenticate by running e.g. imapd
158          * as a particular user. */
159         gboolean  set_tunnelcmd;
160         gchar     *tunnelcmd;
161
162         gchar *imap_dir;
163
164         gboolean set_sent_folder;
165         gchar *sent_folder;
166         gboolean set_queue_folder;
167         gchar *queue_folder;
168         gboolean set_draft_folder;
169         gchar *draft_folder;
170         gboolean set_trash_folder;
171         gchar *trash_folder;
172
173         /* Default or not */
174         gboolean is_default;
175         /* Unique account ID */
176         gint account_id;
177
178         Folder *folder;
179         GHashTable *privacy_prefs;
180         SMTPSession *session;
181 };
182
183 void prefs_account_init                 (void);
184
185 PrefsAccount *prefs_account_new         (void);
186
187 void prefs_account_read_config          (PrefsAccount   *ac_prefs,
188                                          const gchar    *label);
189 void prefs_account_write_config_all     (GList          *account_list);
190
191 void prefs_account_free                 (PrefsAccount   *ac_prefs);
192
193 PrefsAccount *prefs_account_open        (PrefsAccount   *ac_prefs);
194
195 const gchar *prefs_account_get_privacy_prefs(PrefsAccount *account, gchar *id);
196 void prefs_account_set_privacy_prefs(PrefsAccount *account, gchar *id, gchar *new_value);
197
198 void prefs_account_register_page        (PrefsPage      *page);
199 void prefs_acount_unregister_page       (PrefsPage      *page);
200
201 #endif /* PREFS_ACCOUNT_H */