diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2002-10-17 11:04:11 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2002-10-17 11:04:11 +0800 |
commit | 5f38b1e898698b939d76419cd1fa970effb38ecd (patch) | |
tree | fc5af7b1233dc425fe2d6d72d428126caf5dccdb /mail/mail-config.h | |
parent | 0372b96a72e19185a1e2d370d92610b3bc3e9090 (diff) | |
download | gsoc2013-evolution-5f38b1e898698b939d76419cd1fa970effb38ecd.tar.gz gsoc2013-evolution-5f38b1e898698b939d76419cd1fa970effb38ecd.tar.zst gsoc2013-evolution-5f38b1e898698b939d76419cd1fa970effb38ecd.zip |
Don't need to pass a path to camel_gpg_context_new () anymore.
2002-10-16 Jeffrey Stedfast <fejj@ximian.com>
* mail-format.c (handle_multipart_signed): Don't need to pass a
path to camel_gpg_context_new () anymore.
(mail_get_message_body): Same here.
(handle_multipart_encrypted): Use camel_gpg_context_new () instead
of mail_crypto_get_pgp_cipher_context ().
* mail-preferences.c (mail_preferences_construct): There's no
security tab anymore.
(mail_preferences_apply): No need to save any pgp config data,
there's nothing to configure!
* mail-crypto.c (mail_crypto_get_pgp_cipher_context): Updated to
not pass a pgp path into camel_gpg_context_new ().
* mail-config.c (mail_config_clear): No need to free a pgp_path
variable anymore, we don't need one.
(config_read): Don't read in a pgp-path or pgp-type anymore.
(mail_config_write_on_exit): Don't save a pgp-path or pgp-type
anymore, we don't use them.
(pgpopen): Removed.
(pgpclose): Removed.
(mail_config_pgp_type_detect_from_path): Removed.
(auto_detect_pgp_variables): Removed.
(mail_config_get_pgp_type): Removed.
(mail_config_set_pgp_type): Removed.
(mail_config_get_pgp_path): Removed.
(mail_config_set_pgp_path): Removed.
svn path=/trunk/; revision=18384
Diffstat (limited to 'mail/mail-config.h')
-rw-r--r-- | mail/mail-config.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/mail/mail-config.h b/mail/mail-config.h index 95159faafe..3b8732b97b 100644 --- a/mail/mail-config.h +++ b/mail/mail-config.h @@ -31,14 +31,6 @@ extern "C" { #pragma } #endif /* __cplusplus */ -enum { - MAIL_CONFIG_PGP_TYPE_NONE, - MAIL_CONFIG_PGP_TYPE_PGP2, /* no longer supported */ - MAIL_CONFIG_PGP_TYPE_PGP5, /* no longer supported */ - MAIL_CONFIG_PGP_TYPE_PGP6, /* no longer supported */ - MAIL_CONFIG_PGP_TYPE_GPG -}; - typedef struct { int id; char *name; @@ -229,14 +221,6 @@ void mail_config_set_confirm_goto_next_folder (gboolean value); gboolean mail_config_get_goto_next_folder (void); void mail_config_set_goto_next_folder (gboolean value); -int mail_config_pgp_type_detect_from_path (const char *pgp); - -int mail_config_get_pgp_type (void); -void mail_config_set_pgp_type (int pgp_type); - -const char *mail_config_get_pgp_path (void); -void mail_config_set_pgp_path (const char *pgp_path); - MailConfigHTTPMode mail_config_get_http_mode (void); void mail_config_set_http_mode (MailConfigHTTPMode); |