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"
31 static gint
get_content_for_any_face(gchar
*buf
, gint len
, gchar
*anyname
, gint maxlen
)
37 xfile
= g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S
, AUTOFACES_DIR
,
38 G_DIR_SEPARATOR_S
, anyname
, NULL
);
40 if ((xfp
= g_fopen(xfile
, "rb")) == NULL
) {
42 debug_print("header content file '%s' not found\n", anyname
);
45 if (fgets(buf
, (len
< maxlen
)? len
: maxlen
, xfp
) == NULL
) {
48 g_warning("header content file '%s' read failure", anyname
);
51 lastc
= strlen(buf
) - 1; /* remove trailing \n */
52 buf
[lastc
] = (buf
[lastc
] == '\n')? '\0': buf
[lastc
];
59 static gchar
* get_any_face_filename_for_account(gchar
*facetype
, gchar
*accountname
)
63 if (facetype
== NULL
|| accountname
== NULL
)
65 if (*facetype
== '\0' || *accountname
== '\0')
67 what
= name
= g_strdup_printf("%s.%s", facetype
, accountname
);
90 gint
get_default_xface(gchar
*buf
, gint len
) {
91 return get_content_for_any_face(buf
, len
, "xface", MAX_XFACE_LEN
);
94 gint
get_account_xface(gchar
*buf
, gint len
, gchar
*name
) {
95 gchar
*filename
= get_any_face_filename_for_account("xface", name
);
97 gint result
= get_content_for_any_face(buf
, len
, filename
, MAX_XFACE_LEN
);
101 g_warning("header xface filename invalid");
105 gint
get_default_face(gchar
*buf
, gint len
) {
106 return get_content_for_any_face(buf
, len
, "face", MAX_FACE_LEN
);
109 gint
get_account_face(gchar
*buf
, gint len
, gchar
*name
) {
110 gchar
*filename
= get_any_face_filename_for_account("face", name
);
112 gint result
= get_content_for_any_face(buf
, len
, filename
, MAX_FACE_LEN
);
116 g_warning("header face filename invalid");