try again
[claws.git] / src / plugins / pgpcore / prefs_gpg.h
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 2004 Hiroyuki Yamamoto & the Claws Mail team
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18  */
19
20 typedef struct GPGConfig GPGConfig;
21 typedef struct GPGAccountConfig GPGAccountConfig;
22
23 typedef enum {
24         SIGN_KEY_DEFAULT,
25         SIGN_KEY_BY_FROM,
26         SIGN_KEY_CUSTOM
27 } SignKeyType;
28
29 #include "prefs_account.h"
30
31 struct GPGConfig
32 {
33         gboolean         auto_check_signatures;
34         gboolean         store_passphrase;
35         gint             store_passphrase_timeout;
36         gboolean         passphrase_grab;
37         gboolean         gpg_warning;
38         gboolean         gpg_ask_create_key;
39 };
40
41 struct GPGAccountConfig
42 {
43         SignKeyType      sign_key;
44         gchar           *sign_key_id;
45 };
46
47 void prefs_gpg_init(void);
48 void prefs_gpg_done(void);
49 void prefs_gpg_save_config(void);
50 struct GPGConfig *prefs_gpg_get_config(void);
51 struct GPGAccountConfig *prefs_gpg_account_get_config(PrefsAccount *account);
52 void prefs_gpg_account_set_config(PrefsAccount *account, GPGAccountConfig *config);
53 void prefs_gpg_account_free_config(GPGAccountConfig *config);