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