2001-04-19 14:21:46 +02:00
|
|
|
/*
|
2015-05-18 21:22:37 +02:00
|
|
|
* Claws Mail -- a GTK+ based, lightweight, and fast e-mail client
|
|
|
|
* Copyright (C) 1999-2015 Hiroyuki Yamamoto and the Claws Mail team
|
2001-04-19 14:21:46 +02:00
|
|
|
*
|
|
|
|
* 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
|
2007-07-11 18:38:12 +02:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2001-04-19 14:21:46 +02:00
|
|
|
* (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
|
2007-07-11 18:38:12 +02:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2015-05-18 21:22:37 +02:00
|
|
|
*
|
2001-04-19 14:21:46 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
2012-07-07 09:09:39 +02:00
|
|
|
#include "claws-features.h"
|
2001-04-19 14:21:46 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2006-11-14 16:09:11 +01:00
|
|
|
#define _GNU_SOURCE
|
|
|
|
#include <stdio.h>
|
|
|
|
|
2012-11-07 20:51:30 +01:00
|
|
|
#ifdef USE_PTHREAD
|
|
|
|
#include <pthread.h>
|
|
|
|
#endif
|
|
|
|
|
2006-11-14 16:09:11 +01:00
|
|
|
#include "defs.h"
|
2001-04-19 14:21:46 +02:00
|
|
|
#include <glib.h>
|
2005-02-10 13:06:07 +01:00
|
|
|
#include <glib/gi18n.h>
|
2006-11-14 16:09:11 +01:00
|
|
|
#include <stdlib.h>
|
2001-04-19 14:21:46 +02:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <sys/file.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <time.h>
|
2006-06-12 08:30:39 +02:00
|
|
|
#include <errno.h>
|
2001-04-19 14:21:46 +02:00
|
|
|
|
2007-07-09 21:21:53 +02:00
|
|
|
#ifdef G_OS_WIN32
|
|
|
|
# include <w32lib.h>
|
|
|
|
#endif
|
|
|
|
|
2001-04-19 14:21:46 +02:00
|
|
|
#include "mbox.h"
|
|
|
|
#include "procmsg.h"
|
|
|
|
#include "folder.h"
|
|
|
|
#include "prefs_common.h"
|
|
|
|
#include "prefs_account.h"
|
|
|
|
#include "account.h"
|
|
|
|
#include "utils.h"
|
2001-05-15 06:50:27 +02:00
|
|
|
#include "filtering.h"
|
2005-10-01 09:56:18 +02:00
|
|
|
#include "alertpanel.h"
|
2006-06-26 18:37:01 +02:00
|
|
|
#include "statusbar.h"
|
2001-04-19 14:21:46 +02:00
|
|
|
|
2012-10-10 10:12:10 +02:00
|
|
|
#define MESSAGEBUFSIZE 8192
|
2001-04-19 14:21:46 +02:00
|
|
|
|
2006-11-14 16:09:11 +01:00
|
|
|
#ifdef HAVE_FGETS_UNLOCKED
|
|
|
|
#define SC_FGETS fgets_unlocked
|
|
|
|
#define SC_FPUTS fputs_unlocked
|
|
|
|
#define SC_FPUTC fputc_unlocked
|
|
|
|
#else
|
|
|
|
#define SC_FGETS fgets
|
|
|
|
#define SC_FPUTS fputs
|
|
|
|
#define SC_FPUTC fputc
|
|
|
|
#endif
|
|
|
|
|
2001-04-19 14:21:46 +02:00
|
|
|
#define FPUTS_TO_TMP_ABORT_IF_FAIL(s) \
|
|
|
|
{ \
|
2005-10-04 18:01:12 +02:00
|
|
|
lines++; \
|
2001-04-19 14:21:46 +02:00
|
|
|
if (fputs(s, tmp_fp) == EOF) { \
|
2015-09-23 23:24:14 +02:00
|
|
|
g_warning("can't write to temporary file"); \
|
2001-04-19 14:21:46 +02:00
|
|
|
fclose(tmp_fp); \
|
|
|
|
fclose(mbox_fp); \
|
2008-04-18 18:26:05 +02:00
|
|
|
claws_unlink(tmp_file); \
|
2002-08-10 11:19:15 +02:00
|
|
|
g_free(tmp_file); \
|
2001-04-19 14:21:46 +02:00
|
|
|
return -1; \
|
|
|
|
} \
|
|
|
|
}
|
|
|
|
|
2006-09-02 15:13:03 +02:00
|
|
|
gint proc_mbox(FolderItem *dest, const gchar *mbox, gboolean apply_filter,
|
|
|
|
PrefsAccount *account)
|
2006-05-13 12:02:33 +02:00
|
|
|
/* return values: -1 error, >=0 number of msgs added */
|
2001-04-19 14:21:46 +02:00
|
|
|
{
|
|
|
|
FILE *mbox_fp;
|
2012-10-10 10:12:10 +02:00
|
|
|
gchar buf[MESSAGEBUFSIZE];
|
2001-04-19 14:21:46 +02:00
|
|
|
gchar *tmp_file;
|
|
|
|
gint msgs = 0;
|
2005-10-04 18:01:12 +02:00
|
|
|
gint lines;
|
2003-04-08 00:32:29 +02:00
|
|
|
MsgInfo *msginfo;
|
2005-10-04 18:01:12 +02:00
|
|
|
gboolean more;
|
2006-08-30 20:29:32 +02:00
|
|
|
GSList *to_filter = NULL, *filtered = NULL, *unfiltered = NULL, *cur, *to_add = NULL;
|
2006-06-26 18:37:01 +02:00
|
|
|
gboolean printed = FALSE;
|
|
|
|
FolderItem *dropfolder;
|
2001-04-19 14:21:46 +02:00
|
|
|
|
2009-02-23 17:55:51 +01:00
|
|
|
cm_return_val_if_fail(dest != NULL, -1);
|
|
|
|
cm_return_val_if_fail(mbox != NULL, -1);
|
2001-04-19 14:21:46 +02:00
|
|
|
|
2002-08-15 09:38:17 +02:00
|
|
|
debug_print("Getting messages from %s into %s...\n", mbox, dest->path);
|
2001-04-19 14:21:46 +02:00
|
|
|
|
2005-08-19 11:30:30 +02:00
|
|
|
if ((mbox_fp = g_fopen(mbox, "rb")) == NULL) {
|
2001-04-19 14:21:46 +02:00
|
|
|
FILE_OP_ERROR(mbox, "fopen");
|
2005-10-01 09:56:18 +02:00
|
|
|
alertpanel_error(_("Could not open mbox file:\n%s\n"), mbox);
|
2001-04-19 14:21:46 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ignore empty lines on the head */
|
|
|
|
do {
|
|
|
|
if (fgets(buf, sizeof(buf), mbox_fp) == NULL) {
|
2015-09-23 23:24:14 +02:00
|
|
|
g_warning("can't read mbox file.");
|
2001-04-19 14:21:46 +02:00
|
|
|
fclose(mbox_fp);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
} while (buf[0] == '\n' || buf[0] == '\r');
|
|
|
|
|
|
|
|
if (strncmp(buf, "From ", 5) != 0) {
|
2015-09-23 23:24:14 +02:00
|
|
|
g_warning("invalid mbox format: %s", mbox);
|
2001-04-19 14:21:46 +02:00
|
|
|
fclose(mbox_fp);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
tmp_file = get_tmp_file();
|
|
|
|
|
2003-02-06 23:42:47 +01:00
|
|
|
folder_item_update_freeze();
|
2006-06-26 18:37:01 +02:00
|
|
|
|
|
|
|
if (apply_filter)
|
2013-12-28 18:31:22 +01:00
|
|
|
dropfolder = folder_get_default_processing(account->account_id);
|
2006-06-26 18:37:01 +02:00
|
|
|
else
|
|
|
|
dropfolder = dest;
|
2003-02-06 23:42:47 +01:00
|
|
|
|
2001-04-19 14:21:46 +02:00
|
|
|
do {
|
|
|
|
FILE *tmp_fp;
|
2005-10-04 18:01:12 +02:00
|
|
|
gint empty_lines;
|
2001-05-15 06:50:27 +02:00
|
|
|
gint msgnum;
|
2006-06-26 18:37:01 +02:00
|
|
|
|
|
|
|
if (msgs > 0 && msgs%500 == 0) {
|
|
|
|
if (printed)
|
|
|
|
statusbar_pop_all();
|
2012-11-18 16:41:02 +01:00
|
|
|
statusbar_print_all(
|
|
|
|
ngettext("Importing from mbox... (%d mail imported)",
|
2013-04-27 09:12:55 +02:00
|
|
|
"Importing from mbox... (%d mails imported)", msgs), msgs);
|
2006-06-26 18:37:01 +02:00
|
|
|
printed=TRUE;
|
|
|
|
GTK_EVENTS_FLUSH();
|
|
|
|
}
|
|
|
|
|
2005-08-19 11:30:30 +02:00
|
|
|
if ((tmp_fp = g_fopen(tmp_file, "wb")) == NULL) {
|
2001-04-19 14:21:46 +02:00
|
|
|
FILE_OP_ERROR(tmp_file, "fopen");
|
2015-09-23 23:24:14 +02:00
|
|
|
g_warning("can't open temporary file");
|
2001-04-19 14:21:46 +02:00
|
|
|
fclose(mbox_fp);
|
2002-08-10 11:19:15 +02:00
|
|
|
g_free(tmp_file);
|
2001-04-19 14:21:46 +02:00
|
|
|
return -1;
|
|
|
|
}
|
2005-10-04 18:01:12 +02:00
|
|
|
if (change_file_mode_rw(tmp_fp, tmp_file) < 0) {
|
2001-04-19 14:21:46 +02:00
|
|
|
FILE_OP_ERROR(tmp_file, "chmod");
|
2005-10-04 18:01:12 +02:00
|
|
|
}
|
2001-04-19 14:21:46 +02:00
|
|
|
|
2005-10-04 18:01:12 +02:00
|
|
|
empty_lines = 0;
|
|
|
|
lines = 0;
|
2005-09-14 11:12:56 +02:00
|
|
|
|
2005-10-04 18:01:12 +02:00
|
|
|
/* process all lines from mboxrc file */
|
|
|
|
while (fgets(buf, sizeof(buf), mbox_fp) != NULL) {
|
|
|
|
int offset;
|
2001-04-19 14:21:46 +02:00
|
|
|
|
2005-10-04 18:01:12 +02:00
|
|
|
/* eat empty lines */
|
2001-04-19 14:21:46 +02:00
|
|
|
if (buf[0] == '\n' || buf[0] == '\r') {
|
2005-10-04 18:01:12 +02:00
|
|
|
empty_lines++;
|
2001-04-19 14:21:46 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2005-10-04 18:01:12 +02:00
|
|
|
/* From separator or quoted From */
|
|
|
|
offset = 0;
|
|
|
|
/* detect leading '>' char(s) */
|
|
|
|
while ((buf[offset] == '>')) {
|
|
|
|
offset++;
|
|
|
|
}
|
|
|
|
if (!strncmp(buf+offset, "From ", 5)) {
|
|
|
|
/* From separator: */
|
|
|
|
if (offset == 0) {
|
|
|
|
/* expect next mbox item */
|
2001-04-19 14:21:46 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2005-10-04 18:01:12 +02:00
|
|
|
/* quoted From: */
|
|
|
|
/* flush any eaten empty line */
|
|
|
|
if (empty_lines > 0) {
|
|
|
|
while (empty_lines-- > 0) {
|
|
|
|
FPUTS_TO_TMP_ABORT_IF_FAIL("\n");
|
2001-04-19 14:21:46 +02:00
|
|
|
}
|
2005-10-04 18:01:12 +02:00
|
|
|
empty_lines = 0;
|
|
|
|
}
|
|
|
|
/* store the unquoted line */
|
|
|
|
FPUTS_TO_TMP_ABORT_IF_FAIL(buf + 1);
|
|
|
|
continue;
|
2001-04-19 14:21:46 +02:00
|
|
|
}
|
|
|
|
|
2005-10-04 18:01:12 +02:00
|
|
|
/* other line */
|
|
|
|
/* flush any eaten empty line */
|
|
|
|
if (empty_lines > 0) {
|
|
|
|
while (empty_lines-- > 0) {
|
2001-04-19 14:21:46 +02:00
|
|
|
FPUTS_TO_TMP_ABORT_IF_FAIL("\n");
|
|
|
|
}
|
2005-10-04 18:01:12 +02:00
|
|
|
empty_lines = 0;
|
2001-04-19 14:21:46 +02:00
|
|
|
}
|
2005-10-04 18:01:12 +02:00
|
|
|
/* store the line itself */
|
2001-04-19 14:21:46 +02:00
|
|
|
FPUTS_TO_TMP_ABORT_IF_FAIL(buf);
|
2005-10-04 18:01:12 +02:00
|
|
|
}
|
|
|
|
/* end of mbox item or end of mbox */
|
2001-04-19 14:21:46 +02:00
|
|
|
|
2005-10-04 18:01:12 +02:00
|
|
|
/* flush any eaten empty line (but the last one) */
|
|
|
|
if (empty_lines > 0) {
|
|
|
|
while (--empty_lines > 0) {
|
|
|
|
FPUTS_TO_TMP_ABORT_IF_FAIL("\n");
|
2001-04-19 14:21:46 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-10-04 18:01:12 +02:00
|
|
|
/* more emails to expect? */
|
|
|
|
more = !feof(mbox_fp);
|
|
|
|
|
|
|
|
/* warn if email part is empty (it's the minimum check
|
|
|
|
we can do */
|
|
|
|
if (lines == 0) {
|
2015-09-23 23:24:14 +02:00
|
|
|
g_warning("malformed mbox: %s: message %d is empty", mbox, msgs);
|
2005-10-04 18:01:12 +02:00
|
|
|
fclose(tmp_fp);
|
|
|
|
fclose(mbox_fp);
|
2008-04-18 18:26:05 +02:00
|
|
|
claws_unlink(tmp_file);
|
2005-10-04 18:01:12 +02:00
|
|
|
return -1;
|
2001-04-19 14:21:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (fclose(tmp_fp) == EOF) {
|
|
|
|
FILE_OP_ERROR(tmp_file, "fclose");
|
2015-09-23 23:24:14 +02:00
|
|
|
g_warning("can't write to temporary file");
|
2001-04-19 14:21:46 +02:00
|
|
|
fclose(mbox_fp);
|
2008-04-18 18:26:05 +02:00
|
|
|
claws_unlink(tmp_file);
|
2002-08-10 11:19:15 +02:00
|
|
|
g_free(tmp_file);
|
2001-04-19 14:21:46 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2006-06-26 18:37:01 +02:00
|
|
|
if (apply_filter) {
|
|
|
|
if ((msgnum = folder_item_add_msg(dropfolder, tmp_file, NULL, TRUE)) < 0) {
|
|
|
|
fclose(mbox_fp);
|
2008-04-18 18:26:05 +02:00
|
|
|
claws_unlink(tmp_file);
|
2006-06-26 18:37:01 +02:00
|
|
|
g_free(tmp_file);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
msginfo = folder_item_get_msginfo(dropfolder, msgnum);
|
2006-08-30 20:29:32 +02:00
|
|
|
to_filter = g_slist_prepend(to_filter, msginfo);
|
2006-06-26 18:37:01 +02:00
|
|
|
} else {
|
|
|
|
MsgFileInfo *finfo = g_new0(MsgFileInfo, 1);
|
|
|
|
finfo->file = tmp_file;
|
2001-11-25 14:47:45 +01:00
|
|
|
|
2006-06-26 18:37:01 +02:00
|
|
|
to_add = g_slist_prepend(to_add, finfo);
|
|
|
|
tmp_file = get_tmp_file();
|
|
|
|
|
|
|
|
/* flush every 500 */
|
|
|
|
if (msgs > 0 && msgs % 500 == 0) {
|
|
|
|
folder_item_add_msgs(dropfolder, to_add, TRUE);
|
|
|
|
procmsg_message_file_list_free(to_add);
|
|
|
|
to_add = NULL;
|
|
|
|
}
|
2001-11-25 14:47:45 +01:00
|
|
|
}
|
2001-04-19 14:21:46 +02:00
|
|
|
msgs++;
|
2005-10-04 18:01:12 +02:00
|
|
|
} while (more);
|
2001-04-19 14:21:46 +02:00
|
|
|
|
2006-06-26 18:37:01 +02:00
|
|
|
if (printed)
|
|
|
|
statusbar_pop_all();
|
|
|
|
|
|
|
|
if (apply_filter) {
|
2007-11-27 19:28:40 +01:00
|
|
|
|
|
|
|
folder_item_set_batch(dropfolder, FALSE);
|
2006-09-02 15:13:03 +02:00
|
|
|
procmsg_msglist_filter(to_filter, account,
|
|
|
|
&filtered, &unfiltered, TRUE);
|
2007-11-27 19:28:40 +01:00
|
|
|
folder_item_set_batch(dropfolder, TRUE);
|
2006-10-03 12:19:12 +02:00
|
|
|
|
|
|
|
filtering_move_and_copy_msgs(to_filter);
|
|
|
|
for (cur = filtered; cur; cur = g_slist_next(cur)) {
|
2006-06-26 18:37:01 +02:00
|
|
|
MsgInfo *info = (MsgInfo *)cur->data;
|
2016-01-23 15:40:38 +01:00
|
|
|
procmsg_msginfo_free(&info);
|
2006-06-26 18:37:01 +02:00
|
|
|
}
|
|
|
|
|
2006-10-03 12:19:12 +02:00
|
|
|
unfiltered = g_slist_reverse(unfiltered);
|
2009-08-23 14:16:17 +02:00
|
|
|
if (unfiltered) {
|
|
|
|
folder_item_move_msgs(dest, unfiltered);
|
|
|
|
for (cur = unfiltered; cur; cur = g_slist_next(cur)) {
|
|
|
|
MsgInfo *info = (MsgInfo *)cur->data;
|
2016-01-23 15:40:38 +01:00
|
|
|
procmsg_msginfo_free(&info);
|
2009-08-23 14:16:17 +02:00
|
|
|
}
|
2006-06-26 18:37:01 +02:00
|
|
|
}
|
|
|
|
|
2006-08-30 20:29:32 +02:00
|
|
|
g_slist_free(unfiltered);
|
|
|
|
g_slist_free(filtered);
|
2006-06-26 18:37:01 +02:00
|
|
|
g_slist_free(to_filter);
|
|
|
|
} else if (to_add) {
|
|
|
|
folder_item_add_msgs(dropfolder, to_add, TRUE);
|
|
|
|
procmsg_message_file_list_free(to_add);
|
|
|
|
to_add = NULL;
|
2006-02-06 19:02:18 +01:00
|
|
|
}
|
|
|
|
|
2003-02-06 23:42:47 +01:00
|
|
|
folder_item_update_thaw();
|
|
|
|
|
2002-08-10 11:19:15 +02:00
|
|
|
g_free(tmp_file);
|
2001-04-19 14:21:46 +02:00
|
|
|
fclose(mbox_fp);
|
2002-08-15 09:38:17 +02:00
|
|
|
debug_print("%d messages found.\n", msgs);
|
2001-04-19 14:21:46 +02:00
|
|
|
|
|
|
|
return msgs;
|
|
|
|
}
|
|
|
|
|
|
|
|
gint lock_mbox(const gchar *base, LockType type)
|
|
|
|
{
|
2005-08-19 11:30:30 +02:00
|
|
|
#ifdef G_OS_UNIX
|
2001-04-19 14:21:46 +02:00
|
|
|
gint retval = 0;
|
|
|
|
|
|
|
|
if (type == LOCK_FILE) {
|
|
|
|
gchar *lockfile, *locklink;
|
|
|
|
gint retry = 0;
|
|
|
|
FILE *lockfp;
|
|
|
|
|
|
|
|
lockfile = g_strdup_printf("%s.%d", base, getpid());
|
2005-08-19 11:30:30 +02:00
|
|
|
if ((lockfp = g_fopen(lockfile, "wb")) == NULL) {
|
2001-04-19 14:21:46 +02:00
|
|
|
FILE_OP_ERROR(lockfile, "fopen");
|
2015-09-23 23:24:14 +02:00
|
|
|
g_warning("can't create lock file '%s', use 'flock' instead of 'file' if possible.", lockfile);
|
2001-04-19 14:21:46 +02:00
|
|
|
g_free(lockfile);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2009-02-22 19:47:11 +01:00
|
|
|
if (fprintf(lockfp, "%d\n", getpid()) < 0) {
|
|
|
|
FILE_OP_ERROR(lockfile, "fprintf");
|
|
|
|
g_free(lockfile);
|
|
|
|
fclose(lockfp);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fclose(lockfp) == EOF) {
|
|
|
|
FILE_OP_ERROR(lockfile, "fclose");
|
2007-10-04 19:36:57 +02:00
|
|
|
g_free(lockfile);
|
|
|
|
return -1;
|
|
|
|
}
|
2001-04-19 14:21:46 +02:00
|
|
|
|
|
|
|
locklink = g_strconcat(base, ".lock", NULL);
|
|
|
|
while (link(lockfile, locklink) < 0) {
|
|
|
|
FILE_OP_ERROR(lockfile, "link");
|
|
|
|
if (retry >= 5) {
|
2015-09-23 23:24:14 +02:00
|
|
|
g_warning("can't create '%s'", lockfile);
|
2008-04-18 18:26:05 +02:00
|
|
|
claws_unlink(lockfile);
|
2001-04-19 14:21:46 +02:00
|
|
|
g_free(lockfile);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (retry == 0)
|
2002-12-10 19:42:29 +01:00
|
|
|
g_warning("mailbox is owned by another"
|
2015-09-23 23:24:14 +02:00
|
|
|
" process, waiting...");
|
2001-04-19 14:21:46 +02:00
|
|
|
retry++;
|
|
|
|
sleep(5);
|
|
|
|
}
|
2008-04-18 18:26:05 +02:00
|
|
|
claws_unlink(lockfile);
|
2001-04-19 14:21:46 +02:00
|
|
|
g_free(lockfile);
|
|
|
|
} else if (type == LOCK_FLOCK) {
|
|
|
|
gint lockfd;
|
2006-06-15 19:03:17 +02:00
|
|
|
gboolean fcntled = FALSE;
|
2006-06-28 18:22:41 +02:00
|
|
|
#if HAVE_FCNTL_H && !defined(G_OS_WIN32)
|
2006-06-03 08:43:39 +02:00
|
|
|
struct flock fl;
|
|
|
|
fl.l_type = F_WRLCK;
|
|
|
|
fl.l_whence = SEEK_SET;
|
|
|
|
fl.l_start = 0;
|
|
|
|
fl.l_len = 0;
|
|
|
|
#endif
|
2001-04-19 14:21:46 +02:00
|
|
|
|
|
|
|
#if HAVE_FLOCK
|
2009-01-17 17:46:23 +01:00
|
|
|
if ((lockfd = g_open(base, O_RDWR, 0)) < 0) {
|
2001-04-19 14:21:46 +02:00
|
|
|
#else
|
2009-01-17 17:46:23 +01:00
|
|
|
if ((lockfd = g_open(base, O_RDWR, 0)) < 0) {
|
2001-04-19 14:21:46 +02:00
|
|
|
#endif
|
|
|
|
FILE_OP_ERROR(base, "open");
|
|
|
|
return -1;
|
|
|
|
}
|
2006-06-03 08:43:39 +02:00
|
|
|
|
2006-06-28 18:22:41 +02:00
|
|
|
#if HAVE_FCNTL_H && !defined(G_OS_WIN32)
|
2006-06-03 08:43:39 +02:00
|
|
|
if (fcntl(lockfd, F_SETLK, &fl) == -1) {
|
2015-05-18 21:22:37 +02:00
|
|
|
g_warning("can't fnctl %s (%s)", base, g_strerror(errno));
|
2014-06-06 13:38:18 +02:00
|
|
|
close(lockfd);
|
2006-06-03 08:43:39 +02:00
|
|
|
return -1;
|
2006-06-15 19:03:17 +02:00
|
|
|
} else {
|
|
|
|
fcntled = TRUE;
|
2006-06-03 08:43:39 +02:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2001-04-19 14:21:46 +02:00
|
|
|
#if HAVE_FLOCK
|
2006-06-15 19:03:17 +02:00
|
|
|
if (flock(lockfd, LOCK_EX|LOCK_NB) < 0 && !fcntled) {
|
2001-04-19 14:21:46 +02:00
|
|
|
perror("flock");
|
|
|
|
#else
|
|
|
|
#if HAVE_LOCKF
|
2006-06-15 19:03:17 +02:00
|
|
|
if (lockf(lockfd, F_TLOCK, 0) < 0 && !fcntled) {
|
2001-04-19 14:21:46 +02:00
|
|
|
perror("lockf");
|
|
|
|
#else
|
|
|
|
{
|
|
|
|
#endif
|
|
|
|
#endif /* HAVE_FLOCK */
|
2015-09-23 23:24:14 +02:00
|
|
|
g_warning("can't lock %s", base);
|
2001-04-19 14:21:46 +02:00
|
|
|
if (close(lockfd) < 0)
|
|
|
|
perror("close");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
retval = lockfd;
|
|
|
|
} else {
|
2015-09-23 23:24:14 +02:00
|
|
|
g_warning("invalid lock type");
|
2001-04-19 14:21:46 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return retval;
|
2005-08-19 11:30:30 +02:00
|
|
|
#else
|
|
|
|
return -1;
|
|
|
|
#endif /* G_OS_UNIX */
|
2001-04-19 14:21:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
gint unlock_mbox(const gchar *base, gint fd, LockType type)
|
|
|
|
{
|
|
|
|
if (type == LOCK_FILE) {
|
|
|
|
gchar *lockfile;
|
|
|
|
|
|
|
|
lockfile = g_strconcat(base, ".lock", NULL);
|
2008-04-18 18:26:05 +02:00
|
|
|
if (claws_unlink(lockfile) < 0) {
|
2001-04-19 14:21:46 +02:00
|
|
|
FILE_OP_ERROR(lockfile, "unlink");
|
|
|
|
g_free(lockfile);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
g_free(lockfile);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
} else if (type == LOCK_FLOCK) {
|
2006-06-28 18:22:41 +02:00
|
|
|
#if HAVE_FCNTL_H && !defined(G_OS_WIN32)
|
2016-11-24 20:13:10 +01:00
|
|
|
gboolean fcntled = FALSE;
|
2006-06-03 08:43:39 +02:00
|
|
|
struct flock fl;
|
|
|
|
fl.l_type = F_UNLCK;
|
|
|
|
fl.l_whence = SEEK_SET;
|
|
|
|
fl.l_start = 0;
|
|
|
|
fl.l_len = 0;
|
|
|
|
|
|
|
|
if (fcntl(fd, F_SETLK, &fl) == -1) {
|
|
|
|
g_warning("can't fnctl %s", base);
|
2006-06-15 19:03:17 +02:00
|
|
|
} else {
|
|
|
|
fcntled = TRUE;
|
2006-06-03 08:43:39 +02:00
|
|
|
}
|
|
|
|
#endif
|
2001-04-19 14:21:46 +02:00
|
|
|
#if HAVE_FLOCK
|
2006-06-15 19:03:17 +02:00
|
|
|
if (flock(fd, LOCK_UN) < 0 && !fcntled) {
|
2001-04-19 14:21:46 +02:00
|
|
|
perror("flock");
|
|
|
|
#else
|
|
|
|
#if HAVE_LOCKF
|
2006-06-15 19:03:17 +02:00
|
|
|
if (lockf(fd, F_ULOCK, 0) < 0 && !fcntled) {
|
2001-04-19 14:21:46 +02:00
|
|
|
perror("lockf");
|
|
|
|
#else
|
|
|
|
{
|
|
|
|
#endif
|
|
|
|
#endif /* HAVE_FLOCK */
|
2015-09-23 23:24:14 +02:00
|
|
|
g_warning("can't unlock %s", base);
|
2001-04-19 14:21:46 +02:00
|
|
|
if (close(fd) < 0)
|
|
|
|
perror("close");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (close(fd) < 0) {
|
|
|
|
perror("close");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-09-23 23:24:14 +02:00
|
|
|
g_warning("invalid lock type");
|
2001-04-19 14:21:46 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2007-02-08 19:14:23 +01:00
|
|
|
gint copy_mbox(gint srcfd, const gchar *dest)
|
2001-04-19 14:21:46 +02:00
|
|
|
{
|
2007-02-08 19:14:23 +01:00
|
|
|
FILE *dest_fp;
|
|
|
|
ssize_t n_read;
|
|
|
|
gchar buf[BUFSIZ];
|
|
|
|
gboolean err = FALSE;
|
|
|
|
int save_errno = 0;
|
|
|
|
|
|
|
|
if (srcfd < 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((dest_fp = g_fopen(dest, "wb")) == NULL) {
|
|
|
|
FILE_OP_ERROR(dest, "fopen");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (change_file_mode_rw(dest_fp, dest) < 0) {
|
|
|
|
FILE_OP_ERROR(dest, "chmod");
|
2015-09-23 23:24:14 +02:00
|
|
|
g_warning("can't change file mode");
|
2007-02-08 19:14:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
while ((n_read = read(srcfd, buf, sizeof(buf))) > 0) {
|
|
|
|
if (fwrite(buf, 1, n_read, dest_fp) < n_read) {
|
2015-09-23 23:24:14 +02:00
|
|
|
g_warning("writing to %s failed.", dest);
|
2007-02-08 19:14:23 +01:00
|
|
|
fclose(dest_fp);
|
2008-04-18 18:26:05 +02:00
|
|
|
claws_unlink(dest);
|
2007-02-08 19:14:23 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (save_errno != 0) {
|
2015-09-23 23:24:14 +02:00
|
|
|
g_warning("error %d reading mbox: %s", save_errno,
|
2015-05-18 21:22:37 +02:00
|
|
|
g_strerror(save_errno));
|
2007-02-08 19:14:23 +01:00
|
|
|
err = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fclose(dest_fp) == EOF) {
|
|
|
|
FILE_OP_ERROR(dest, "fclose");
|
|
|
|
err = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (err) {
|
2008-04-18 18:26:05 +02:00
|
|
|
claws_unlink(dest);
|
2007-02-08 19:14:23 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2001-04-19 14:21:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void empty_mbox(const gchar *mbox)
|
|
|
|
{
|
2004-10-19 09:28:20 +02:00
|
|
|
FILE *fp;
|
|
|
|
|
2005-08-19 11:30:30 +02:00
|
|
|
if ((fp = g_fopen(mbox, "wb")) == NULL) {
|
2004-10-19 09:28:20 +02:00
|
|
|
FILE_OP_ERROR(mbox, "fopen");
|
2015-09-23 23:24:14 +02:00
|
|
|
g_warning("can't truncate mailbox to zero.");
|
2004-10-19 09:28:20 +02:00
|
|
|
return;
|
2001-04-19 14:21:46 +02:00
|
|
|
}
|
2004-10-19 09:28:20 +02:00
|
|
|
fclose(fp);
|
2001-04-19 14:21:46 +02:00
|
|
|
}
|
|
|
|
|
2005-01-19 11:53:22 +01:00
|
|
|
gint export_list_to_mbox(GSList *mlist, const gchar *mbox)
|
2006-05-13 12:02:33 +02:00
|
|
|
/* return values: -2 skipped, -1 error, 0 OK */
|
2001-04-19 14:21:46 +02:00
|
|
|
{
|
|
|
|
GSList *cur;
|
|
|
|
MsgInfo *msginfo;
|
|
|
|
FILE *msg_fp;
|
|
|
|
FILE *mbox_fp;
|
|
|
|
gchar buf[BUFFSIZE];
|
2007-10-04 19:36:57 +02:00
|
|
|
int err = 0;
|
|
|
|
|
2006-06-26 18:37:01 +02:00
|
|
|
gint msgs = 1, total = g_slist_length(mlist);
|
2005-10-01 09:56:18 +02:00
|
|
|
if (g_file_test(mbox, G_FILE_TEST_EXISTS) == TRUE) {
|
|
|
|
if (alertpanel_full(_("Overwrite mbox file"),
|
2006-05-23 19:45:56 +02:00
|
|
|
_("This file already exists. Do you want to overwrite it?"),
|
|
|
|
GTK_STOCK_CANCEL, _("Overwrite"), NULL, FALSE,
|
|
|
|
NULL, ALERT_WARNING, G_ALERTDEFAULT)
|
|
|
|
!= G_ALERTALTERNATE) {
|
|
|
|
return -2;
|
|
|
|
}
|
2005-10-04 18:01:12 +02:00
|
|
|
}
|
2005-10-01 09:56:18 +02:00
|
|
|
|
2005-08-19 11:30:30 +02:00
|
|
|
if ((mbox_fp = g_fopen(mbox, "wb")) == NULL) {
|
2001-04-19 14:21:46 +02:00
|
|
|
FILE_OP_ERROR(mbox, "fopen");
|
2005-10-01 09:56:18 +02:00
|
|
|
alertpanel_error(_("Could not create mbox file:\n%s\n"), mbox);
|
2001-04-19 14:21:46 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2006-11-14 16:09:11 +01:00
|
|
|
#ifdef HAVE_FGETS_UNLOCKED
|
|
|
|
flockfile(mbox_fp);
|
|
|
|
#endif
|
|
|
|
|
2007-09-16 08:30:16 +02:00
|
|
|
statuswindow_print_all(_("Exporting to mbox..."));
|
2001-04-19 14:21:46 +02:00
|
|
|
for (cur = mlist; cur != NULL; cur = cur->next) {
|
2005-10-04 18:01:12 +02:00
|
|
|
int len;
|
2007-05-09 18:43:43 +02:00
|
|
|
gchar buft[BUFFSIZE];
|
2006-08-01 14:53:33 +02:00
|
|
|
msginfo = (MsgInfo *)cur->data;
|
2001-04-19 14:21:46 +02:00
|
|
|
|
|
|
|
msg_fp = procmsg_open_message(msginfo);
|
2001-04-27 22:27:24 +02:00
|
|
|
if (!msg_fp) {
|
|
|
|
continue;
|
|
|
|
}
|
2001-04-19 14:21:46 +02:00
|
|
|
|
2006-11-14 16:09:11 +01:00
|
|
|
#ifdef HAVE_FGETS_UNLOCKED
|
|
|
|
flockfile(msg_fp);
|
|
|
|
#endif
|
2001-04-19 14:21:46 +02:00
|
|
|
strncpy2(buf,
|
|
|
|
msginfo->from ? msginfo->from :
|
|
|
|
cur_account && cur_account->address ?
|
|
|
|
cur_account->address : "unknown",
|
|
|
|
sizeof(buf));
|
|
|
|
extract_address(buf);
|
|
|
|
|
2007-10-04 19:36:57 +02:00
|
|
|
if (fprintf(mbox_fp, "From %s %s",
|
|
|
|
buf, ctime_r(&msginfo->date_t, buft)) < 0) {
|
|
|
|
err = -1;
|
|
|
|
#ifdef HAVE_FGETS_UNLOCKED
|
|
|
|
funlockfile(msg_fp);
|
|
|
|
#endif
|
|
|
|
fclose(msg_fp);
|
|
|
|
goto out;
|
|
|
|
}
|
2001-04-19 14:21:46 +02:00
|
|
|
|
2005-10-04 18:01:12 +02:00
|
|
|
buf[0] = '\0';
|
|
|
|
|
|
|
|
/* write email to mboxrc */
|
2006-11-14 16:09:11 +01:00
|
|
|
while (SC_FGETS(buf, sizeof(buf), msg_fp) != NULL) {
|
2005-10-04 18:01:12 +02:00
|
|
|
/* quote any From, >From, >>From, etc., according to mbox format specs */
|
|
|
|
int offset;
|
|
|
|
|
|
|
|
offset = 0;
|
|
|
|
/* detect leading '>' char(s) */
|
|
|
|
while ((buf[offset] == '>')) {
|
|
|
|
offset++;
|
|
|
|
}
|
2007-10-04 19:36:57 +02:00
|
|
|
if (!strncmp(buf+offset, "From ", 5)) {
|
|
|
|
if (SC_FPUTC('>', mbox_fp) == EOF) {
|
|
|
|
err = -1;
|
|
|
|
#ifdef HAVE_FGETS_UNLOCKED
|
|
|
|
funlockfile(msg_fp);
|
|
|
|
#endif
|
|
|
|
fclose(msg_fp);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (SC_FPUTS(buf, mbox_fp) == EOF) {
|
|
|
|
err = -1;
|
|
|
|
#ifdef HAVE_FGETS_UNLOCKED
|
|
|
|
funlockfile(msg_fp);
|
|
|
|
#endif
|
|
|
|
fclose(msg_fp);
|
|
|
|
goto out;
|
|
|
|
}
|
2001-04-19 14:21:46 +02:00
|
|
|
}
|
2005-10-04 18:01:12 +02:00
|
|
|
|
|
|
|
/* force last line to end w/ a newline */
|
|
|
|
len = strlen(buf);
|
|
|
|
if (len > 0) {
|
|
|
|
len--;
|
2007-10-04 19:36:57 +02:00
|
|
|
if ((buf[len] != '\n') && (buf[len] != '\r')) {
|
|
|
|
if (SC_FPUTC('\n', mbox_fp) == EOF) {
|
|
|
|
err = -1;
|
|
|
|
#ifdef HAVE_FGETS_UNLOCKED
|
|
|
|
funlockfile(msg_fp);
|
|
|
|
#endif
|
|
|
|
fclose(msg_fp);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
}
|
2005-10-04 18:01:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* add a trailing empty line */
|
2007-10-04 19:36:57 +02:00
|
|
|
if (SC_FPUTC('\n', mbox_fp) == EOF) {
|
|
|
|
err = -1;
|
|
|
|
#ifdef HAVE_FGETS_UNLOCKED
|
|
|
|
funlockfile(msg_fp);
|
|
|
|
#endif
|
|
|
|
fclose(msg_fp);
|
|
|
|
goto out;
|
|
|
|
}
|
2001-04-19 14:21:46 +02:00
|
|
|
|
2006-11-14 16:09:11 +01:00
|
|
|
#ifdef HAVE_FGETS_UNLOCKED
|
|
|
|
funlockfile(msg_fp);
|
|
|
|
#endif
|
2001-04-19 14:21:46 +02:00
|
|
|
fclose(msg_fp);
|
2006-06-26 18:37:01 +02:00
|
|
|
statusbar_progress_all(msgs++,total, 500);
|
|
|
|
if (msgs%500 == 0)
|
|
|
|
GTK_EVENTS_FLUSH();
|
2001-04-19 14:21:46 +02:00
|
|
|
}
|
2007-10-04 19:36:57 +02:00
|
|
|
|
|
|
|
out:
|
2006-06-26 18:37:01 +02:00
|
|
|
statusbar_progress_all(0,0,0);
|
2007-09-16 08:30:16 +02:00
|
|
|
statuswindow_pop_all();
|
2006-06-26 18:37:01 +02:00
|
|
|
|
2006-11-14 16:09:11 +01:00
|
|
|
#ifdef HAVE_FGETS_UNLOCKED
|
|
|
|
funlockfile(mbox_fp);
|
|
|
|
#endif
|
2005-01-19 11:53:22 +01:00
|
|
|
fclose(mbox_fp);
|
2001-04-19 14:21:46 +02:00
|
|
|
|
2007-10-04 19:36:57 +02:00
|
|
|
return err;
|
2005-01-19 11:53:22 +01:00
|
|
|
}
|
2001-04-19 14:21:46 +02:00
|
|
|
|
2005-01-19 11:53:22 +01:00
|
|
|
/* read all messages in SRC, and store them into one MBOX file. */
|
2006-05-13 12:02:33 +02:00
|
|
|
/* return values: -2 skipped, -1 error, 0 OK */
|
2005-01-19 11:53:22 +01:00
|
|
|
gint export_to_mbox(FolderItem *src, const gchar *mbox)
|
|
|
|
{
|
|
|
|
GSList *mlist;
|
2006-05-13 12:02:33 +02:00
|
|
|
gint ret;
|
2005-01-19 11:53:22 +01:00
|
|
|
|
2009-02-23 17:55:51 +01:00
|
|
|
cm_return_val_if_fail(src != NULL, -1);
|
|
|
|
cm_return_val_if_fail(src->folder != NULL, -1);
|
|
|
|
cm_return_val_if_fail(mbox != NULL, -1);
|
2005-01-19 11:53:22 +01:00
|
|
|
|
|
|
|
debug_print("Exporting messages from %s into %s...\n",
|
|
|
|
src->path, mbox);
|
|
|
|
|
|
|
|
mlist = folder_item_get_msg_list(src);
|
|
|
|
|
2006-11-14 16:09:11 +01:00
|
|
|
folder_item_update_freeze();
|
2006-05-13 12:02:33 +02:00
|
|
|
ret = export_list_to_mbox(mlist, mbox);
|
2006-11-14 16:09:11 +01:00
|
|
|
folder_item_update_thaw();
|
2005-01-19 11:53:22 +01:00
|
|
|
|
2005-08-02 09:26:13 +02:00
|
|
|
procmsg_msg_list_free(mlist);
|
2001-04-19 14:21:46 +02:00
|
|
|
|
2006-05-13 12:02:33 +02:00
|
|
|
return ret;
|
2001-04-19 14:21:46 +02:00
|
|
|
}
|