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