2004-08-23 [colin] 0.9.12cvs77.1
[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,
32         A_RPOP,
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 #if USE_GPGME
46 typedef enum {
47         SIGN_KEY_DEFAULT,
48         SIGN_KEY_BY_FROM,
49         SIGN_KEY_CUSTOM
50 } SignKeyType;
51
52 typedef enum {
53         GNUPG_MODE_DETACH,
54         GNUPG_MODE_INLINE
55 } DefaultGnuPGMode;
56 #endif /* USE_GPGME */
57
58 #include <glib.h>
59
60 #include "smtp.h"
61 #include "folder.h"
62
63 #ifdef USE_GPGME
64 #  include "rfc2015.h"
65 #endif
66
67
68 struct _PrefsAccount
69 {
70         gchar *account_name;
71
72         /* Personal info */
73         gchar *name;
74         gchar *address;
75         gchar *organization;
76
77         /* Server info */
78         RecvProtocol protocol;
79         gchar *recv_server;
80         gchar *smtp_server;
81         gchar *nntp_server;
82         gboolean use_nntp_auth;
83         gboolean use_nntp_auth_onconnect;
84         gchar *userid;
85         gchar *passwd;
86
87         gchar * local_mbox;
88         gboolean use_mail_command;
89         gchar * mail_command;
90
91 #if USE_OPENSSL
92         SSLType ssl_pop;
93         SSLType ssl_imap;
94         SSLType ssl_nntp;
95         SSLType ssl_smtp;
96         gboolean use_nonblocking_ssl;
97 #endif /* USE_OPENSSL */
98
99         /* Temporarily preserved password */
100         gchar *tmp_pass;
101
102         /* Receive */
103         gboolean rmmail;
104         gint msg_leave_time;
105         gboolean getall;
106         gboolean recv_at_getall;
107         gboolean sd_rmmail_on_download;
108         gboolean sd_filter_on_recv;
109         gboolean enable_size_limit;
110         gint size_limit;
111         gboolean filter_on_recv;
112         gchar *inbox;
113         gint max_articles;
114
115         gint imap_auth_type;
116
117         /* Send */
118         gboolean add_date;
119         gboolean gen_msgid;
120         gboolean add_customhdr;
121         gboolean use_smtp_auth;
122         SMTPAuthType smtp_auth_type;
123         gchar *smtp_userid;
124         gchar *smtp_passwd;
125
126         /* Temporarily preserved password */
127         gchar *tmp_smtp_pass;
128
129         gboolean pop_before_smtp;
130         gint pop_before_smtp_timeout;
131         time_t last_pop_login_time;
132
133         GSList *customhdr_list;
134
135         /* Compose */
136         SigType sig_type;
137         gchar    *sig_path;
138         gboolean  auto_sig;
139         gchar    *sig_sep;
140         gboolean  set_autocc;
141         gchar    *auto_cc;
142         gboolean  set_autobcc;
143         gchar    *auto_bcc;
144         gboolean  set_autoreplyto;
145         gchar    *auto_replyto;
146
147 #if USE_GPGME
148         /* Privacy */
149         gboolean default_encrypt;
150         gboolean default_sign;
151         gboolean default_gnupg_mode;
152         SignKeyType sign_key;
153         gchar *sign_key_id;
154 #endif /* USE_GPGME */
155
156         /* Advanced */
157         gboolean  set_smtpport;
158         gushort   smtpport;
159         gboolean  set_popport;
160         gushort   popport;
161         gboolean  set_imapport;
162         gushort   imapport;
163         gboolean  set_nntpport;
164         gushort   nntpport;
165         gboolean  set_domain;
166         gchar    *domain;
167         gboolean  mark_crosspost_read;
168         gint      crosspost_col;
169
170         /* Use this command to open a socket, rather than doing so
171          * directly.  Good if you want to perhaps use a special socks
172          * tunnel command, or run IMAP-over-SSH.  In this case the
173          * server, port etc are only for the user's own information
174          * and are not used.  username and password are used to
175          * authenticate the account only if necessary, since some
176          * tunnels will implicitly authenticate by running e.g. imapd
177          * as a particular user. */
178         gboolean  set_tunnelcmd;
179         gchar     *tunnelcmd;
180
181         gchar *imap_dir;
182
183         gboolean set_sent_folder;
184         gchar *sent_folder;
185         gboolean set_draft_folder;
186         gchar *draft_folder;
187         gboolean set_trash_folder;
188         gchar *trash_folder;
189
190         /* Default or not */
191         gboolean is_default;
192         /* Unique account ID */
193         gint account_id;
194
195         Folder *folder;
196 };
197
198 PrefsAccount *prefs_account_new         (void);
199
200 void prefs_account_read_config          (PrefsAccount   *ac_prefs,
201                                          const gchar    *label);
202 void prefs_account_write_config_all     (GList          *account_list);
203
204 void prefs_account_free                 (PrefsAccount   *ac_prefs);
205
206 PrefsAccount *prefs_account_open        (PrefsAccount   *ac_prefs);
207
208 #endif /* __PREFS_ACCOUNT_H__ */