3 * Claws Mail -- a GTK based, lightweight, and fast e-mail client
4 * Copyright (C) 2008-2012 Ricardo Mones and the Claws Mail team
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
23 #include "claws-features.h"
29 #include "autofaces.h"
30 #include "file-utils.h"
32 static gint
get_content_for_any_face(gchar
*buf
, gint len
, gchar
*anyname
, gint maxlen
)
38 xfile
= g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S
, AUTOFACES_DIR
,
39 G_DIR_SEPARATOR_S
, anyname
, NULL
);
41 if ((xfp
= claws_fopen(xfile
, "rb")) == NULL
) {
43 debug_print("header content file '%s' not found\n", anyname
);
46 if (claws_fgets(buf
, (len
< maxlen
)? len
: maxlen
, xfp
) == NULL
) {
49 g_warning("header content file '%s' read failure", anyname
);
52 lastc
= strlen(buf
) - 1; /* remove trailing \n */
53 buf
[lastc
] = (buf
[lastc
] == '\n')? '\0': buf
[lastc
];
60 static gchar
* get_any_face_filename_for_account(gchar
*facetype
, gchar
*accountname
)
64 if (facetype
== NULL
|| accountname
== NULL
)
66 if (*facetype
== '\0' || *accountname
== '\0')
68 what
= name
= g_strdup_printf("%s.%s", facetype
, accountname
);
91 gint
get_default_xface(gchar
*buf
, gint len
) {
92 return get_content_for_any_face(buf
, len
, "xface", MAX_XFACE_LEN
);
95 gint
get_account_xface(gchar
*buf
, gint len
, gchar
*name
) {
96 gchar
*filename
= get_any_face_filename_for_account("xface", name
);
98 gint result
= get_content_for_any_face(buf
, len
, filename
, MAX_XFACE_LEN
);
102 g_warning("header xface filename invalid");
106 gint
get_default_face(gchar
*buf
, gint len
) {
107 return get_content_for_any_face(buf
, len
, "face", MAX_FACE_LEN
);
110 gint
get_account_face(gchar
*buf
, gint len
, gchar
*name
) {
111 gchar
*filename
= get_any_face_filename_for_account("face", name
);
113 gint result
= get_content_for_any_face(buf
, len
, filename
, MAX_FACE_LEN
);
117 g_warning("header face filename invalid");