* sync with main changes of 2002-10-04
[claws.git] / src / prefs_account.h
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2002 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         /* login and retrieve messages, as before */
49         STYPE_NORMAL,
50         /* send TOP to server and retrieve all available Headers */
51         STYPE_PREVIEW_ALL,
52         /* send TOP to server and retrieve new Headers */
53         STYPE_PREVIEW_NEW,
54         /* delete selected Headers on Server */
55         STYPE_DELETE, 
56         /* download + remove Mail from Server */
57         STYPE_DOWNLOAD,
58         /* just login (pop before smtp) */
59         STYPE_POP_BEFORE_SMTP,
60 } Pop3SessionType;
61
62 #if USE_GPGME
63 typedef enum {
64         SIGN_KEY_DEFAULT,
65         SIGN_KEY_BY_FROM,
66         SIGN_KEY_CUSTOM
67 } SignKeyType;
68 #endif /* USE_GPGME */
69
70 struct _PrefsAccount
71 {
72         gchar *account_name;
73
74         /* Personal info */
75         gchar *name;
76         gchar *address;
77         gchar *organization;
78
79         /* Server info */
80         RecvProtocol protocol;
81         gchar *recv_server;
82         gchar *smtp_server;
83         gchar *nntp_server;
84         gboolean use_nntp_auth;
85         gchar *userid;
86         gchar *passwd;
87
88         gchar * local_mbox;
89         gboolean use_mail_command;
90         gchar * mail_command;
91
92 #if USE_SSL
93         SSLType ssl_pop;
94         SSLType ssl_imap;
95         SSLType ssl_nntp;
96         SSLType ssl_smtp;
97 #endif /* USE_SSL */
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
114         /* selective Download */
115         gint   session;
116         GSList *msg_list;
117
118         /* Send */
119         gboolean add_date;
120         gboolean gen_msgid;
121         gboolean add_customhdr;
122         gboolean use_smtp_auth;
123         SMTPAuthType smtp_auth_type;
124         gchar *smtp_userid;
125         gchar *smtp_passwd;
126
127         /* Temporarily preserved password */
128         gchar *tmp_smtp_pass;
129
130         gboolean pop_before_smtp;
131         gint pop_before_smtp_timeout;
132         time_t last_pop_login_time;
133
134         GSList *customhdr_list;
135
136         /* Compose */
137         gchar *sig_path;
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 ascii_armored;
150         gboolean clearsign;
151         SignKeyType sign_key;
152         gchar *sign_key_id;
153 #endif /* USE_GPGME */
154
155         /* Advanced */
156         gboolean  set_smtpport;
157         gushort   smtpport;
158         gboolean  set_popport;
159         gushort   popport;
160         gboolean  set_imapport;
161         gushort   imapport;
162         gboolean  set_nntpport;
163         gushort   nntpport;
164         gboolean  set_domain;
165         gchar    *domain;
166         gboolean  mark_crosspost_read;
167         gint      crosspost_col;
168
169         /* Use this command to open a socket, rather than doing so
170          * directly.  Good if you want to perhaps use a special socks
171          * tunnel command, or run IMAP-over-SSH.  In this case the
172          * server, port etc are only for the user's own information
173          * and are not used.  username and password are used to
174          * authenticate the account only if necessary, since some
175          * tunnels will implicitly authenticate by running e.g. imapd
176          * as a particular user. */
177         gboolean  set_tunnelcmd;
178         gchar     *tunnelcmd;
179
180         gchar *imap_dir;
181
182         gboolean set_sent_folder;
183         gchar *sent_folder;
184         gboolean set_draft_folder;
185         gchar *draft_folder;
186         gboolean set_trash_folder;
187         gchar *trash_folder;
188
189         /* Default or not */
190         gboolean is_default;
191         /* Unique account ID */
192         gint account_id;
193
194         RemoteFolder *folder;
195 };
196
197 PrefsAccount *prefs_account_new         (void);
198
199 void prefs_account_read_config          (PrefsAccount   *ac_prefs,
200                                          const gchar    *label);
201 void prefs_account_save_config          (PrefsAccount   *ac_prefs);
202 void prefs_account_save_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__ */