sync with 0.7.6cvs18
[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         SSLType ssl_pop;
88         SSLType ssl_imap;
89         SSLType ssl_nntp;
90         SSLType ssl_smtp;
91 #endif /* USE_SSL */
92
93         /* Temporarily preserved password */
94         gchar *tmp_pass;
95
96         /* Receive */
97         gboolean rmmail;
98         gchar *leave_time;      
99         gboolean getall;
100         gboolean recv_at_getall;
101         gboolean enable_size_limit;
102         gint size_limit;
103         gboolean filter_on_recv;
104         gchar *inbox;
105
106         /* selective Download */
107         gint   session_type;
108         GSList *to_delete;
109
110         /* Send */
111         gboolean add_date;
112         gboolean gen_msgid;
113         gboolean add_customhdr;
114         gboolean use_smtp_auth;
115         gchar *smtp_userid;
116         gchar *smtp_passwd;
117
118         /* Temporarily preserved password */
119         gchar *tmp_smtp_pass;
120
121         gboolean pop_before_smtp;
122
123         GSList *customhdr_list;
124
125         /* Compose */
126         gchar *sig_path;
127         gboolean  set_autocc;
128         gchar    *auto_cc;
129         gboolean  set_autobcc;
130         gchar    *auto_bcc;
131         gboolean  set_autoreplyto;
132         gchar    *auto_replyto;
133
134 #if USE_GPGME
135         /* Privacy */
136         gboolean default_encrypt;
137         gboolean ascii_armored;
138         gboolean default_sign;
139         SignKeyType sign_key;
140         gchar *sign_key_id;
141 #endif /* USE_GPGME */
142
143         /* Advanced */
144         gboolean  set_smtpport;
145         gushort   smtpport;
146         gboolean  set_popport;
147         gushort   popport;
148         gboolean  set_imapport;
149         gushort   imapport;
150         gboolean  set_nntpport;
151         gushort   nntpport;
152         gboolean  set_domain;
153         gchar    *domain;
154         gboolean  mark_crosspost_read;
155         gint      crosspost_col;
156
157         /* Use this command to open a socket, rather than doing so
158          * directly.  Good if you want to perhaps use a special socks
159          * tunnel command, or run IMAP-over-SSH.  In this case the
160          * server, port etc are only for the user's own information
161          * and are not used.  username and password are used to
162          * authenticate the account only if necessary, since some
163          * tunnels will implicitly authenticate by running e.g. imapd
164          * as a particular user. */
165         gboolean  set_tunnelcmd;
166         gchar     *tunnelcmd;
167
168         gchar *imap_dir;
169
170         gboolean set_sent_folder;
171         gchar *sent_folder;
172         gboolean set_draft_folder;
173         gchar *draft_folder;
174         gboolean set_trash_folder;
175         gchar *trash_folder;
176
177         /* Default or not */
178         gboolean is_default;
179         /* Unique account ID */
180         gint account_id;
181
182         RemoteFolder *folder;
183 };
184
185 void prefs_account_read_config          (PrefsAccount   *ac_prefs,
186                                          const gchar    *label);
187 void prefs_account_save_config          (PrefsAccount   *ac_prefs);
188 void prefs_account_save_config_all      (GList          *account_list);
189 void prefs_account_free                 (PrefsAccount   *ac_prefs);
190 PrefsAccount *prefs_account_open        (PrefsAccount   *ac_prefs);
191
192 #endif /* __PREFS_ACCOUNT_H__ */