sync with 0.7.8 main
[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 } Pop3SessionType;
59
60 #if USE_GPGME
61 typedef enum {
62         SIGN_KEY_DEFAULT,
63         SIGN_KEY_BY_FROM,
64         SIGN_KEY_CUSTOM
65 } SignKeyType;
66 #endif /* USE_GPGME */
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         gchar *userid;
84         gchar *passwd;
85
86         gchar * local_mbox;
87         gboolean use_mail_command;
88         gchar * mail_command;
89
90 #if USE_SSL
91         SSLType ssl_pop;
92         SSLType ssl_imap;
93         SSLType ssl_nntp;
94         SSLType ssl_smtp;
95 #endif /* USE_SSL */
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
112         /* selective Download */
113         gint   session;
114         GSList *msg_list;
115
116         /* Send */
117         gboolean add_date;
118         gboolean gen_msgid;
119         gboolean add_customhdr;
120         gboolean use_smtp_auth;
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
129         GSList *customhdr_list;
130
131         /* Compose */
132         gchar *sig_path;
133         gboolean  set_autocc;
134         gchar    *auto_cc;
135         gboolean  set_autobcc;
136         gchar    *auto_bcc;
137         gboolean  set_autoreplyto;
138         gchar    *auto_replyto;
139
140 #if USE_GPGME
141         /* Privacy */
142         gboolean default_encrypt;
143         gboolean ascii_armored;
144         gboolean default_sign;
145         SignKeyType sign_key;
146         gchar *sign_key_id;
147 #endif /* USE_GPGME */
148
149         /* Advanced */
150         gboolean  set_smtpport;
151         gushort   smtpport;
152         gboolean  set_popport;
153         gushort   popport;
154         gboolean  set_imapport;
155         gushort   imapport;
156         gboolean  set_nntpport;
157         gushort   nntpport;
158         gboolean  set_domain;
159         gchar    *domain;
160         gboolean  mark_crosspost_read;
161         gint      crosspost_col;
162
163         /* Use this command to open a socket, rather than doing so
164          * directly.  Good if you want to perhaps use a special socks
165          * tunnel command, or run IMAP-over-SSH.  In this case the
166          * server, port etc are only for the user's own information
167          * and are not used.  username and password are used to
168          * authenticate the account only if necessary, since some
169          * tunnels will implicitly authenticate by running e.g. imapd
170          * as a particular user. */
171         gboolean  set_tunnelcmd;
172         gchar     *tunnelcmd;
173
174         gchar *imap_dir;
175
176         gboolean set_sent_folder;
177         gchar *sent_folder;
178         gboolean set_draft_folder;
179         gchar *draft_folder;
180         gboolean set_trash_folder;
181         gchar *trash_folder;
182
183         /* Default or not */
184         gboolean is_default;
185         /* Unique account ID */
186         gint account_id;
187
188         RemoteFolder *folder;
189 };
190
191 void prefs_account_read_config          (PrefsAccount   *ac_prefs,
192                                          const gchar    *label);
193 void prefs_account_save_config          (PrefsAccount   *ac_prefs);
194 void prefs_account_save_config_all      (GList          *account_list);
195 void prefs_account_free                 (PrefsAccount   *ac_prefs);
196 PrefsAccount *prefs_account_open        (PrefsAccount   *ac_prefs);
197
198 #endif /* __PREFS_ACCOUNT_H__ */