apply sync patch from Paul; use old claws prefs_folder_item_create() for now
[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         RETR_NORMAL,
50         /* send TOP to server and retrieve Header */
51         RETR_HEADER, 
52         /* delete selected Headers on Server */
53         DELE_HEADER 
54 } Pop3SessionType;
55
56 #if USE_GPGME
57 typedef enum {
58         SIGN_KEY_DEFAULT,
59         SIGN_KEY_BY_FROM,
60         SIGN_KEY_CUSTOM
61 } SignKeyType;
62 #endif /* USE_GPGME */
63
64 struct _PrefsAccount
65 {
66         gchar *account_name;
67
68         /* Personal info */
69         gchar *name;
70         gchar *address;
71         gchar *organization;
72
73         /* Server info */
74         RecvProtocol protocol;
75         gchar *recv_server;
76         gchar *smtp_server;
77         gchar *nntp_server;
78         gboolean use_nntp_auth;
79         gchar *userid;
80         gchar *passwd;
81
82         gchar * local_mbox;
83         gboolean use_mail_command;
84         gchar * mail_command;
85
86 #if USE_SSL
87         /* SSL */
88         gboolean ssl_pop;
89         gboolean ssl_imap;
90         gboolean ssl_nntp;
91         SSLSMTPType ssl_smtp;
92 #endif /* USE_SSL */
93
94         /* Temporarily preserved password */
95         gchar *tmp_pass;
96
97         /* Receive */
98         gboolean rmmail;
99         gchar *leave_time;      
100         gboolean getall;
101         gboolean recv_at_getall;
102         gboolean enable_size_limit;
103         gint size_limit;
104         gboolean filter_on_recv;
105         gchar *inbox;
106
107         /* selective Download */
108         gint   session_type;
109         GSList *to_delete;
110
111         /* Send */
112         gboolean add_date;
113         gboolean gen_msgid;
114         gboolean add_customhdr;
115         gboolean use_smtp_auth;
116         gchar *smtp_userid;
117         gchar *smtp_passwd;
118
119         /* Temporarily preserved password */
120         gchar *tmp_smtp_pass;
121
122         gboolean pop_before_smtp;
123
124         GSList *customhdr_list;
125
126         /* Compose */
127         gchar *sig_path;
128         gboolean  set_autocc;
129         gchar    *auto_cc;
130         gboolean  set_autobcc;
131         gchar    *auto_bcc;
132         gboolean  set_autoreplyto;
133         gchar    *auto_replyto;
134
135 #if USE_GPGME
136         /* Privacy */
137         gboolean default_encrypt;
138         gboolean ascii_armored;
139         gboolean default_sign;
140         SignKeyType sign_key;
141         gchar *sign_key_id;
142 #endif /* USE_GPGME */
143
144         /* Advanced */
145         gboolean  set_smtpport;
146         gushort   smtpport;
147         gboolean  set_popport;
148         gushort   popport;
149         gboolean  set_imapport;
150         gushort   imapport;
151         gboolean  set_nntpport;
152         gushort   nntpport;
153         gboolean  set_domain;
154         gchar    *domain;
155         gboolean  mark_crosspost_read;
156         gint      crosspost_col;
157
158         /* Use this command to open a socket, rather than doing so
159          * directly.  Good if you want to perhaps use a special socks
160          * tunnel command, or run IMAP-over-SSH.  In this case the
161          * server, port etc are only for the user's own information
162          * and are not used.  username and password are used to
163          * authenticate the account only if necessary, since some
164          * tunnels will implicitly authenticate by running e.g. imapd
165          * as a particular user. */
166         gboolean  set_tunnelcmd;
167         gchar     *tunnelcmd;
168
169         gchar *imap_dir;
170
171         gboolean set_sent_folder;
172         gchar *sent_folder;
173         gboolean set_draft_folder;
174         gchar *draft_folder;
175         gboolean set_trash_folder;
176         gchar *trash_folder;
177
178         /* Default or not */
179         gboolean is_default;
180         /* Unique account ID */
181         gint account_id;
182
183         RemoteFolder *folder;
184 };
185
186 void prefs_account_read_config          (PrefsAccount   *ac_prefs,
187                                          const gchar    *label);
188 void prefs_account_save_config          (PrefsAccount   *ac_prefs);
189 void prefs_account_save_config_all      (GList          *account_list);
190 void prefs_account_free                 (PrefsAccount   *ac_prefs);
191 PrefsAccount *prefs_account_open        (PrefsAccount   *ac_prefs);
192
193 #endif /* __PREFS_ACCOUNT_H__ */