2004-11-09 [colin] 0.9.12cvs144.1
[claws.git] / src / prefs_account.h
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2004 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 typedef struct _PrefsAccount    PrefsAccount;
28
29 typedef enum {
30         A_POP3,
31         A_APOP,
32         A_RPOP,
33         A_IMAP4,
34         A_NNTP,
35         A_LOCAL,
36         A_NONE,         /* SMTP only */
37 } RecvProtocol;
38
39 typedef enum {
40         SIG_FILE,
41         SIG_COMMAND,
42         SIG_DIRECT
43 } SigType;
44
45 #include <glib.h>
46
47 #include "smtp.h"
48 #include "folder.h"
49
50 struct _PrefsAccount
51 {
52         gchar *account_name;
53
54         /* Personal info */
55         gchar *name;
56         gchar *address;
57         gchar *organization;
58
59         /* Server info */
60         RecvProtocol protocol;
61         gchar *recv_server;
62         gchar *smtp_server;
63         gchar *nntp_server;
64         gboolean use_nntp_auth;
65         gboolean use_nntp_auth_onconnect;
66         gchar *userid;
67         gchar *passwd;
68
69         gchar * local_mbox;
70         gboolean use_mail_command;
71         gchar * mail_command;
72
73 #if USE_OPENSSL
74         SSLType ssl_pop;
75         SSLType ssl_imap;
76         SSLType ssl_nntp;
77         SSLType ssl_smtp;
78         gboolean use_nonblocking_ssl;
79 #endif /* USE_OPENSSL */
80
81         /* Temporarily preserved password */
82         gchar *tmp_pass;
83
84         /* Receive */
85         gboolean rmmail;
86         gint msg_leave_time;
87         gboolean getall;
88         gboolean recv_at_getall;
89         gboolean sd_rmmail_on_download;
90         gboolean sd_filter_on_recv;
91         gboolean enable_size_limit;
92         gint size_limit;
93         gboolean filter_on_recv;
94         gchar *inbox;
95         gint max_articles;
96
97         gint imap_auth_type;
98
99         /* Send */
100         gboolean add_date;
101         gboolean gen_msgid;
102         gboolean add_customhdr;
103         gboolean use_smtp_auth;
104         SMTPAuthType smtp_auth_type;
105         gchar *smtp_userid;
106         gchar *smtp_passwd;
107
108         /* Temporarily preserved password */
109         gchar *tmp_smtp_pass;
110
111         gboolean pop_before_smtp;
112         gint pop_before_smtp_timeout;
113         time_t last_pop_login_time;
114
115         GSList *customhdr_list;
116
117         /* Compose */
118         SigType sig_type;
119         gchar    *sig_path;
120         gboolean  auto_sig;
121         gchar    *sig_sep;
122         gboolean  set_autocc;
123         gchar    *auto_cc;
124         gboolean  set_autobcc;
125         gchar    *auto_bcc;
126         gboolean  set_autoreplyto;
127         gchar    *auto_replyto;
128
129         /* Privacy */
130         gchar    *default_privacy_system;
131         gboolean  default_encrypt;
132         gboolean  default_sign;
133
134         /* Advanced */
135         gboolean  set_smtpport;
136         gushort   smtpport;
137         gboolean  set_popport;
138         gushort   popport;
139         gboolean  set_imapport;
140         gushort   imapport;
141         gboolean  set_nntpport;
142         gushort   nntpport;
143         gboolean  set_domain;
144         gchar    *domain;
145         gboolean  mark_crosspost_read;
146         gint      crosspost_col;
147
148         /* Use this command to open a socket, rather than doing so
149          * directly.  Good if you want to perhaps use a special socks
150          * tunnel command, or run IMAP-over-SSH.  In this case the
151          * server, port etc are only for the user's own information
152          * and are not used.  username and password are used to
153          * authenticate the account only if necessary, since some
154          * tunnels will implicitly authenticate by running e.g. imapd
155          * as a particular user. */
156         gboolean  set_tunnelcmd;
157         gchar     *tunnelcmd;
158
159         gchar *imap_dir;
160
161         gboolean set_sent_folder;
162         gchar *sent_folder;
163         gboolean set_draft_folder;
164         gchar *draft_folder;
165         gboolean set_trash_folder;
166         gchar *trash_folder;
167
168         /* Default or not */
169         gboolean is_default;
170         /* Unique account ID */
171         gint account_id;
172
173         Folder *folder;
174 };
175
176 PrefsAccount *prefs_account_new         (void);
177
178 void prefs_account_read_config          (PrefsAccount   *ac_prefs,
179                                          const gchar    *label);
180 void prefs_account_write_config_all     (GList          *account_list);
181
182 void prefs_account_free                 (PrefsAccount   *ac_prefs);
183
184 PrefsAccount *prefs_account_open        (PrefsAccount   *ac_prefs);
185
186 #endif /* __PREFS_ACCOUNT_H__ */