claws-mail/src/procmsg.c

1588 lines
39 KiB
C
Raw Normal View History

2001-04-19 14:21:46 +02:00
/*
* Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
2004-05-22 09:27:30 +02:00
* Copyright (C) 1999-2004 Hiroyuki Yamamoto
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
* the Free Software Foundation; either version 2 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, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include "defs.h"
#include <glib.h>
#include <stdio.h>
#include <stdlib.h>
2003-04-18 11:10:32 +02:00
#include <ctype.h>
2001-04-19 14:21:46 +02:00
#include "intl.h"
#include "main.h"
#include "utils.h"
#include "procmsg.h"
#include "procheader.h"
2003-03-20 12:00:55 +01:00
#include "send_message.h"
2001-04-19 14:21:46 +02:00
#include "procmime.h"
#include "statusbar.h"
2003-04-08 11:48:12 +02:00
#include "prefs_filtering.h"
#include "filtering.h"
2001-04-19 14:21:46 +02:00
#include "folder.h"
#include "prefs_common.h"
#include "account.h"
#include "alertpanel.h"
#include "news.h"
#include "hooks.h"
#include "msgcache.h"
#include "partial_download.h"
2001-04-19 14:21:46 +02:00
GHashTable *procmsg_msg_hash_table_create(GSList *mlist)
{
GHashTable *msg_table;
if (mlist == NULL) return NULL;
msg_table = g_hash_table_new(NULL, g_direct_equal);
procmsg_msg_hash_table_append(msg_table, mlist);
return msg_table;
}
void procmsg_msg_hash_table_append(GHashTable *msg_table, GSList *mlist)
{
GSList *cur;
MsgInfo *msginfo;
if (msg_table == NULL || mlist == NULL) return;
for (cur = mlist; cur != NULL; cur = cur->next) {
msginfo = (MsgInfo *)cur->data;
g_hash_table_insert(msg_table,
GUINT_TO_POINTER(msginfo->msgnum),
msginfo);
}
}
GHashTable *procmsg_to_folder_hash_table_create(GSList *mlist)
{
GHashTable *msg_table;
GSList *cur;
MsgInfo *msginfo;
if (mlist == NULL) return NULL;
msg_table = g_hash_table_new(NULL, g_direct_equal);
for (cur = mlist; cur != NULL; cur = cur->next) {
msginfo = (MsgInfo *)cur->data;
g_hash_table_insert(msg_table, msginfo->to_folder, msginfo);
}
return msg_table;
}
2002-07-27 11:58:16 +02:00
gint procmsg_get_last_num_in_msg_list(GSList *mlist)
2001-04-19 14:21:46 +02:00
{
GSList *cur;
MsgInfo *msginfo;
gint last = 0;
for (cur = mlist; cur != NULL; cur = cur->next) {
msginfo = (MsgInfo *)cur->data;
if (msginfo && msginfo->msgnum > last)
last = msginfo->msgnum;
}
return last;
}
2001-06-16 17:08:14 +02:00
void procmsg_msg_list_free(GSList *mlist)
{
2001-06-17 11:52:09 +02:00
GSList *cur;
2001-06-16 17:08:14 +02:00
MsgInfo *msginfo;
2001-06-17 11:52:09 +02:00
for (cur = mlist; cur != NULL; cur = cur->next) {
msginfo = (MsgInfo *)cur->data;
2001-06-16 17:08:14 +02:00
procmsg_msginfo_free(msginfo);
}
g_slist_free(mlist);
}
2001-04-19 14:21:46 +02:00
struct MarkSum {
gint *new_msgs;
gint *unread_msgs;
gint *total_msgs;
2002-02-21 17:31:30 +01:00
gint *min;
gint *max;
gint first;
2001-04-19 14:21:46 +02:00
};
/* CLAWS subject threading:
2003-08-14 21:56:04 +02:00
in the first round it inserts subject lines in a
relation (subject <-> node)
the second round finishes the threads by attaching
2003-08-14 21:56:04 +02:00
matching subject lines to the one found in the
relation. will use the oldest node with the same
subject that is not more then thread_by_subject_max_age
days old (see subject_relation_lookup)
*/
static void subject_relation_insert(GRelation *relation, GNode *node)
{
gchar *subject;
MsgInfo *msginfo;
g_return_if_fail(relation != NULL);
g_return_if_fail(node != NULL);
msginfo = (MsgInfo *) node->data;
g_return_if_fail(msginfo != NULL);
subject = msginfo->subject;
if (subject == NULL)
return;
subject += subject_get_prefix_length(subject);
g_relation_insert(relation, subject, node);
}
static GNode *subject_relation_lookup(GRelation *relation, MsgInfo *msginfo)
{
gchar *subject;
GTuples *tuples;
GNode *node = NULL;
gint prefix_length;
g_return_val_if_fail(relation != NULL, NULL);
subject = msginfo->subject;
if (subject == NULL)
return NULL;
prefix_length = subject_get_prefix_length(subject);
if (prefix_length <= 0)
return NULL;
subject += prefix_length;
tuples = g_relation_select(relation, subject, 0);
if (tuples == NULL)
return NULL;
if (tuples->len > 0) {
int i;
GNode *relation_node;
MsgInfo *relation_msginfo = NULL, *best_msginfo = NULL;
gboolean match;
/* check all nodes with the same subject to find the best parent */
for (i = 0; i < tuples->len; i++) {
relation_node = (GNode *) g_tuples_index(tuples, i, 1);
relation_msginfo = (MsgInfo *) relation_node->data;
match = FALSE;
/* best node should be the oldest in the found nodes */
/* parent node must not be older then msginfo */
if ((relation_msginfo->date_t < msginfo->date_t) &&
((best_msginfo == NULL) ||
(best_msginfo->date_t > relation_msginfo->date_t)))
match = TRUE;
/* parent node must not be more then thread_by_subject_max_age
days older then msginfo */
if (abs(difftime(msginfo->date_t, relation_msginfo->date_t)) >
prefs_common.thread_by_subject_max_age * 3600 * 24)
match = FALSE;
/* can add new tests for all matching
nodes found by subject */
if (match) {
node = relation_node;
best_msginfo = relation_msginfo;
}
}
}
g_tuples_destroy(tuples);
return node;
}
2001-10-17 11:25:12 +02:00
/* return the reversed thread tree */
GNode *procmsg_get_thread_tree(GSList *mlist)
{
2004-02-21 12:01:01 +01:00
GNode *root, *parent, *node, *next;
2001-11-06 00:42:00 +01:00
GHashTable *msgid_table;
GRelation *subject_relation;
2001-10-17 11:25:12 +02:00
MsgInfo *msginfo;
const gchar *msgid;
root = g_node_new(NULL);
2001-11-06 00:42:00 +01:00
msgid_table = g_hash_table_new(g_str_hash, g_str_equal);
subject_relation = g_relation_new(2);
g_relation_index(subject_relation, 0, g_str_hash, g_str_equal);
2001-10-17 11:25:12 +02:00
for (; mlist != NULL; mlist = mlist->next) {
msginfo = (MsgInfo *)mlist->data;
parent = root;
if (msginfo->inreplyto) {
2001-11-06 00:42:00 +01:00
parent = g_hash_table_lookup(msgid_table, msginfo->inreplyto);
2001-10-18 22:00:59 +02:00
if (parent == NULL) {
2001-10-17 11:25:12 +02:00
parent = root;
2001-10-18 22:00:59 +02:00
}
2001-10-17 11:25:12 +02:00
}
node = g_node_insert_data_before
(parent, parent == root ? parent->children : NULL,
msginfo);
if ((msgid = msginfo->msgid) && g_hash_table_lookup(msgid_table, msgid) == NULL)
2001-11-06 00:42:00 +01:00
g_hash_table_insert(msgid_table, (gchar *)msgid, node);
/* CLAWS: add subject to relation (without prefix) */
2003-02-04 21:57:27 +01:00
if (prefs_common.thread_by_subject) {
subject_relation_insert(subject_relation, node);
}
2001-10-17 11:25:12 +02:00
}
/* complete the unfinished threads */
for (node = root->children; node != NULL; ) {
parent = NULL;
2001-10-17 11:25:12 +02:00
next = node->next;
msginfo = (MsgInfo *)node->data;
if (msginfo->inreplyto) {
2001-11-06 00:42:00 +01:00
parent = g_hash_table_lookup(msgid_table, msginfo->inreplyto);
/* node should not be the parent, and node should not
be an ancestor of parent (circular reference) */
if (parent && parent != node &&
!g_node_is_ancestor(node, parent)) {
g_node_unlink(node);
g_node_insert_before
(parent, parent->children, node);
}
2001-10-17 11:25:12 +02:00
}
node = next;
}
2003-02-04 21:57:27 +01:00
if (prefs_common.thread_by_subject) {
2004-02-21 12:01:01 +01:00
for (node = root->children; node && node != NULL;) {
next = node->next;
2003-02-04 21:57:27 +01:00
msginfo = (MsgInfo *) node->data;
2004-02-21 12:01:01 +01:00
parent = subject_relation_lookup(subject_relation, msginfo);
2004-02-21 12:01:01 +01:00
/* the node may already be threaded by IN-REPLY-TO, so go up
* in the tree to
find the parent node */
if (parent != NULL) {
if (g_node_is_ancestor(node, parent))
parent = NULL;
if (parent == node)
parent = NULL;
}
if (parent) {
g_node_unlink(node);
g_node_append(parent, node);
}
2003-02-04 21:57:27 +01:00
node = next;
}
}
g_relation_destroy(subject_relation);
2001-11-06 00:42:00 +01:00
g_hash_table_destroy(msgid_table);
2001-10-17 11:25:12 +02:00
return root;
}
2001-04-19 14:21:46 +02:00
void procmsg_move_messages(GSList *mlist)
{
GSList *cur, *movelist = NULL;
MsgInfo *msginfo;
FolderItem *dest = NULL;
if (!mlist) return;
folder_item_update_freeze();
2001-04-19 14:21:46 +02:00
for (cur = mlist; cur != NULL; cur = cur->next) {
msginfo = (MsgInfo *)cur->data;
if (!dest) {
dest = msginfo->to_folder;
movelist = g_slist_append(movelist, msginfo);
} else if (dest == msginfo->to_folder) {
movelist = g_slist_append(movelist, msginfo);
} else {
2003-08-05 11:01:01 +02:00
folder_item_move_msgs(dest, movelist);
2001-04-19 14:21:46 +02:00
g_slist_free(movelist);
movelist = NULL;
dest = msginfo->to_folder;
movelist = g_slist_append(movelist, msginfo);
}
procmsg_msginfo_set_to_folder(msginfo, NULL);
2001-04-19 14:21:46 +02:00
}
if (movelist) {
2003-08-05 11:01:01 +02:00
folder_item_move_msgs(dest, movelist);
2001-04-19 14:21:46 +02:00
g_slist_free(movelist);
}
folder_item_update_thaw();
2001-04-19 14:21:46 +02:00
}
void procmsg_copy_messages(GSList *mlist)
{
GSList *cur, *copylist = NULL;
MsgInfo *msginfo;
FolderItem *dest = NULL;
if (!mlist) return;
folder_item_update_freeze();
2001-04-19 14:21:46 +02:00
for (cur = mlist; cur != NULL; cur = cur->next) {
msginfo = (MsgInfo *)cur->data;
if (!dest) {
dest = msginfo->to_folder;
copylist = g_slist_append(copylist, msginfo);
} else if (dest == msginfo->to_folder) {
copylist = g_slist_append(copylist, msginfo);
} else {
2003-08-05 11:01:01 +02:00
folder_item_copy_msgs(dest, copylist);
2001-04-19 14:21:46 +02:00
g_slist_free(copylist);
copylist = NULL;
dest = msginfo->to_folder;
copylist = g_slist_append(copylist, msginfo);
}
procmsg_msginfo_set_to_folder(msginfo, NULL);
2001-04-19 14:21:46 +02:00
}
if (copylist) {
2003-08-05 11:01:01 +02:00
folder_item_copy_msgs(dest, copylist);
2001-04-19 14:21:46 +02:00
g_slist_free(copylist);
}
folder_item_update_thaw();
2001-04-19 14:21:46 +02:00
}
gchar *procmsg_get_message_file_path(MsgInfo *msginfo)
{
gchar *file;
2001-04-19 14:21:46 +02:00
g_return_val_if_fail(msginfo != NULL, NULL);
if (msginfo->plaintext_file)
file = g_strdup(msginfo->plaintext_file);
else {
file = folder_item_fetch_msg(msginfo->folder, msginfo->msgnum);
2001-04-19 14:21:46 +02:00
}
return file;
}
gchar *procmsg_get_message_file(MsgInfo *msginfo)
{
gchar *filename = NULL;
g_return_val_if_fail(msginfo != NULL, NULL);
filename = folder_item_fetch_msg(msginfo->folder, msginfo->msgnum);
if (!filename)
2004-01-12 22:28:31 +01:00
debug_print("can't fetch message %d\n", msginfo->msgnum);
2001-04-19 14:21:46 +02:00
return filename;
}
GSList *procmsg_get_message_file_list(GSList *mlist)
{
GSList *file_list = NULL;
MsgInfo *msginfo;
MsgFileInfo *fileinfo;
gchar *file;
while (mlist != NULL) {
msginfo = (MsgInfo *)mlist->data;
file = procmsg_get_message_file(msginfo);
if (!file) {
procmsg_message_file_list_free(file_list);
return NULL;
}
fileinfo = g_new(MsgFileInfo, 1);
fileinfo->msginfo = procmsg_msginfo_new_ref(msginfo);
fileinfo->file = file;
fileinfo->flags = g_new(MsgFlags, 1);
*fileinfo->flags = msginfo->flags;
file_list = g_slist_prepend(file_list, fileinfo);
mlist = mlist->next;
}
file_list = g_slist_reverse(file_list);
return file_list;
}
2003-07-27 16:59:35 +02:00
void procmsg_message_file_list_free(MsgInfoList *file_list)
{
GSList *cur;
MsgFileInfo *fileinfo;
for (cur = file_list; cur != NULL; cur = cur->next) {
fileinfo = (MsgFileInfo *)cur->data;
procmsg_msginfo_free(fileinfo->msginfo);
2003-07-27 16:59:35 +02:00
g_free(fileinfo->file);
g_free(fileinfo->flags);
g_free(fileinfo);
}
g_slist_free(file_list);
}
2001-04-19 14:21:46 +02:00
FILE *procmsg_open_message(MsgInfo *msginfo)
{
FILE *fp;
gchar *file;
g_return_val_if_fail(msginfo != NULL, NULL);
2002-02-12 15:10:29 +01:00
file = procmsg_get_message_file_path(msginfo);
2001-04-19 14:21:46 +02:00
g_return_val_if_fail(file != NULL, NULL);
2002-02-12 15:10:29 +01:00
if (!is_file_exist(file)) {
g_free(file);
file = procmsg_get_message_file(msginfo);
2004-01-12 22:28:31 +01:00
if (!file)
return NULL;
2002-02-12 15:10:29 +01:00
}
2002-03-14 11:17:32 +01:00
if ((fp = fopen(file, "rb")) == NULL) {
2001-04-19 14:21:46 +02:00
FILE_OP_ERROR(file, "fopen");
g_free(file);
return NULL;
}
g_free(file);
if (MSG_IS_QUEUED(msginfo->flags) || MSG_IS_DRAFT(msginfo->flags)) {
2001-04-19 14:21:46 +02:00
gchar buf[BUFFSIZE];
while (fgets(buf, sizeof(buf), fp) != NULL)
if (buf[0] == '\r' || buf[0] == '\n') break;
}
return fp;
}
gboolean procmsg_msg_exist(MsgInfo *msginfo)
{
gchar *path;
gboolean ret;
if (!msginfo) return FALSE;
2001-08-30 14:59:38 +02:00
path = folder_item_get_path(msginfo->folder);
2001-04-19 14:21:46 +02:00
change_dir(path);
ret = !folder_item_is_msg_changed(msginfo->folder, msginfo);
g_free(path);
return ret;
}
2003-04-08 11:48:12 +02:00
void procmsg_get_filter_keyword(MsgInfo *msginfo, gchar **header, gchar **key,
PrefsFilterType type)
{
2003-04-15 13:43:13 +02:00
static HeaderEntry hentry[] = {{"X-BeenThere:", NULL, TRUE},
{"X-ML-Name:", NULL, TRUE},
{"X-List:", NULL, TRUE},
{"X-Mailing-list:", NULL, TRUE},
{"List-Id:", NULL, TRUE},
2003-04-18 11:10:32 +02:00
{"X-Sequence:", NULL, TRUE},
{NULL, NULL, FALSE}};
2003-04-08 11:48:12 +02:00
enum
{
H_X_BEENTHERE = 0,
H_X_ML_NAME = 1,
H_X_LIST = 2,
H_X_MAILING_LIST = 3,
2003-04-18 11:10:32 +02:00
H_LIST_ID = 4,
H_X_SEQUENCE = 5
2003-04-08 11:48:12 +02:00
};
FILE *fp;
g_return_if_fail(msginfo != NULL);
g_return_if_fail(header != NULL);
g_return_if_fail(key != NULL);
*header = NULL;
*key = NULL;
switch (type) {
case FILTER_BY_NONE:
return;
case FILTER_BY_AUTO:
if ((fp = procmsg_open_message(msginfo)) == NULL)
return;
procheader_get_header_fields(fp, hentry);
fclose(fp);
2003-04-18 11:10:32 +02:00
#define SET_FILTER_KEY(hstr, idx) \
{ \
*header = g_strdup(hstr); \
*key = hentry[idx].body; \
hentry[idx].body = NULL; \
}
2003-04-08 11:48:12 +02:00
if (hentry[H_X_BEENTHERE].body != NULL) {
2003-04-18 11:10:32 +02:00
SET_FILTER_KEY("header \"X-BeenThere\"", H_X_BEENTHERE);
2003-04-08 11:48:12 +02:00
} else if (hentry[H_X_ML_NAME].body != NULL) {
2003-04-18 11:10:32 +02:00
SET_FILTER_KEY("header \"X-ML-Name\"", H_X_ML_NAME);
2003-04-08 11:48:12 +02:00
} else if (hentry[H_X_LIST].body != NULL) {
2003-04-18 11:10:32 +02:00
SET_FILTER_KEY("header \"X-List\"", H_X_LIST);
2003-04-08 11:48:12 +02:00
} else if (hentry[H_X_MAILING_LIST].body != NULL) {
2003-04-18 11:10:32 +02:00
SET_FILTER_KEY("header \"X-Mailing-List\"", H_X_MAILING_LIST);
2003-04-08 11:48:12 +02:00
} else if (hentry[H_LIST_ID].body != NULL) {
2003-04-18 11:10:32 +02:00
SET_FILTER_KEY("header \"List-Id\"", H_LIST_ID);
2003-04-15 13:43:13 +02:00
extract_list_id_str(*key);
2003-04-18 11:10:32 +02:00
} else if (hentry[H_X_SEQUENCE].body != NULL) {
2004-02-21 12:01:01 +01:00
guchar *p;
2003-04-18 11:10:32 +02:00
SET_FILTER_KEY("X-Sequence", H_X_SEQUENCE);
p = *key;
while (*p != '\0') {
while (*p != '\0' && !isspace(*p)) p++;
while (isspace(*p)) p++;
if (isdigit(*p)) {
*p = '\0';
break;
}
}
g_strstrip(*key);
2003-04-08 11:48:12 +02:00
} else if (msginfo->subject) {
*header = g_strdup("subject");
*key = g_strdup(msginfo->subject);
}
2003-04-18 11:10:32 +02:00
#undef SET_FILTER_KEY
2003-04-08 11:48:12 +02:00
g_free(hentry[H_X_BEENTHERE].body);
hentry[H_X_BEENTHERE].body = NULL;
g_free(hentry[H_X_ML_NAME].body);
hentry[H_X_ML_NAME].body = NULL;
g_free(hentry[H_X_LIST].body);
hentry[H_X_LIST].body = NULL;
g_free(hentry[H_X_MAILING_LIST].body);
hentry[H_X_MAILING_LIST].body = NULL;
g_free(hentry[H_LIST_ID].body);
hentry[H_LIST_ID].body = NULL;
break;
case FILTER_BY_FROM:
*header = g_strdup("from");
*key = g_strdup(msginfo->from);
break;
case FILTER_BY_TO:
*header = g_strdup("to");
*key = g_strdup(msginfo->to);
break;
case FILTER_BY_SUBJECT:
*header = g_strdup("subject");
*key = g_strdup(msginfo->subject);
break;
default:
break;
}
}
2001-04-19 14:21:46 +02:00
void procmsg_empty_trash(void)
{
FolderItem *trash;
GList *cur;
for (cur = folder_get_list(); cur != NULL; cur = cur->next) {
trash = FOLDER(cur->data)->trash;
if (trash && trash->total_msgs > 0) {
GSList *mlist = folder_item_get_msg_list(trash);
GSList *cur;
for (cur = mlist ; cur != NULL ; cur = cur->next) {
MsgInfo * msginfo = (MsgInfo *) cur->data;
partial_mark_for_delete(msginfo);
procmsg_msginfo_free(msginfo);
}
2001-12-18 08:36:38 +01:00
folder_item_remove_all_msg(trash);
}
2001-04-19 14:21:46 +02:00
}
}
/*!
*\brief Send messages in queue
*
*\param queue Queue folder to process
*\param save_msgs Unused
*
*\return Number of messages sent, negative if an error occurred
* positive if no error occurred
*/
2002-04-03 10:58:44 +02:00
gint procmsg_send_queue(FolderItem *queue, gboolean save_msgs)
2001-04-19 14:21:46 +02:00
{
gint ret = 1, count = 0;
2002-06-30 01:33:42 +02:00
GSList *list, *elem;
2001-04-19 14:21:46 +02:00
2002-04-03 10:58:44 +02:00
if (!queue)
queue = folder_get_default_queue();
2001-04-19 14:21:46 +02:00
g_return_val_if_fail(queue != NULL, -1);
2002-04-03 10:58:44 +02:00
2001-04-19 14:21:46 +02:00
folder_item_scan(queue);
2002-06-30 01:33:42 +02:00
list = folder_item_get_msg_list(queue);
2001-04-19 14:21:46 +02:00
for (elem = list; elem != NULL; elem = elem->next) {
2001-04-19 14:21:46 +02:00
gchar *file;
2002-06-30 01:33:42 +02:00
MsgInfo *msginfo;
msginfo = (MsgInfo *)(elem->data);
if (!MSG_IS_LOCKED(msginfo->flags)) {
file = folder_item_fetch_msg(queue, msginfo->msgnum);
if (file) {
if (procmsg_send_message_queue(file) < 0) {
g_warning("Sending queued message %d failed.\n",
msginfo->msgnum);
ret = -1;
} else {
/* CLAWS:
* We save in procmsg_send_message_queue because
* we need the destination folder from the queue
* header
if (save_msgs)
procmsg_save_to_outbox
(queue->folder->outbox,
file, TRUE);
*/
count++;
folder_item_remove_msg(queue, msginfo->msgnum);
}
g_free(file);
2002-03-21 08:22:47 +01:00
}
2001-04-19 14:21:46 +02:00
}
/* FIXME: supposedly if only one message is locked, and queue
* is being flushed, the following free says something like
* "freeing msg ## in folder (nil)". */
2002-06-30 01:33:42 +02:00
procmsg_msginfo_free(msginfo);
2001-04-19 14:21:46 +02:00
}
return ret * count;
2001-04-19 14:21:46 +02:00
}
gint procmsg_remove_special_headers(const gchar *in, const gchar *out)
{
FILE *fp, *outfp;
gchar buf[BUFFSIZE];
if ((fp = fopen(in, "rb")) == NULL) {
FILE_OP_ERROR(in, "fopen");
return -1;
}
if ((outfp = fopen(out, "wb")) == NULL) {
FILE_OP_ERROR(out, "fopen");
fclose(fp);
return -1;
}
while (fgets(buf, sizeof(buf), fp) != NULL)
if (buf[0] == '\r' || buf[0] == '\n') break;
while (fgets(buf, sizeof(buf), fp) != NULL)
fputs(buf, outfp);
fclose(outfp);
fclose(fp);
return 0;
2001-04-19 14:21:46 +02:00
}
2002-03-21 08:22:47 +01:00
gint procmsg_save_to_outbox(FolderItem *outbox, const gchar *file,
gboolean is_queued)
{
gint num;
MsgInfo *msginfo, *tmp_msginfo;
2003-08-08 11:04:41 +02:00
MsgFlags flag = {0, 0};
2002-03-21 08:22:47 +01:00
2002-08-06 10:38:29 +02:00
debug_print("saving sent message...\n");
2002-03-21 08:22:47 +01:00
if (!outbox)
outbox = folder_get_default_outbox();
g_return_val_if_fail(outbox != NULL, -1);
/* remove queueing headers */
if (is_queued) {
gchar tmp[MAXPATHLEN + 1];
g_snprintf(tmp, sizeof(tmp), "%s%ctmpmsg.out.%08x",
get_rc_dir(), G_DIR_SEPARATOR, (guint)random());
if (procmsg_remove_special_headers(file, tmp) !=0)
2002-03-21 08:22:47 +01:00
return -1;
2002-08-06 10:38:29 +02:00
folder_item_scan(outbox);
2003-08-08 11:04:41 +02:00
if ((num = folder_item_add_msg(outbox, tmp, &flag, TRUE)) < 0) {
2002-08-06 10:38:29 +02:00
g_warning("can't save message\n");
unlink(tmp);
return -1;
}
} else {
folder_item_scan(outbox);
2003-08-08 11:04:41 +02:00
if ((num = folder_item_add_msg
(outbox, file, &flag, FALSE)) < 0) {
2002-08-06 10:38:29 +02:00
g_warning("can't save message\n");
return -1;
2002-06-30 01:33:42 +02:00
}
2002-03-21 08:22:47 +01:00
return -1;
}
msginfo = folder_item_get_msginfo(outbox, num); /* refcnt++ */
tmp_msginfo = procmsg_msginfo_get_full_info(msginfo); /* refcnt++ */
if (msginfo != NULL) {
procmsg_msginfo_unset_flags(msginfo, ~0, 0);
procmsg_msginfo_free(msginfo); /* refcnt-- */
/* tmp_msginfo == msginfo */
if (tmp_msginfo && (msginfo->dispositionnotificationto ||
msginfo->returnreceiptto)) {
procmsg_msginfo_set_flags(msginfo, MSG_RETRCPT_SENT, 0);
procmsg_msginfo_free(msginfo); /* refcnt-- */
}
}
2002-03-21 08:22:47 +01:00
return 0;
}
2001-04-19 14:21:46 +02:00
void procmsg_print_message(MsgInfo *msginfo, const gchar *cmdline)
{
static const gchar *def_cmd = "lpr %s";
static guint id = 0;
gchar *prtmp;
FILE *tmpfp, *prfp;
gchar buf[1024];
gchar *p;
g_return_if_fail(msginfo);
2001-09-20 13:53:09 +02:00
if ((tmpfp = procmime_get_first_text_content(msginfo)) == NULL) {
g_warning("Can't get text part\n");
2001-04-19 14:21:46 +02:00
return;
}
prtmp = g_strdup_printf("%s%cprinttmp.%08x",
get_mime_tmp_dir(), G_DIR_SEPARATOR, id++);
2002-03-14 11:17:32 +01:00
if ((prfp = fopen(prtmp, "wb")) == NULL) {
2001-04-19 14:21:46 +02:00
FILE_OP_ERROR(prtmp, "fopen");
g_free(prtmp);
fclose(tmpfp);
return;
}
if (msginfo->date) fprintf(prfp, "Date: %s\n", msginfo->date);
if (msginfo->from) fprintf(prfp, "From: %s\n", msginfo->from);
if (msginfo->to) fprintf(prfp, "To: %s\n", msginfo->to);
if (msginfo->cc) fprintf(prfp, "Cc: %s\n", msginfo->cc);
2001-04-19 14:21:46 +02:00
if (msginfo->newsgroups)
fprintf(prfp, "Newsgroups: %s\n", msginfo->newsgroups);
if (msginfo->subject) fprintf(prfp, "Subject: %s\n", msginfo->subject);
fputc('\n', prfp);
while (fgets(buf, sizeof(buf), tmpfp) != NULL)
fputs(buf, prfp);
fclose(prfp);
fclose(tmpfp);
if (cmdline && (p = strchr(cmdline, '%')) && *(p + 1) == 's' &&
!strchr(p + 2, '%'))
g_snprintf(buf, sizeof(buf) - 1, cmdline, prtmp);
else {
if (cmdline)
g_warning("Print command line is invalid: `%s'\n",
2001-04-19 14:21:46 +02:00
cmdline);
g_snprintf(buf, sizeof(buf) - 1, def_cmd, prtmp);
}
g_free(prtmp);
g_strchomp(buf);
if (buf[strlen(buf) - 1] != '&') strcat(buf, "&");
system(buf);
}
2002-06-30 01:33:42 +02:00
MsgInfo *procmsg_msginfo_new_ref(MsgInfo *msginfo)
{
msginfo->refcnt++;
return msginfo;
}
MsgInfo *procmsg_msginfo_new(void)
2002-06-30 01:33:42 +02:00
{
MsgInfo *newmsginfo;
newmsginfo = g_new0(MsgInfo, 1);
newmsginfo->refcnt = 1;
return newmsginfo;
}
2001-04-19 14:21:46 +02:00
MsgInfo *procmsg_msginfo_copy(MsgInfo *msginfo)
{
MsgInfo *newmsginfo;
if (msginfo == NULL) return NULL;
newmsginfo = g_new0(MsgInfo, 1);
2002-06-30 01:33:42 +02:00
newmsginfo->refcnt = 1;
2001-04-19 14:21:46 +02:00
#define MEMBCOPY(mmb) newmsginfo->mmb = msginfo->mmb
#define MEMBDUP(mmb) newmsginfo->mmb = msginfo->mmb ? \
g_strdup(msginfo->mmb) : NULL
MEMBCOPY(msgnum);
MEMBCOPY(size);
MEMBCOPY(mtime);
MEMBCOPY(date_t);
2001-04-19 14:21:46 +02:00
MEMBCOPY(flags);
MEMBDUP(fromname);
MEMBDUP(date);
MEMBDUP(from);
MEMBDUP(to);
MEMBDUP(cc);
2001-04-19 14:21:46 +02:00
MEMBDUP(newsgroups);
MEMBDUP(subject);
MEMBDUP(msgid);
MEMBDUP(inreplyto);
2002-03-17 10:50:46 +01:00
MEMBDUP(xref);
2001-04-19 14:21:46 +02:00
MEMBCOPY(folder);
MEMBCOPY(to_folder);
MEMBDUP(xface);
2001-05-02 16:16:51 +02:00
MEMBDUP(dispositionnotificationto);
MEMBDUP(returnreceiptto);
2001-05-13 04:57:01 +02:00
MEMBDUP(references);
2001-04-19 14:21:46 +02:00
2001-05-06 06:27:28 +02:00
MEMBCOPY(score);
MEMBCOPY(threadscore);
MEMBDUP(plaintext_file);
2001-05-06 06:27:28 +02:00
2001-04-19 14:21:46 +02:00
return newmsginfo;
}
2002-10-04 17:35:49 +02:00
MsgInfo *procmsg_msginfo_get_full_info(MsgInfo *msginfo)
{
MsgInfo *full_msginfo;
gchar *file;
if (msginfo == NULL) return NULL;
file = procmsg_get_message_file(msginfo);
if (!file) {
g_warning("procmsg_msginfo_get_full_info(): can't get message file.\n");
return NULL;
}
full_msginfo = procheader_parse_file(file, msginfo->flags, TRUE, FALSE);
g_free(file);
if (!full_msginfo) return NULL;
2003-07-27 17:10:02 +02:00
/* CLAWS: make sure we add the missing members; see:
* procheader.c::procheader_get_headernames() */
if (!msginfo->xface)
msginfo->xface = g_strdup(full_msginfo->xface);
if (!msginfo->dispositionnotificationto)
msginfo->dispositionnotificationto =
g_strdup(full_msginfo->dispositionnotificationto);
if (!msginfo->returnreceiptto)
msginfo->returnreceiptto = g_strdup
(full_msginfo->returnreceiptto);
if (!msginfo->partial_recv && full_msginfo->partial_recv)
msginfo->partial_recv = g_strdup
(full_msginfo->partial_recv);
msginfo->total_size = full_msginfo->total_size;
if (!msginfo->account_server && full_msginfo->account_server)
msginfo->account_server = g_strdup
(full_msginfo->account_server);
if (!msginfo->account_login && full_msginfo->account_login)
msginfo->account_login = g_strdup
(full_msginfo->account_login);
msginfo->planned_download = full_msginfo->planned_download;
2003-07-27 17:10:02 +02:00
procmsg_msginfo_free(full_msginfo);
return procmsg_msginfo_new_ref(msginfo);
2002-10-04 17:35:49 +02:00
}
2001-04-19 14:21:46 +02:00
void procmsg_msginfo_free(MsgInfo *msginfo)
{
if (msginfo == NULL) return;
2002-06-30 01:33:42 +02:00
msginfo->refcnt--;
if (msginfo->refcnt > 0)
2002-06-30 01:33:42 +02:00
return;
if (msginfo->to_folder) {
msginfo->to_folder->op_count--;
folder_item_update(msginfo->to_folder, F_ITEM_UPDATE_MSGCNT);
}
2001-05-28 00:40:29 +02:00
g_free(msginfo->fromspace);
2001-05-13 04:57:01 +02:00
g_free(msginfo->references);
g_free(msginfo->returnreceiptto);
2001-05-02 16:16:51 +02:00
g_free(msginfo->dispositionnotificationto);
2001-04-19 14:21:46 +02:00
g_free(msginfo->xface);
g_free(msginfo->fromname);
g_free(msginfo->date);
g_free(msginfo->from);
g_free(msginfo->to);
g_free(msginfo->cc);
2001-04-19 14:21:46 +02:00
g_free(msginfo->newsgroups);
g_free(msginfo->subject);
g_free(msginfo->msgid);
g_free(msginfo->inreplyto);
2002-03-17 10:50:46 +01:00
g_free(msginfo->xref);
2001-04-19 14:21:46 +02:00
2004-07-08 12:34:39 +02:00
g_free(msginfo->partial_recv);
g_free(msginfo->account_server);
g_free(msginfo->account_login);
g_free(msginfo->plaintext_file);
2004-07-08 12:34:39 +02:00
2001-04-19 14:21:46 +02:00
g_free(msginfo);
}
2002-06-30 01:33:42 +02:00
guint procmsg_msginfo_memusage(MsgInfo *msginfo)
{
guint memusage = 0;
memusage += sizeof(MsgInfo);
if (msginfo->fromname)
2002-06-30 01:33:42 +02:00
memusage += strlen(msginfo->fromname);
if (msginfo->date)
2002-06-30 01:33:42 +02:00
memusage += strlen(msginfo->date);
if (msginfo->from)
2002-06-30 01:33:42 +02:00
memusage += strlen(msginfo->from);
if (msginfo->to)
2002-06-30 01:33:42 +02:00
memusage += strlen(msginfo->to);
if (msginfo->cc)
2002-06-30 01:33:42 +02:00
memusage += strlen(msginfo->cc);
if (msginfo->newsgroups)
2002-06-30 01:33:42 +02:00
memusage += strlen(msginfo->newsgroups);
if (msginfo->subject)
2002-06-30 01:33:42 +02:00
memusage += strlen(msginfo->subject);
if (msginfo->msgid)
2002-06-30 01:33:42 +02:00
memusage += strlen(msginfo->msgid);
if (msginfo->inreplyto)
2002-06-30 01:33:42 +02:00
memusage += strlen(msginfo->inreplyto);
if (msginfo->xface)
2002-06-30 01:33:42 +02:00
memusage += strlen(msginfo->xface);
if (msginfo->dispositionnotificationto)
2002-06-30 01:33:42 +02:00
memusage += strlen(msginfo->dispositionnotificationto);
if (msginfo->returnreceiptto)
2002-06-30 01:33:42 +02:00
memusage += strlen(msginfo->returnreceiptto);
if (msginfo->references)
2002-06-30 01:33:42 +02:00
memusage += strlen(msginfo->references);
if (msginfo->fromspace)
2002-06-30 01:33:42 +02:00
memusage += strlen(msginfo->fromspace);
return memusage;
}
2001-04-19 14:21:46 +02:00
gint procmsg_cmp_msgnum_for_sort(gconstpointer a, gconstpointer b)
{
const MsgInfo *msginfo1 = a;
const MsgInfo *msginfo2 = b;
if (!msginfo1)
return -1;
if (!msginfo2)
return -1;
return msginfo1->msgnum - msginfo2->msgnum;
}
enum
{
Q_SENDER = 0,
Q_SMTPSERVER = 1,
Q_RECIPIENTS = 2,
Q_NEWSGROUPS = 3,
Q_MAIL_ACCOUNT_ID = 4,
Q_NEWS_ACCOUNT_ID = 5,
Q_SAVE_COPY_FOLDER = 6,
Q_REPLY_MESSAGE_ID = 7,
Q_FWD_MESSAGE_ID = 8,
Q_PRIVACY_SYSTEM = 9,
Q_ENCRYPT = 10,
Q_ENCRYPT_DATA = 11,
};
gint procmsg_send_message_queue(const gchar *file)
{
static HeaderEntry qentry[] = {{"S:", NULL, FALSE},
{"SSV:", NULL, FALSE},
{"R:", NULL, FALSE},
{"NG:", NULL, FALSE},
{"MAID:", NULL, FALSE},
{"NAID:", NULL, FALSE},
{"SCF:", NULL, FALSE},
{"RMID:", NULL, FALSE},
{"FMID:", NULL, FALSE},
{"X-Sylpheed-Privacy-System:", NULL, FALSE},
{"X-Sylpheed-Encrypt:", NULL, FALSE},
{"X-Sylpheed-Encrypt-Data:", NULL, FALSE},
{NULL, NULL, FALSE}};
FILE *fp;
gint filepos;
gint mailval = 0, newsval = 0;
gchar *from = NULL;
gchar *smtpserver = NULL;
GSList *to_list = NULL;
GSList *newsgroup_list = NULL;
gchar *savecopyfolder = NULL;
gchar *replymessageid = NULL;
gchar *fwdmessageid = NULL;
gchar *privacy_system = NULL;
gboolean encrypt = FALSE;
gchar *encrypt_data = NULL;
gchar buf[BUFFSIZE];
gint hnum;
PrefsAccount *mailac = NULL, *newsac = NULL;
int local = 0;
g_return_val_if_fail(file != NULL, -1);
2002-03-14 11:17:32 +01:00
if ((fp = fopen(file, "rb")) == NULL) {
FILE_OP_ERROR(file, "fopen");
return -1;
}
while ((hnum = procheader_get_one_field(buf, sizeof(buf), fp, qentry))
!= -1) {
gchar *p = buf + strlen(qentry[hnum].name);
switch (hnum) {
case Q_SENDER:
if (!from) from = g_strdup(p);
break;
case Q_SMTPSERVER:
if (!smtpserver) smtpserver = g_strdup(p);
break;
case Q_RECIPIENTS:
to_list = address_list_append(to_list, p);
break;
case Q_NEWSGROUPS:
newsgroup_list = newsgroup_list_append(newsgroup_list, p);
break;
case Q_MAIL_ACCOUNT_ID:
mailac = account_find_from_id(atoi(p));
break;
case Q_NEWS_ACCOUNT_ID:
newsac = account_find_from_id(atoi(p));
break;
case Q_SAVE_COPY_FOLDER:
if (!savecopyfolder) savecopyfolder = g_strdup(p);
break;
case Q_REPLY_MESSAGE_ID:
if (!replymessageid) replymessageid = g_strdup(p);
break;
case Q_FWD_MESSAGE_ID:
if (!fwdmessageid) fwdmessageid = g_strdup(p);
break;
case Q_PRIVACY_SYSTEM:
if (privacy_system == NULL) privacy_system = g_strdup(p);
break;
case Q_ENCRYPT:
if (p[0] == '1') encrypt = TRUE;
break;
case Q_ENCRYPT_DATA:
if (encrypt_data == NULL) encrypt_data = g_strdup(p);
break;
}
}
filepos = ftell(fp);
if (encrypt) {
/* FIXME: memory leaks, in case of errors */
MimeInfo *mimeinfo;
fclose(fp);
mimeinfo = procmime_scan_queue_file(file);
if (!privacy_encrypt(privacy_system, mimeinfo, encrypt_data))
return -1;
fp = my_tmpfile();
if (procmime_write_mimeinfo(mimeinfo, fp) < 0) {
fclose(fp);
return -1;
}
procmime_mimeinfo_free_all(mimeinfo);
rewind(fp);
filepos = 0;
}
if (to_list) {
2002-08-15 09:38:17 +02:00
debug_print("Sending message by mail\n");
if (!from) {
g_warning("Queued message header is broken.\n");
mailval = -1;
2002-03-10 15:09:59 +01:00
} else if (mailac && mailac->use_mail_command &&
mailac->mail_command && (* mailac->mail_command)) {
mailval = send_message_local(mailac->mail_command, fp);
local = 1;
} else {
if (!mailac) {
mailac = account_find_from_smtp_server(from, smtpserver);
if (!mailac) {
g_warning("Account not found. "
"Using current account...\n");
mailac = cur_account;
}
}
if (mailac)
mailval = send_message_smtp(mailac, to_list, fp);
else {
PrefsAccount tmp_ac;
g_warning("Account not found.\n");
memset(&tmp_ac, 0, sizeof(PrefsAccount));
tmp_ac.address = from;
tmp_ac.smtp_server = smtpserver;
tmp_ac.smtpport = SMTP_PORT;
mailval = send_message_smtp(&tmp_ac, to_list, fp);
}
}
}
fseek(fp, filepos, SEEK_SET);
if (newsgroup_list && (mailval == 0)) {
Folder *folder;
gchar *tmp = NULL;
FILE *tmpfp;
/* write to temporary file */
tmp = g_strdup_printf("%s%ctmp%d", g_get_tmp_dir(),
G_DIR_SEPARATOR, (gint)file);
if ((tmpfp = fopen(tmp, "wb")) == NULL) {
FILE_OP_ERROR(tmp, "fopen");
newsval = -1;
alertpanel_error(_("Could not create temporary file for news sending."));
} else {
if (change_file_mode_rw(tmpfp, tmp) < 0) {
FILE_OP_ERROR(tmp, "chmod");
g_warning("can't change file mode\n");
}
while ((newsval == 0) && fgets(buf, sizeof(buf), fp) != NULL) {
if (fputs(buf, tmpfp) == EOF) {
FILE_OP_ERROR(tmp, "fputs");
newsval = -1;
alertpanel_error(_("Error when writing temporary file for news sending."));
}
}
fclose(tmpfp);
if (newsval == 0) {
2002-08-15 09:38:17 +02:00
debug_print("Sending message by news\n");
folder = FOLDER(newsac->folder);
newsval = news_post(folder, tmp);
if (newsval < 0) {
alertpanel_error(_("Error occurred while posting the message to %s ."),
newsac->nntp_server);
}
}
unlink(tmp);
}
g_free(tmp);
}
slist_free_strings(to_list);
g_slist_free(to_list);
slist_free_strings(newsgroup_list);
g_slist_free(newsgroup_list);
g_free(from);
g_free(smtpserver);
fclose(fp);
/* save message to outbox */
if (mailval == 0 && newsval == 0 && savecopyfolder) {
FolderItem *outbox;
2002-08-15 09:38:17 +02:00
debug_print("saving sent message...\n");
outbox = folder_find_item_from_identifier(savecopyfolder);
if (!outbox)
outbox = folder_get_default_outbox();
procmsg_save_to_outbox(outbox, file, TRUE);
}
if (replymessageid != NULL || fwdmessageid != NULL) {
gchar **tokens;
FolderItem *item;
if (replymessageid != NULL)
tokens = g_strsplit(replymessageid, "\x7f", 0);
else
tokens = g_strsplit(fwdmessageid, "\x7f", 0);
item = folder_find_item_from_identifier(tokens[0]);
/* check if queued message has valid folder and message id */
if (item != NULL && tokens[2] != NULL) {
MsgInfo *msginfo;
msginfo = folder_item_get_msginfo(item, atoi(tokens[1]));
/* check if referring message exists and has a message id */
if ((msginfo != NULL) &&
(msginfo->msgid != NULL) &&
(strcmp(msginfo->msgid, tokens[2]) != 0)) {
procmsg_msginfo_free(msginfo);
msginfo = NULL;
}
if (msginfo == NULL) {
msginfo = folder_item_get_msginfo_by_msgid(item, tokens[2]);
}
if (msginfo != NULL) {
if (replymessageid != NULL) {
procmsg_msginfo_unset_flags(msginfo, MSG_FORWARDED, 0);
procmsg_msginfo_set_flags(msginfo, MSG_REPLIED, 0);
} else {
procmsg_msginfo_unset_flags(msginfo, MSG_REPLIED, 0);
procmsg_msginfo_set_flags(msginfo, MSG_FORWARDED, 0);
}
procmsg_msginfo_free(msginfo);
}
}
g_strfreev(tokens);
}
g_free(savecopyfolder);
g_free(replymessageid);
g_free(fwdmessageid);
return (newsval != 0 ? newsval : mailval);
}
2002-06-30 01:33:42 +02:00
static void update_folder_msg_counts(FolderItem *item, MsgInfo *msginfo, MsgPermFlags old_flags)
2002-06-30 01:33:42 +02:00
{
MsgPermFlags new_flags = msginfo->flags.perm_flags;
2002-06-30 01:33:42 +02:00
/* NEW flag */
if (!(old_flags & MSG_NEW) && (new_flags & MSG_NEW)) {
item->new_msgs++;
2002-06-30 01:33:42 +02:00
}
if ((old_flags & MSG_NEW) && !(new_flags & MSG_NEW)) {
item->new_msgs--;
}
/* UNREAD flag */
if (!(old_flags & MSG_UNREAD) && (new_flags & MSG_UNREAD)) {
item->unread_msgs++;
if (procmsg_msg_has_marked_parent(msginfo))
item->unreadmarked_msgs++;
2002-06-30 01:33:42 +02:00
}
if ((old_flags & MSG_UNREAD) && !(new_flags & MSG_UNREAD)) {
item->unread_msgs--;
if (procmsg_msg_has_marked_parent(msginfo))
item->unreadmarked_msgs--;
}
/* MARK flag */
if (!(old_flags & MSG_MARKED) && (new_flags & MSG_MARKED)) {
procmsg_update_unread_children(msginfo, TRUE);
}
if ((old_flags & MSG_MARKED) && !(new_flags & MSG_MARKED)) {
procmsg_update_unread_children(msginfo, FALSE);
}
}
void procmsg_msginfo_set_flags(MsgInfo *msginfo, MsgPermFlags perm_flags, MsgTmpFlags tmp_flags)
{
FolderItem *item;
MsgInfoUpdate msginfo_update;
MsgPermFlags perm_flags_new, perm_flags_old;
MsgTmpFlags tmp_flags_old;
g_return_if_fail(msginfo != NULL);
item = msginfo->folder;
g_return_if_fail(item != NULL);
debug_print("Setting flags for message %d in folder %s\n", msginfo->msgnum, item->path);
2002-06-30 01:33:42 +02:00
/* Perm Flags handling */
perm_flags_old = msginfo->flags.perm_flags;
perm_flags_new = msginfo->flags.perm_flags | perm_flags;
if ((perm_flags & MSG_IGNORE_THREAD) || (perm_flags_old & MSG_IGNORE_THREAD)) {
perm_flags_new &= ~(MSG_NEW | MSG_UNREAD);
}
2002-06-30 01:33:42 +02:00
if (perm_flags_old != perm_flags_new) {
folder_item_change_msg_flags(msginfo->folder, msginfo, perm_flags_new);
2002-06-30 01:33:42 +02:00
update_folder_msg_counts(item, msginfo, perm_flags_old);
}
/* Tmp flags handling */
tmp_flags_old = msginfo->flags.tmp_flags;
msginfo->flags.tmp_flags |= tmp_flags;
/* update notification */
if ((perm_flags_old != perm_flags_new) || (tmp_flags_old != msginfo->flags.tmp_flags)) {
msginfo_update.msginfo = msginfo;
msginfo_update.flags = MSGINFO_UPDATE_FLAGS;
hooks_invoke(MSGINFO_UPDATE_HOOKLIST, &msginfo_update);
folder_item_update(msginfo->folder, F_ITEM_UPDATE_MSGCNT);
}
2002-06-30 01:33:42 +02:00
}
void procmsg_msginfo_unset_flags(MsgInfo *msginfo, MsgPermFlags perm_flags, MsgTmpFlags tmp_flags)
{
FolderItem *item;
MsgInfoUpdate msginfo_update;
MsgPermFlags perm_flags_new, perm_flags_old;
MsgTmpFlags tmp_flags_old;
g_return_if_fail(msginfo != NULL);
item = msginfo->folder;
g_return_if_fail(item != NULL);
2002-06-30 01:33:42 +02:00
2002-08-15 09:38:17 +02:00
debug_print("Unsetting flags for message %d in folder %s\n", msginfo->msgnum, item->path);
2002-06-30 01:33:42 +02:00
/* Perm Flags handling */
perm_flags_old = msginfo->flags.perm_flags;
perm_flags_new = msginfo->flags.perm_flags & ~perm_flags;
if (perm_flags_old != perm_flags_new) {
folder_item_change_msg_flags(msginfo->folder, msginfo, perm_flags_new);
update_folder_msg_counts(item, msginfo, perm_flags_old);
msginfo_update.msginfo = msginfo;
msginfo_update.flags = MSGINFO_UPDATE_FLAGS;
hooks_invoke(MSGINFO_UPDATE_HOOKLIST, &msginfo_update);
folder_item_update(msginfo->folder, F_ITEM_UPDATE_MSGCNT);
2002-06-30 01:33:42 +02:00
}
/* Tmp flags hanlding */
tmp_flags_old = msginfo->flags.tmp_flags;
msginfo->flags.tmp_flags &= ~tmp_flags;
/* update notification */
if ((perm_flags_old != perm_flags_new) || (tmp_flags_old != msginfo->flags.tmp_flags)) {
msginfo_update.msginfo = msginfo;
msginfo_update.flags = MSGINFO_UPDATE_FLAGS;
hooks_invoke(MSGINFO_UPDATE_HOOKLIST, &msginfo_update);
folder_item_update(msginfo->folder, F_ITEM_UPDATE_MSGCNT);
}
2002-06-30 01:33:42 +02:00
}
2003-01-02 05:16:13 +01:00
/*!
*\brief check for flags (e.g. mark) in prior msgs of current thread
*
*\param info Current message
*\param perm_flags Flags to be checked
*\param parentmsgs Hash of prior msgs to avoid loops
*
*\return gboolean TRUE if perm_flags are found
*/
gboolean procmsg_msg_has_flagged_parent_real(MsgInfo *info,
MsgPermFlags perm_flags, GHashTable *parentmsgs)
{
MsgInfo *tmp;
g_return_val_if_fail(info != NULL, FALSE);
if (info != NULL && info->folder != NULL && info->inreplyto != NULL) {
2003-01-02 05:16:13 +01:00
tmp = folder_item_get_msginfo_by_msgid(info->folder,
info->inreplyto);
if (tmp && (tmp->flags.perm_flags & perm_flags)) {
procmsg_msginfo_free(tmp);
return TRUE;
} else if (tmp != NULL) {
gboolean result;
2003-01-02 05:16:13 +01:00
if (g_hash_table_lookup(parentmsgs, info)) {
debug_print("loop detected: %s%c%d\n",
folder_item_get_path(info->folder),
G_DIR_SEPARATOR, info->msgnum);
result = FALSE;
2003-01-02 05:16:13 +01:00
} else {
g_hash_table_insert(parentmsgs, info, "1");
2003-01-02 14:07:27 +01:00
result = procmsg_msg_has_flagged_parent_real(
tmp, perm_flags, parentmsgs);
2003-01-02 05:16:13 +01:00
}
procmsg_msginfo_free(tmp);
return result;
} else {
return FALSE;
}
} else
return FALSE;
}
2003-01-02 05:16:13 +01:00
/*!
*\brief Callback for cleaning up hash of parentmsgs
*/
gboolean parentmsgs_hash_remove(gpointer key,
gpointer value,
gpointer user_data)
{
return TRUE;
}
/*!
*\brief Set up list of parentmsgs
* See procmsg_msg_has_flagged_parent_real()
*/
gboolean procmsg_msg_has_flagged_parent(MsgInfo *info, MsgPermFlags perm_flags)
{
gboolean result;
GHashTable *parentmsgs = g_hash_table_new(NULL, NULL);
result = procmsg_msg_has_flagged_parent_real(info, perm_flags, parentmsgs);
g_hash_table_foreach_remove(parentmsgs, parentmsgs_hash_remove, NULL);
g_hash_table_destroy(parentmsgs);
return result;
}
/*!
*\brief Check if msgs prior in thread are marked
* See procmsg_msg_has_flagged_parent_real()
*/
gboolean procmsg_msg_has_marked_parent(MsgInfo *info)
{
return procmsg_msg_has_flagged_parent(info, MSG_MARKED);
2003-01-02 05:16:13 +01:00
}
GSList *procmsg_find_children_func(MsgInfo *info,
GSList *children, GSList *all)
{
GSList *cur;
g_return_val_if_fail(info!=NULL, children);
if (info->msgid == NULL)
return children;
for (cur = all; cur != NULL; cur = g_slist_next(cur)) {
MsgInfo *tmp = (MsgInfo *)cur->data;
if (tmp->inreplyto && !strcmp(tmp->inreplyto, info->msgid)) {
/* Check if message is already in the list */
if ((children == NULL) ||
(g_slist_index(children, tmp) == -1)) {
children = g_slist_prepend(children,
procmsg_msginfo_new_ref(tmp));
children = procmsg_find_children_func(tmp,
children,
all);
}
}
}
return children;
}
GSList *procmsg_find_children (MsgInfo *info)
{
GSList *children;
GSList *all, *cur;
g_return_val_if_fail(info!=NULL, NULL);
all = folder_item_get_msg_list(info->folder);
children = procmsg_find_children_func(info, NULL, all);
if (children != NULL) {
for (cur = all; cur != NULL; cur = g_slist_next(cur)) {
/* this will not free the used pointers
created with procmsg_msginfo_new_ref */
procmsg_msginfo_free((MsgInfo *)cur->data);
}
}
g_slist_free(all);
return children;
}
void procmsg_update_unread_children(MsgInfo *info, gboolean newly_marked)
{
GSList *children = procmsg_find_children(info);
GSList *cur;
for (cur = children; cur != NULL; cur = g_slist_next(cur)) {
MsgInfo *tmp = (MsgInfo *)cur->data;
if(MSG_IS_UNREAD(tmp->flags) && !MSG_IS_IGNORE_THREAD(tmp->flags)) {
if(newly_marked)
info->folder->unreadmarked_msgs++;
else
info->folder->unreadmarked_msgs--;
folder_item_update(info->folder, F_ITEM_UPDATE_MSGCNT);
}
procmsg_msginfo_free(tmp);
}
g_slist_free(children);
}
/**
* Set the destination folder for a copy or move operation
*
* \param msginfo The message which's destination folder is changed
* \param to_folder The destination folder for the operation
*/
void procmsg_msginfo_set_to_folder(MsgInfo *msginfo, FolderItem *to_folder)
{
if(msginfo->to_folder != NULL) {
msginfo->to_folder->op_count--;
folder_item_update(msginfo->to_folder, F_ITEM_UPDATE_MSGCNT);
}
msginfo->to_folder = to_folder;
if(to_folder != NULL) {
to_folder->op_count++;
folder_item_update(msginfo->to_folder, F_ITEM_UPDATE_MSGCNT);
}
}
/**
* Apply filtering actions to the msginfo
*
* \param msginfo The MsgInfo describing the message that should be filtered
* \return TRUE if the message was moved and MsgInfo is now invalid,
* FALSE otherwise
*/
gboolean procmsg_msginfo_filter(MsgInfo *msginfo)
{
MailFilteringData mail_filtering_data;
mail_filtering_data.msginfo = msginfo;
if (hooks_invoke(MAIL_FILTERING_HOOKLIST, &mail_filtering_data))
return TRUE;
/* filter if enabled in prefs or move to inbox if not */
2004-01-12 22:28:31 +01:00
if((filtering_rules != NULL) &&
filter_message_by_msginfo(filtering_rules, msginfo))
return TRUE;
return FALSE;
}