/usr/include/claws-mail/folder_item_prefs.h is in libclaws-mail-dev 3.9.3-1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 | /*
* Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
* Copyright (C) 1999-2012 Hiroyuki Yamamoto and the Claws Mail team
*
* 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 3 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, see <http://www.gnu.org/licenses/>.
*
*/
#ifndef FOLDER_ITEM_PREFS_H
#define FOLDER_ITEM_PREFS_H
#include <glib.h>
#include <sys/types.h>
typedef struct _FolderItemPrefs FolderItemPrefs;
#include "folder.h"
typedef enum {
HTML_PROMOTE_DEFAULT=0,
HTML_PROMOTE_NEVER,
HTML_PROMOTE_ALWAYS
} HTMLPromoteType;
struct _FolderItemPrefs {
gchar * directory;
int enable_processing; /* at start-up */
int enable_processing_when_opening;
GSList * processing;
int newmailcheck;
int offlinesync;
int offlinesync_days;
int remove_old_bodies;
HTMLPromoteType promote_html_part;
gboolean request_return_receipt;
gboolean enable_default_to;
gchar *default_to;
gboolean enable_default_reply_to;
gchar *default_reply_to;
gboolean enable_default_cc;
gchar *default_cc;
gboolean enable_default_bcc;
gchar *default_bcc;
gboolean enable_default_replyto;
gchar *default_replyto;
gboolean enable_simplify_subject;
#ifndef G_OS_WIN32
gchar *simplify_subject_regexp;
#endif
gboolean enable_folder_chmod;
gint folder_chmod;
gboolean enable_default_account;
gint default_account;
gboolean enable_default_dictionary;
gchar *default_dictionary;
gboolean enable_default_alt_dictionary;
gchar *default_alt_dictionary;
gboolean save_copy_to_folder;
guint color;
gboolean compose_with_format;
gchar *compose_override_from_format;
gchar *compose_subject_format;
gchar *compose_body_format;
gboolean reply_with_format;
gchar *reply_quotemark;
gchar *reply_override_from_format;
gchar *reply_body_format;
gboolean forward_with_format;
gchar *forward_quotemark;
gchar *forward_override_from_format;
gchar *forward_body_format;
};
void folder_item_prefs_read_config(FolderItem * item);
void folder_item_prefs_save_config(FolderItem * item);
void folder_item_prefs_save_config_recursive(FolderItem * item);
void folder_prefs_save_config_recursive(Folder *folder);
FolderItemPrefs *folder_item_prefs_new(void);
void folder_item_prefs_free(FolderItemPrefs * prefs);
void folder_item_prefs_copy_prefs(FolderItem * src, FolderItem * dest);
#endif /* FOLDER_ITEM_PREFS_H */
|