2 * Claws Mail -- a GTK+ based, lightweight, and fast e-mail client
3 * Copyright (C) 2013 Paul Mangan <paul@claws-mail.org>
4 * 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 <glib/gi18n.h>
30 #include <gdk/gdkkeysyms.h>
39 #include "alertpanel.h"
42 static gboolean
verify_folderlist_xml();
44 gboolean
check_file_integrity()
46 if (verify_folderlist_xml() != TRUE
)
52 static gboolean
verify_folderlist_xml()
55 static gchar
*filename
= NULL
;
56 static gchar
*bak
= NULL
;
61 filename
= folder_get_list_path();
62 bak
= g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S
,
63 FOLDER_LIST
, ".bak", NULL
);
65 if (is_file_exist(bak
)) {
66 date
= get_file_mtime(bak
);
67 ts
= localtime(&date
);
68 strftime(buf
, sizeof(buf
), "%a %d-%b-%Y %H:%M %Z", ts
);
71 if (!is_file_exist(filename
) && is_file_exist(bak
)) {
76 (_("The file %s is missing! "
77 "Do you want to use the backup file from %s?"), FOLDER_LIST
,buf
);
78 aval
= alertpanel(_("Warning"), msg
, GTK_STOCK_NO
, GTK_STOCK_YES
, NULL
);
80 if (aval
!= G_ALERTALTERNATE
)
83 if (copy_file(bak
,filename
,FALSE
) < 0) {
84 alertpanel_warning(_("Could not copy %s to %s"),bak
,filename
);
92 node
= xml_parse_file(filename
);
93 if (!node
&& is_file_exist(bak
)) {
98 (_("The file %s is empty or corrupted! "
99 "Do you want to use the backup file from %s?"), FOLDER_LIST
,buf
);
100 aval
= alertpanel(_("Warning"), msg
, GTK_STOCK_NO
, GTK_STOCK_YES
, NULL
);
102 if (aval
!= G_ALERTALTERNATE
)
105 if (copy_file(bak
,filename
,FALSE
) < 0) {
106 alertpanel_warning(_("Could not copy %s to %s"),bak
,filename
);