bring in Simon Schubert's general GPG clean up patch
[claws.git] / src / prefs_account.h
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2001 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
33 #ifdef USE_GPGME
34 #  include "rfc2015.h"
35 #endif
36
37 typedef enum {
38         A_POP3,
39         A_APOP,
40         A_RPOP,
41         A_IMAP4,
42         A_NNTP,
43         A_LOCAL
44 } RecvProtocol;
45
46 #if USE_GPGME
47 typedef enum {
48         SIGN_KEY_DEFAULT,
49         SIGN_KEY_BY_FROM,
50         SIGN_KEY_CUSTOM
51 } SignKeyType;
52 #endif /* USE_GPGME */
53
54 #if USE_SSL
55 typedef enum {
56         SSL_SMTP_NONE,
57         SSL_SMTP_TUNNEL,
58         SSL_SMTP_STARTTLS
59 } SSLSMTPType;
60 #endif /* USE_SSL */
61
62 struct _PrefsAccount
63 {
64         gchar *account_name;
65
66         /* Personal info */
67         gchar *name;
68         gchar *address;
69         gchar *organization;
70
71         /* Server info */
72         RecvProtocol protocol;
73         gchar *recv_server;
74         gchar *smtp_server;
75         gchar *nntp_server;
76         gboolean use_nntp_auth;
77         gchar *userid;
78         gchar *passwd;
79
80         gchar * local_mbox;
81         gboolean use_mail_command;
82         gchar * mail_command;
83
84 #if USE_SSL
85         /* SSL */
86         gboolean ssl_pop;
87         gboolean ssl_imap;
88         SSLSMTPType ssl_smtp;
89 #endif /* USE_SSL */
90
91         /* Temporarily preserved password */
92         gchar *tmp_pass;
93         gchar *tmp_smtp_passwd;
94
95         /* Receive */
96         gboolean rmmail;
97         gboolean getall;
98         gboolean recv_at_getall;
99         gboolean filter_on_recv;
100         gchar *inbox;
101
102         gchar *imap_dir;
103
104         /* Send */
105         gboolean  add_date;
106         gboolean  gen_msgid;
107         gboolean  add_customhdr;
108         gboolean use_smtp_auth;
109         gchar    *smtp_userid;
110         gchar    *smtp_passwd;
111         gboolean pop_before_smtp;
112
113         GSList *customhdr_list;
114
115         /* Compose */
116         gchar *sig_path;
117         gboolean  set_autocc;
118         gchar    *auto_cc;
119         gboolean  set_autobcc;
120         gchar    *auto_bcc;
121         gboolean  set_autoreplyto;
122         gchar    *auto_replyto;
123
124 #if USE_GPGME
125         /* Privacy */
126         gboolean default_encrypt;
127         gboolean ascii_armored;
128         gboolean default_sign;
129         SignKeyType sign_key;
130         gchar *sign_key_id;
131 #endif /* USE_GPGME */
132
133         /* Advanced */
134         gboolean  set_smtpport;
135         gushort   smtpport;
136         gboolean  set_popport;
137         gushort   popport;
138         gboolean  set_imapport;
139         gushort   imapport;
140         gboolean  set_nntpport;
141         gushort   nntpport;
142         gboolean  set_domain;
143         gchar    *domain;
144
145         /* Use this command to open a socket, rather than doing so
146          * directly.  Good if you want to perhaps use a special socks
147          * tunnel command, or run IMAP-over-SSH.  In this case the
148          * server, port etc are only for the user's own information
149          * and are not used.  username and password are used to
150          * authenticate the account only if necessary, since some
151          * tunnels will implicitly authenticate by running e.g. imapd
152          * as a particular user. */
153         gboolean  set_tunnelcmd;
154         gchar     *tunnelcmd;
155
156         /* Default or not */
157         gboolean is_default;
158         /* Unique account ID */
159         gint account_id;
160
161         RemoteFolder *folder;
162 };
163
164 void prefs_account_read_config          (PrefsAccount   *ac_prefs,
165                                          const gchar    *label);
166 void prefs_account_save_config          (PrefsAccount   *ac_prefs);
167 void prefs_account_save_config_all      (GList          *account_list);
168 void prefs_account_free                 (PrefsAccount   *ac_prefs);
169 PrefsAccount *prefs_account_open        (PrefsAccount   *ac_prefs);
170
171 #endif /* __PREFS_ACCOUNT_H__ */