/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ /* * Authors: Jeffrey Stedfast * * Copyright 2001 Ximian, Inc. (www.ximian.com) * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA. * */ #ifndef MAIL_CONFIG_H #define MAIL_CONFIG_H #include #include #ifdef __cplusplus extern "C" { #pragma } #endif /* __cplusplus */ typedef struct { gchar *name; gchar *address; gchar *organization; gchar *signature; gchar *html_signature; gboolean has_html_signature; } MailConfigIdentity; typedef struct { gchar *url; gboolean keep_on_server; gboolean auto_check; gint auto_check_time; gboolean save_passwd; gboolean enabled; } MailConfigService; typedef struct { gchar *name; MailConfigIdentity *id; MailConfigService *source; MailConfigService *transport; gchar *drafts_folder_name, *drafts_folder_uri; gchar *sent_folder_name, *sent_folder_uri; gchar *pgp_key; gboolean pgp_encrypt_to_self; gboolean pgp_always_sign; gchar *smime_key; gboolean smime_encrypt_to_self; gboolean smime_always_sign; } MailConfigAccount; typedef enum { MAIL_CONFIG_HTTP_NEVER, MAIL_CONFIG_HTTP_SOMETIMES, MAIL_CONFIG_HTTP_ALWAYS } MailConfigHTTPMode; typedef enum { MAIL_CONFIG_FORWARD_ATTACHED, MAIL_CONFIG_FORWARD_INLINE, MAIL_CONFIG_FORWARD_QUOTED } MailConfigForwardStyle; typedef enum { MAIL_CONFIG_DISPLAY_NORMAL, MAIL_CONFIG_DISPLAY_FULL_HEADERS, MAIL_CONFIG_DISPLAY_SOURCE, MAIL_CONFIG_DISPLAY_MAX } MailConfigDisplayStyle; /* Identities */ MailConfigIdentity *identity_copy (const MailConfigIdentity *id); void identity_destroy (MailConfigIdentity *id); /* Services */ MailConfigService *service_copy (const MailConfigService *source); void service_destroy (MailConfigService *source); void service_destroy_each (gpointer item, gpointer data); /* Accounts */ MailConfigAccount *account_copy (const MailConfigAccount *account); void account_destroy (MailConfigAccount *account); void account_destroy_each (gpointer item, gpointer data); /* Configuration */ void mail_config_init (void); void mail_config_clear (void); void mail_config_write (void); void mail_config_write_on_exit (void); /* General Accessor functions */ gboolean mail_config_is_configured (void); gboolean mail_config_get_filter_log (void); void mail_config_set_filter_log (gboolean value); const char *mail_config_get_filter_log_path (void); void mail_config_set_filter_log_path (const char *path); gboolean mail_config_get_empty_trash_on_exit (void); void mail_config_set_empty_trash_on_exit (gboolean value); gboolean mail_config_get_thread_list (const char *uri); void mail_config_set_thread_list (const char *uri, gboolean value); gboolean mail_config_get_show_preview (const char *uri); void mail_config_set_show_preview (const char *uri, gboolean value); gboolean mail_config_get_hide_deleted (void); void mail_config_set_hide_deleted (gboolean value); gint mail_config_get_paned_size (void); void mail_config_set_paned_size (gint size); gboolean mail_config_get_send_html (void); void mail_config_set_send_html (gboolean send_html); gboolean mail_config_get_citation_highlight (void); void mail_config_set_citation_highlight (gboolean); guint32 mail_config_get_citation_color (void); void mail_config_set_citation_color (guint32); gint mail_config_get_do_seen_timeout (void); void mail_config_set_do_seen_timeout (gboolean do_seen_timeout); gint mail_config_get_mark_as_seen_timeout (void); void mail_config_set_mark_as_seen_timeout (gint timeout); gboolean mail_config_get_prompt_empty_subject (void); void mail_config_set_prompt_empty_subject (gboolean value); gboolean mail_config_get_prompt_only_bcc (void); void mail_config_set_prompt_only_bcc (gboolean value); gboolean mail_config_get_confirm_expunge (void); void mail_config_set_confirm_expunge (gboolean value); CamelPgpType mail_config_get_pgp_type (void); void mail_config_set_pgp_type (CamelPgpType pgp_type); const char *mail_config_get_pgp_path (void); void mail_config_set_pgp_path (const char *pgp_path); gboolean mail_config_get_remember_pgp_passphrase (void); void mail_config_set_remember_pgp_passphrase (gboolean value); MailConfigHTTPMode mail_config_get_http_mode (void); void mail_config_set_http_mode (MailConfigHTTPMode); MailConfigForwardStyle mail_config_get_default_forward_style (void); void mail_config_set_default_forward_style (MailConfigForwardStyle style); MailConfigDisplayStyle mail_config_get_message_display_style (void); void mail_config_set_message_display_style (MailConfigDisplayStyle style); const char *mail_config_get_default_charset (void); void mail_config_set_default_charset (const char *charset); void mail_config_service_set_save_passwd (MailConfigService *service, gboolean save_passwd); const MailConfigAccount *mail_config_get_default_account (void); gint mail_config_get_default_account_num (void); const MailConfigAccount *mail_config_get_account_by_name (const char *account_name); const MailConfigAccount *mail_config_get_account_by_source_url (const char *url); const MailConfigAccount *mail_config_get_account_by_transport_url (const char *url); const GSList *mail_config_get_accounts (void); void mail_config_add_account (MailConfigAccount *account); const GSList *mail_config_remove_account (MailConfigAccount *account); void mail_config_set_default_account (const MailConfigAccount *account); const MailConfigIdentity *mail_config_get_default_identity (void); const MailConfigService *mail_config_get_default_transport (void); const MailConfigService *mail_config_get_default_news (void); const GSList *mail_config_get_news (void); void mail_config_add_news (MailConfigService *news); const GSList *mail_config_remove_news (MailConfigService *news); GtkType evolution_mail_config_get_type (void); /* convenience functions to help ease the transition over to the new codebase */ GSList *mail_config_get_sources (void); /* static utility functions */ char *mail_config_folder_to_cachename (CamelFolder *folder, const char *prefix); gboolean mail_config_check_service (const char *url, CamelProviderType type, GList **authtypes); void evolution_mail_config_factory_init (void); #ifdef __cplusplus } #endif /* __cplusplus */ #endif /* MAIL_CONFIG_H */ ce'>octave-forge-msh
Commit message (Expand)AuthorAgeFilesLines
* - Update to 1.0.6.stephen2012-10-272-3/+3
* - Update to 1.0.5.stephen2012-10-232-9/+4
* - update png to 1.5.10dinoex2012-06-011-1/+1
* Bump port revision of all the octave-forge ports,maho2012-04-111-1/+1
* - Cosmetic change to Makefile. Use the variable OCTSRC to describe where thestephen2011-11-211-1/+5
* - Bump portrevision for octave-forge-* ports because of update ofstephen2011-07-011-1/+1
* - Bump portrevision because math/octave updated to 3.4.1stephen2011-06-241-0/+2
* Maintainer: stephen@missouri.edu -> stephen@FreeBSD.orgstephen2011-06-141-1/+1
* - Update to 1.0.2miwi2011-05-312-4/+4
* - Get Rid MD5 supportmiwi2011-03-201-1/+0
* - Update to 1.0.1miwi2010-06-062-6/+10
* A large number of the octave forge ports need version updates. But the newmiwi2010-06-031-0/+1
* - update to 1.4.1dinoex2010-03-281-1/+1
* - update to jpeg-8dinoex2010-02-051-1/+1
* Chase math/gsl update,makc2009-12-021-1/+1
* - bump all port that indirectly depends on libjpeg and have not yet been bump...dinoex2009-07-311-0/+1
* - Update to 0.1.1miwi2009-06-142-4/+4
* - Update to 0.1.0beat2009-05-27