fixes and improvements to tb2sylpheed
[claws.git] / src / procmsg.c
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2002 Hiroyuki Yamamoto
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18  */
19
20 #include "defs.h"
21
22 #include <glib.h>
23 #include <stdio.h>
24 #include <stdlib.h>
25
26 #include "intl.h"
27 #include "main.h"
28 #include "utils.h"
29 #include "procmsg.h"
30 #include "procheader.h"
31 #include "send.h"
32 #include "procmime.h"
33 #include "statusbar.h"
34 #include "folder.h"
35 #include "prefs_common.h"
36 #include "account.h"
37 #if USE_GPGME
38 #  include "rfc2015.h"
39 #endif
40 #include "alertpanel.h"
41 #include "news.h"
42 #include "imap.h"
43 #include "hooks.h"
44
45 typedef struct _FlagInfo        FlagInfo;
46
47 struct _FlagInfo
48 {
49         guint    msgnum;
50         MsgFlags flags;
51 };
52
53 static GHashTable *procmsg_read_mark_file       (const gchar    *folder);
54 void   procmsg_msginfo_write_flags              (MsgInfo        *msginfo);
55 static void procmsg_update_unread_children (MsgInfo *info, gboolean newly_marked);
56
57 GHashTable *procmsg_msg_hash_table_create(GSList *mlist)
58 {
59         GHashTable *msg_table;
60
61         if (mlist == NULL) return NULL;
62
63         msg_table = g_hash_table_new(NULL, g_direct_equal);
64         procmsg_msg_hash_table_append(msg_table, mlist);
65
66         return msg_table;
67 }
68
69 void procmsg_msg_hash_table_append(GHashTable *msg_table, GSList *mlist)
70 {
71         GSList *cur;
72         MsgInfo *msginfo;
73
74         if (msg_table == NULL || mlist == NULL) return;
75
76         for (cur = mlist; cur != NULL; cur = cur->next) {
77                 msginfo = (MsgInfo *)cur->data;
78
79                 g_hash_table_insert(msg_table,
80                                     GUINT_TO_POINTER(msginfo->msgnum),
81                                     msginfo);
82         }
83 }
84
85 GHashTable *procmsg_to_folder_hash_table_create(GSList *mlist)
86 {
87         GHashTable *msg_table;
88         GSList *cur;
89         MsgInfo *msginfo;
90
91         if (mlist == NULL) return NULL;
92
93         msg_table = g_hash_table_new(NULL, g_direct_equal);
94
95         for (cur = mlist; cur != NULL; cur = cur->next) {
96                 msginfo = (MsgInfo *)cur->data;
97                 g_hash_table_insert(msg_table, msginfo->to_folder, msginfo);
98         }
99
100         return msg_table;
101 }
102
103 static gint procmsg_read_cache_data_str(FILE *fp, gchar **str)
104 {
105         gchar buf[BUFFSIZE];
106         gint ret = 0;
107         size_t len;
108
109         if (fread(&len, sizeof(len), 1, fp) == 1) {
110                 if (len < 0)
111                         ret = -1;
112                 else {
113                         gchar *tmp = NULL;
114
115                         while (len > 0) {
116                                 size_t size = MIN(len, BUFFSIZE - 1);
117
118                                 if (fread(buf, size, 1, fp) != 1) {
119                                         ret = -1;
120                                         if (tmp) g_free(tmp);
121                                         *str = NULL;
122                                         break;
123                                 }
124
125                                 buf[size] = '\0';
126                                 if (tmp) {
127                                         *str = g_strconcat(tmp, buf, NULL);
128                                         g_free(tmp);
129                                         tmp = *str;
130                                 } else
131                                         tmp = *str = g_strdup(buf);
132
133                                 len -= size;
134                         }
135                 }
136         } else
137                 ret = -1;
138
139         if (ret < 0)
140                 g_warning("Cache data is corrupted\n");
141
142         return ret;
143 }
144
145 #define READ_CACHE_DATA(data, fp) \
146 { \
147         if (procmsg_read_cache_data_str(fp, &data) < 0) { \
148                 procmsg_msginfo_free(msginfo); \
149                 break; \
150         } \
151 }
152
153 #define READ_CACHE_DATA_INT(n, fp) \
154 { \
155         if (fread(&n, sizeof(n), 1, fp) != 1) { \
156                 g_warning("Cache data is corrupted\n"); \
157                 procmsg_msginfo_free(msginfo); \
158                 break; \
159         } \
160 }
161
162 GSList *procmsg_read_cache(FolderItem *item, gboolean scan_file)
163 {
164         GSList *mlist = NULL;
165         GSList *last = NULL;
166         gchar *cache_file;
167         FILE *fp;
168         MsgInfo *msginfo;
169         MsgFlags default_flags;
170         gchar file_buf[BUFFSIZE];
171         gint ver;
172         guint num;
173         FolderType type;
174
175         g_return_val_if_fail(item != NULL, NULL);
176         g_return_val_if_fail(item->folder != NULL, NULL);
177         type = item->folder->type;
178
179         default_flags.perm_flags = MSG_NEW|MSG_UNREAD;
180         default_flags.tmp_flags = MSG_CACHED;
181         if (type == F_MH || type == F_IMAP) {
182                 if (item->stype == F_QUEUE) {
183                         MSG_SET_TMP_FLAGS(default_flags, MSG_QUEUED);
184                 } else if (item->stype == F_DRAFT) {
185                         MSG_SET_TMP_FLAGS(default_flags, MSG_DRAFT);
186                 }
187         }
188         if (type == F_IMAP) {
189                 MSG_SET_TMP_FLAGS(default_flags, MSG_IMAP);
190         } else if (type == F_NEWS) {
191                 MSG_SET_TMP_FLAGS(default_flags, MSG_NEWS);
192         }
193
194         if (type == F_MH) {
195                 gchar *path;
196
197                 path = folder_item_get_path(item);
198                 if (change_dir(path) < 0) {
199                         g_free(path);
200                         return NULL;
201                 }
202                 g_free(path);
203         }
204         cache_file = folder_item_get_cache_file(item);
205         if ((fp = fopen(cache_file, "rb")) == NULL) {
206                 debug_print("\tNo cache file\n");
207                 g_free(cache_file);
208                 return NULL;
209         }
210         setvbuf(fp, file_buf, _IOFBF, sizeof(file_buf));
211         g_free(cache_file);
212
213         debug_print("\tReading summary cache...\n");
214
215         /* compare cache version */
216         if (fread(&ver, sizeof(ver), 1, fp) != 1 ||
217             CACHE_VERSION != ver) {
218                 debug_print("Cache version is different. Discarding it.\n");
219                 fclose(fp);
220                 return NULL;
221         }
222
223         while (fread(&num, sizeof(num), 1, fp) == 1) {
224                 msginfo = procmsg_msginfo_new();
225                 msginfo->msgnum = num;
226                 READ_CACHE_DATA_INT(msginfo->size, fp);
227                 READ_CACHE_DATA_INT(msginfo->mtime, fp);
228                 READ_CACHE_DATA_INT(msginfo->date_t, fp);
229                 READ_CACHE_DATA_INT(msginfo->flags.tmp_flags, fp);
230
231                 READ_CACHE_DATA(msginfo->fromname, fp);
232
233                 READ_CACHE_DATA(msginfo->date, fp);
234                 READ_CACHE_DATA(msginfo->from, fp);
235                 READ_CACHE_DATA(msginfo->to, fp);
236                 READ_CACHE_DATA(msginfo->cc, fp);
237                 READ_CACHE_DATA(msginfo->newsgroups, fp);
238                 READ_CACHE_DATA(msginfo->subject, fp);
239                 READ_CACHE_DATA(msginfo->msgid, fp);
240                 READ_CACHE_DATA(msginfo->inreplyto, fp);
241                 READ_CACHE_DATA(msginfo->references, fp);
242                 READ_CACHE_DATA(msginfo->xref, fp);
243
244
245                 MSG_SET_PERM_FLAGS(msginfo->flags, default_flags.perm_flags);
246                 MSG_SET_TMP_FLAGS(msginfo->flags, default_flags.tmp_flags);
247
248                 /* if the message file doesn't exist or is changed,
249                    don't add the data */
250                 if (type == F_MH && scan_file &&
251                     folder_item_is_msg_changed(item, msginfo))
252                         procmsg_msginfo_free(msginfo);
253                 else {
254                         msginfo->folder = item;
255
256                         if (!mlist)
257                                 last = mlist = g_slist_append(NULL, msginfo);
258                         else {
259                                 last = g_slist_append(last, msginfo);
260                                 last = last->next;
261                         }
262                 }
263         }
264
265         fclose(fp);
266         debug_print("done.\n");
267
268         return mlist;
269 }
270
271 #undef READ_CACHE_DATA
272 #undef READ_CACHE_DATA_INT
273
274 void procmsg_set_flags(GSList *mlist, FolderItem *item)
275 {
276         GSList *cur, *tmp;
277         gint newmsg = 0;
278         gint lastnum = 0;
279         gchar *markdir;
280         MsgInfo *msginfo;
281         GHashTable *mark_table;
282         MsgFlags *flags;
283
284         if (!mlist) return;
285         g_return_if_fail(item != NULL);
286         g_return_if_fail(item->folder != NULL);
287
288         debug_print("\tMarking the messages...\n");
289
290         markdir = folder_item_get_path(item);
291         if (!is_dir_exist(markdir))
292                 make_dir_hier(markdir);
293
294         mark_table = procmsg_read_mark_file(markdir);
295         g_free(markdir);
296
297         if (!mark_table) return;
298
299         for (cur = mlist; cur != NULL; cur = cur->next) {
300                 msginfo = (MsgInfo *)cur->data;
301
302                 if (lastnum < msginfo->msgnum)
303                         lastnum = msginfo->msgnum;
304
305                 flags = g_hash_table_lookup
306                         (mark_table, GUINT_TO_POINTER(msginfo->msgnum));
307
308                 if (flags != NULL) {
309                         /* add the permanent flags only */
310                         msginfo->flags.perm_flags = flags->perm_flags;
311                         if (item->folder->type == F_IMAP) {
312                                 MSG_SET_TMP_FLAGS(msginfo->flags, MSG_IMAP);
313                         } else if (item->folder->type == F_NEWS) {
314                                 MSG_SET_TMP_FLAGS(msginfo->flags, MSG_NEWS);
315                         }
316                 } else {
317                         /* not found (new message) */
318                         if (newmsg == 0) {
319                                 for (tmp = mlist; tmp != cur; tmp = tmp->next)
320                                         MSG_UNSET_PERM_FLAGS
321                                                 (((MsgInfo *)tmp->data)->flags,
322                                                  MSG_NEW);
323                         }
324                         newmsg++;
325                 }
326         }
327
328         item->last_num = lastnum;
329
330         debug_print("done.\n");
331         if (newmsg)
332                 debug_print("\t%d new message(s)\n", newmsg);
333
334         hash_free_value_mem(mark_table);
335         g_hash_table_destroy(mark_table);
336 }
337
338 gint procmsg_get_last_num_in_msg_list(GSList *mlist)
339 {
340         GSList *cur;
341         MsgInfo *msginfo;
342         gint last = 0;
343
344         for (cur = mlist; cur != NULL; cur = cur->next) {
345                 msginfo = (MsgInfo *)cur->data;
346                 if (msginfo && msginfo->msgnum > last)
347                         last = msginfo->msgnum;
348         }
349
350         return last;
351 }
352
353 void procmsg_msg_list_free(GSList *mlist)
354 {
355         GSList *cur;
356         MsgInfo *msginfo;
357
358         for (cur = mlist; cur != NULL; cur = cur->next) {
359                 msginfo = (MsgInfo *)cur->data;
360                 procmsg_msginfo_free(msginfo);
361         }
362         g_slist_free(mlist);
363 }
364
365 void procmsg_write_cache(MsgInfo *msginfo, FILE *fp)
366 {
367         MsgTmpFlags flags = msginfo->flags.tmp_flags & MSG_CACHED_FLAG_MASK;
368
369         WRITE_CACHE_DATA_INT(msginfo->msgnum, fp);
370         WRITE_CACHE_DATA_INT(msginfo->size, fp);
371         WRITE_CACHE_DATA_INT(msginfo->mtime, fp);
372         WRITE_CACHE_DATA_INT(msginfo->date_t, fp);
373         WRITE_CACHE_DATA_INT(flags, fp);
374
375         WRITE_CACHE_DATA(msginfo->fromname, fp);
376
377         WRITE_CACHE_DATA(msginfo->date, fp);
378         WRITE_CACHE_DATA(msginfo->from, fp);
379         WRITE_CACHE_DATA(msginfo->to, fp);
380         WRITE_CACHE_DATA(msginfo->cc, fp);
381         WRITE_CACHE_DATA(msginfo->newsgroups, fp);
382         WRITE_CACHE_DATA(msginfo->subject, fp);
383         WRITE_CACHE_DATA(msginfo->msgid, fp);
384         WRITE_CACHE_DATA(msginfo->inreplyto, fp);
385         WRITE_CACHE_DATA(msginfo->references, fp);
386         WRITE_CACHE_DATA(msginfo->xref, fp);
387
388 }
389
390 void procmsg_write_flags(MsgInfo *msginfo, FILE *fp)
391 {
392         MsgPermFlags flags = msginfo->flags.perm_flags;
393
394         WRITE_CACHE_DATA_INT(msginfo->msgnum, fp);
395         WRITE_CACHE_DATA_INT(flags, fp);
396 }
397
398 void procmsg_flush_mark_queue(FolderItem *item, FILE *fp)
399 {
400         MsgInfo *flaginfo;
401
402         g_return_if_fail(item != NULL);
403         g_return_if_fail(fp != NULL);
404
405         while (item->mark_queue != NULL) {
406                 flaginfo = (MsgInfo *)item->mark_queue->data;
407                 procmsg_write_flags(flaginfo, fp);
408                 procmsg_msginfo_free(flaginfo);
409                 item->mark_queue = g_slist_remove(item->mark_queue, flaginfo);
410         }
411 }
412
413 void procmsg_add_flags(FolderItem *item, gint num, MsgFlags flags)
414 {
415         FILE *fp;
416         gchar *path;
417         MsgInfo msginfo;
418
419         g_return_if_fail(item != NULL);
420
421         if (item->opened) {
422                 MsgInfo *queue_msginfo;
423
424                 queue_msginfo = g_new0(MsgInfo, 1);
425                 queue_msginfo->msgnum = num;
426                 queue_msginfo->flags = flags;
427                 item->mark_queue = g_slist_append
428                         (item->mark_queue, queue_msginfo);
429                 return;
430         }
431
432         path = folder_item_get_path(item);
433         g_return_if_fail(path != NULL);
434
435         if ((fp = procmsg_open_mark_file(path, TRUE)) == NULL) {
436                 g_warning("can't open mark file\n");
437                 g_free(path);
438                 return;
439         }
440         g_free(path);
441
442         msginfo.msgnum = num;
443         msginfo.flags = flags;
444
445         procmsg_write_flags(&msginfo, fp);
446         fclose(fp);
447 }
448
449 struct MarkSum {
450         gint *new;
451         gint *unread;
452         gint *total;
453         gint *min;
454         gint *max;
455         gint first;
456 };
457
458 static GHashTable *procmsg_read_mark_file(const gchar *folder)
459 {
460         FILE *fp;
461         GHashTable *mark_table = NULL;
462         gint num;
463         MsgFlags *flags;
464         MsgPermFlags perm_flags;
465
466         if ((fp = procmsg_open_mark_file(folder, FALSE)) == NULL)
467                 return NULL;
468
469         mark_table = g_hash_table_new(NULL, g_direct_equal);
470
471         while (fread(&num, sizeof(num), 1, fp) == 1) {
472                 if (fread(&perm_flags, sizeof(perm_flags), 1, fp) != 1) break;
473
474                 flags = g_hash_table_lookup(mark_table, GUINT_TO_POINTER(num));
475                 if (flags != NULL)
476                         g_free(flags);
477
478                 flags = g_new0(MsgFlags, 1);
479                 flags->perm_flags = perm_flags;
480     
481                 if (!MSG_IS_REALLY_DELETED(*flags)) {
482                         g_hash_table_insert(mark_table, GUINT_TO_POINTER(num), flags);
483                 } else {
484                         g_hash_table_remove(mark_table, GUINT_TO_POINTER(num));
485                 }
486         }
487
488         fclose(fp);
489         return mark_table;
490 }
491
492 FILE *procmsg_open_mark_file(const gchar *folder, gboolean append)
493 {
494         gchar *markfile;
495         FILE *fp;
496         gint ver;
497
498         markfile = g_strconcat(folder, G_DIR_SEPARATOR_S, MARK_FILE, NULL);
499
500         if ((fp = fopen(markfile, "rb")) == NULL)
501                 debug_print("Mark file not found.\n");
502         else if (fread(&ver, sizeof(ver), 1, fp) != 1 || MARK_VERSION != ver) {
503                 debug_print("Mark version is different (%d != %d). "
504                               "Discarding it.\n", ver, MARK_VERSION);
505                 fclose(fp);
506                 fp = NULL;
507         }
508
509         /* read mode */
510         if (append == FALSE) {
511                 g_free(markfile);
512                 return fp;
513         }
514
515         if (fp) {
516                 /* reopen with append mode */
517                 fclose(fp);
518                 if ((fp = fopen(markfile, "ab")) == NULL)
519                         g_warning("Can't open mark file with append mode.\n");
520         } else {
521                 /* open with overwrite mode if mark file doesn't exist or
522                    version is different */
523                 if ((fp = fopen(markfile, "wb")) == NULL)
524                         g_warning("Can't open mark file with write mode.\n");
525                 else {
526                         ver = MARK_VERSION;
527                         WRITE_CACHE_DATA_INT(ver, fp);
528                 }
529         }
530
531         g_free(markfile);
532         return fp;
533 }
534
535 static gboolean procmsg_ignore_node(GNode *node, gpointer data)
536 {
537         MsgInfo *msginfo = (MsgInfo *)node->data;
538         
539         procmsg_msginfo_set_flags(msginfo, MSG_IGNORE_THREAD, 0);
540
541         return FALSE;
542 }
543
544 /* return the reversed thread tree */
545 GNode *procmsg_get_thread_tree(GSList *mlist)
546 {
547         GNode *root, *parent, *node, *next;
548         GHashTable *msgid_table;
549         GHashTable *subject_table;
550         MsgInfo *msginfo;
551         const gchar *msgid;
552         const gchar *subject;
553         GNode *found_subject;
554
555         root = g_node_new(NULL);
556         msgid_table = g_hash_table_new(g_str_hash, g_str_equal);
557         subject_table = g_hash_table_new(g_str_hash, g_str_equal);
558
559         for (; mlist != NULL; mlist = mlist->next) {
560                 msginfo = (MsgInfo *)mlist->data;
561                 parent = root;
562
563                 if (msginfo->inreplyto) {
564                         parent = g_hash_table_lookup(msgid_table, msginfo->inreplyto);
565                         if (parent == NULL) {
566                                 parent = root;
567                         } else {
568                                 if (MSG_IS_IGNORE_THREAD(((MsgInfo *)parent->data)->flags) && !MSG_IS_IGNORE_THREAD(msginfo->flags)) {
569                                         procmsg_msginfo_set_flags(msginfo, MSG_IGNORE_THREAD, 0);
570                                 }
571                         }
572                 }
573                 node = g_node_insert_data_before
574                         (parent, parent == root ? parent->children : NULL,
575                          msginfo);
576                 if ((msgid = msginfo->msgid) &&
577                     g_hash_table_lookup(msgid_table, msgid) == NULL)
578                         g_hash_table_insert(msgid_table, (gchar *)msgid, node);
579
580                 subject = msginfo->subject;
581                 found_subject = subject_table_lookup(subject_table,
582                                                      (gchar *) subject);
583                 if (found_subject == NULL)
584                         subject_table_insert(subject_table, (gchar *) subject,
585                                              node);
586                 else {
587                         /* replace if msg in table is older than current one 
588                          * can add here more stuff.  */
589                         if ( ((MsgInfo*)(found_subject->data))->date_t >
590                              ((MsgInfo*)(node->data))->date_t )  {
591                                 subject_table_remove(subject_table, (gchar *) subject);
592                                 subject_table_insert(subject_table, (gchar *) subject, node);
593                         }       
594                 }
595         }
596
597         /* complete the unfinished threads */
598         for (node = root->children; node != NULL; ) {
599                 next = node->next;
600                 msginfo = (MsgInfo *)node->data;
601                 parent = NULL;
602                 if (msginfo->inreplyto) 
603                         parent = g_hash_table_lookup(msgid_table, msginfo->inreplyto);
604                 if (parent && parent != node) {
605                         g_node_unlink(node);
606                         g_node_insert_before
607                                 (parent, parent->children, node);
608                         /* CLAWS: ignore thread */
609                         if (MSG_IS_IGNORE_THREAD(((MsgInfo *)parent->data)->flags) && !MSG_IS_IGNORE_THREAD(msginfo->flags)) {
610                                 g_node_traverse(node, G_PRE_ORDER, G_TRAVERSE_ALL, -1, procmsg_ignore_node, NULL);
611                         }
612                 }
613                 node = next;
614         }
615
616         /* CLAWS: now see if the first level (below root) still has some nodes that can be
617          * threaded by subject line. we need to handle this in a special way to prevent
618          * circular reference from a node that has already been threaded by IN-REPLY-TO
619          * but is also in the subject line hash table */
620         for (node = root->children; node != NULL; ) {
621                 next = node->next;
622                 msginfo = (MsgInfo *) node->data;
623                 parent = NULL;
624                 if (subject_is_reply(msginfo->subject)) {
625                         parent = subject_table_lookup(subject_table,
626                                                       msginfo->subject);
627                         /* the node may already be threaded by IN-REPLY-TO,
628                            so go up in the tree to find the parent node */
629                         if (parent != NULL) {
630                                 if (g_node_is_ancestor(node, parent))
631                                         parent = NULL;
632                                 if (parent == node)
633                                         parent = NULL;
634                         }
635
636                         if (parent) {
637                                 g_node_unlink(node);
638                                 g_node_append(parent, node);
639                                 /* CLAWS: ignore thread */
640                                 if (MSG_IS_IGNORE_THREAD(((MsgInfo *)parent->data)->flags) && !MSG_IS_IGNORE_THREAD(msginfo->flags)) {
641                                         g_node_traverse(node, G_PRE_ORDER, G_TRAVERSE_ALL, -1, procmsg_ignore_node, NULL);
642                                 }
643                         }
644                 }                                       
645                 node = next;
646         }               
647
648         g_hash_table_destroy(subject_table);
649         g_hash_table_destroy(msgid_table);
650
651         return root;
652 }
653
654 void procmsg_move_messages(GSList *mlist)
655 {
656         GSList *cur, *movelist = NULL;
657         MsgInfo *msginfo;
658         FolderItem *dest = NULL;
659
660         if (!mlist) return;
661
662         for (cur = mlist; cur != NULL; cur = cur->next) {
663                 msginfo = (MsgInfo *)cur->data;
664                 if (!dest) {
665                         dest = msginfo->to_folder;
666                         movelist = g_slist_append(movelist, msginfo);
667                 } else if (dest == msginfo->to_folder) {
668                         movelist = g_slist_append(movelist, msginfo);
669                 } else {
670                         folder_item_move_msgs_with_dest(dest, movelist);
671                         g_slist_free(movelist);
672                         movelist = NULL;
673                         dest = msginfo->to_folder;
674                         movelist = g_slist_append(movelist, msginfo);
675                 }
676         }
677
678         if (movelist) {
679                 folder_item_move_msgs_with_dest(dest, movelist);
680                 g_slist_free(movelist);
681         }
682 }
683
684 void procmsg_copy_messages(GSList *mlist)
685 {
686         GSList *cur, *copylist = NULL;
687         MsgInfo *msginfo;
688         FolderItem *dest = NULL;
689
690         if (!mlist) return;
691
692         /* 
693         
694         Horrible: Scanning 2 times for every copy!
695
696         hash = procmsg_to_folder_hash_table_create(mlist);
697         folder_item_scan_foreach(hash);
698         g_hash_table_destroy(hash);
699         */
700
701         for (cur = mlist; cur != NULL; cur = cur->next) {
702                 msginfo = (MsgInfo *)cur->data;
703                 if (!dest) {
704                         dest = msginfo->to_folder;
705                         copylist = g_slist_append(copylist, msginfo);
706                 } else if (dest == msginfo->to_folder) {
707                         copylist = g_slist_append(copylist, msginfo);
708                 } else {
709                         folder_item_copy_msgs_with_dest(dest, copylist);
710                         g_slist_free(copylist);
711                         copylist = NULL;
712                         dest = msginfo->to_folder;
713                         copylist = g_slist_append(copylist, msginfo);
714                 }
715         }
716
717         if (copylist) {
718                 folder_item_copy_msgs_with_dest(dest, copylist);
719                 g_slist_free(copylist);
720         }
721 }
722
723 gchar *procmsg_get_message_file_path(MsgInfo *msginfo)
724 {
725         gchar *path, *file;
726
727         g_return_val_if_fail(msginfo != NULL, NULL);
728
729         if (msginfo->plaintext_file)
730                 file = g_strdup(msginfo->plaintext_file);
731         else {
732                 path = folder_item_get_path(msginfo->folder);
733                 file = g_strconcat(path, G_DIR_SEPARATOR_S,
734                                    itos(msginfo->msgnum), NULL);
735                 g_free(path);
736         }
737
738         return file;
739 }
740
741 gchar *procmsg_get_message_file(MsgInfo *msginfo)
742 {
743         gchar *filename = NULL;
744
745         g_return_val_if_fail(msginfo != NULL, NULL);
746
747         filename = folder_item_fetch_msg(msginfo->folder, msginfo->msgnum);
748         if (!filename)
749                 g_warning("can't fetch message %d\n", msginfo->msgnum);
750
751         return filename;
752 }
753
754 FILE *procmsg_open_message(MsgInfo *msginfo)
755 {
756         FILE *fp;
757         gchar *file;
758
759         g_return_val_if_fail(msginfo != NULL, NULL);
760
761         file = procmsg_get_message_file_path(msginfo);
762         g_return_val_if_fail(file != NULL, NULL);
763
764         if (!is_file_exist(file)) {
765                 g_free(file);
766                 file = procmsg_get_message_file(msginfo);
767                 g_return_val_if_fail(file != NULL, NULL);
768         }
769
770         if ((fp = fopen(file, "rb")) == NULL) {
771                 FILE_OP_ERROR(file, "fopen");
772                 g_free(file);
773                 return NULL;
774         }
775
776         g_free(file);
777
778         if (MSG_IS_QUEUED(msginfo->flags) || MSG_IS_DRAFT(msginfo->flags)) {
779                 gchar buf[BUFFSIZE];
780
781                 while (fgets(buf, sizeof(buf), fp) != NULL)
782                         if (buf[0] == '\r' || buf[0] == '\n') break;
783         }
784
785         return fp;
786 }
787
788 #if USE_GPGME
789 FILE *procmsg_open_message_decrypted(MsgInfo *msginfo, MimeInfo **mimeinfo)
790 {
791         FILE *fp;
792         MimeInfo *mimeinfo_;
793
794         g_return_val_if_fail(msginfo != NULL, NULL);
795
796         if (mimeinfo) *mimeinfo = NULL;
797
798         if ((fp = procmsg_open_message(msginfo)) == NULL) return NULL;
799
800         mimeinfo_ = procmime_scan_mime_header(fp);
801         if (!mimeinfo_) {
802                 fclose(fp);
803                 return NULL;
804         }
805
806         if (!MSG_IS_ENCRYPTED(msginfo->flags) &&
807             rfc2015_is_encrypted(mimeinfo_)) {
808                 MSG_SET_TMP_FLAGS(msginfo->flags, MSG_ENCRYPTED);
809         }
810
811         if (MSG_IS_ENCRYPTED(msginfo->flags) &&
812             !msginfo->plaintext_file &&
813             !msginfo->decryption_failed) {
814                 rfc2015_decrypt_message(msginfo, mimeinfo_, fp);
815                 if (msginfo->plaintext_file &&
816                     !msginfo->decryption_failed) {
817                         fclose(fp);
818                         procmime_mimeinfo_free_all(mimeinfo_);
819                         if ((fp = procmsg_open_message(msginfo)) == NULL)
820                                 return NULL;
821                         mimeinfo_ = procmime_scan_mime_header(fp);
822                         if (!mimeinfo_) {
823                                 fclose(fp);
824                                 return NULL;
825                         }
826                 }
827         }
828
829         if (mimeinfo) *mimeinfo = mimeinfo_;
830         return fp;
831 }
832 #endif
833
834 gboolean procmsg_msg_exist(MsgInfo *msginfo)
835 {
836         gchar *path;
837         gboolean ret;
838
839         if (!msginfo) return FALSE;
840
841         path = folder_item_get_path(msginfo->folder);
842         change_dir(path);
843         ret = !folder_item_is_msg_changed(msginfo->folder, msginfo);
844         g_free(path);
845
846         return ret;
847 }
848
849 void procmsg_empty_trash(void)
850 {
851         FolderItem *trash;
852         GList *cur;
853
854         for (cur = folder_get_list(); cur != NULL; cur = cur->next) {
855                 trash = FOLDER(cur->data)->trash;
856                 if (trash && trash->total > 0)
857                         folder_item_remove_all_msg(trash);
858         }
859 }
860
861 gint procmsg_send_queue(FolderItem *queue, gboolean save_msgs)
862 {
863         gint ret = 0;
864         GSList *list, *elem;
865
866         if (!queue)
867                 queue = folder_get_default_queue();
868         g_return_val_if_fail(queue != NULL, -1);
869
870         folder_item_scan(queue);
871         list = folder_item_get_msg_list(queue);
872
873
874         for (elem = list; elem != NULL; elem = elem->next) {
875                 gchar *file;
876                 MsgInfo *msginfo;
877                 
878                 msginfo = (MsgInfo *)(elem->data);
879
880                 file = folder_item_fetch_msg(queue, msginfo->msgnum);
881                 if (file) {
882                         if (procmsg_send_message_queue(file) < 0) {
883                                 g_warning("Sending queued message %d failed.\n", msginfo->msgnum);
884                                 ret = -1;
885                         } else {
886                         /* CLAWS: 
887                          * We save in procmsg_send_message_queue because
888                          * we need the destination folder from the queue
889                          * header
890                                                 
891                                 if (save_msgs)
892                                         procmsg_save_to_outbox
893                                                 (queue->folder->outbox,
894                                                  file, TRUE);
895 */
896                                 folder_item_remove_msg(queue, msginfo->msgnum);
897                         }
898                         g_free(file);
899                 }
900                 procmsg_msginfo_free(msginfo);
901         }
902
903         folder_update_item(queue, FALSE);
904
905         return ret;
906 }
907
908 gint procmsg_remove_special_headers(const gchar *in, const gchar *out)
909 {
910         FILE *fp, *outfp;
911         gchar buf[BUFFSIZE];
912         
913         if ((fp = fopen(in, "rb")) == NULL) {
914                 FILE_OP_ERROR(in, "fopen");
915                 return -1;
916         }
917         if ((outfp = fopen(out, "wb")) == NULL) {
918                 FILE_OP_ERROR(out, "fopen");
919                 fclose(fp);
920                 return -1;
921         }
922         while (fgets(buf, sizeof(buf), fp) != NULL)
923                 if (buf[0] == '\r' || buf[0] == '\n') break;
924         while (fgets(buf, sizeof(buf), fp) != NULL)
925                 fputs(buf, outfp);
926         fclose(outfp);
927         fclose(fp);
928         return 0;
929
930 }
931 gint procmsg_save_to_outbox(FolderItem *outbox, const gchar *file,
932                             gboolean is_queued)
933 {
934         gint num;
935         MsgInfo *msginfo;
936
937         debug_print("saving sent message...\n");
938
939         if (!outbox)
940                 outbox = folder_get_default_outbox();
941         g_return_val_if_fail(outbox != NULL, -1);
942
943         /* remove queueing headers */
944         if (is_queued) {
945                 gchar tmp[MAXPATHLEN + 1];
946
947                 g_snprintf(tmp, sizeof(tmp), "%s%ctmpmsg.out.%08x",
948                            get_rc_dir(), G_DIR_SEPARATOR, (guint)random());
949                 
950                 if (procmsg_remove_special_headers(file, tmp) !=0)
951                         return -1;
952
953                 folder_item_scan(outbox);
954                 if ((num = folder_item_add_msg(outbox, tmp, TRUE)) < 0) {
955                         g_warning("can't save message\n");
956                         unlink(tmp);
957                         return -1;
958                 }
959         } else {
960                 folder_item_scan(outbox);
961                 if ((num = folder_item_add_msg(outbox, file, FALSE)) < 0) {
962                         g_warning("can't save message\n");
963                         return -1;
964                 }
965                 return -1;
966         }
967         msginfo = folder_item_get_msginfo(outbox, num);
968         if (msginfo != NULL) {
969             procmsg_msginfo_unset_flags(msginfo, ~0, 0);
970             procmsg_msginfo_free(msginfo);
971         }
972
973         return 0;
974 }
975
976 void procmsg_print_message(MsgInfo *msginfo, const gchar *cmdline)
977 {
978         static const gchar *def_cmd = "lpr %s";
979         static guint id = 0;
980         gchar *prtmp;
981         FILE *tmpfp, *prfp;
982         gchar buf[1024];
983         gchar *p;
984
985         g_return_if_fail(msginfo);
986
987         if ((tmpfp = procmime_get_first_text_content(msginfo)) == NULL) {
988                 g_warning("Can't get text part\n");
989                 return;
990         }
991
992         prtmp = g_strdup_printf("%s%cprinttmp.%08x",
993                                 get_mime_tmp_dir(), G_DIR_SEPARATOR, id++);
994
995         if ((prfp = fopen(prtmp, "wb")) == NULL) {
996                 FILE_OP_ERROR(prtmp, "fopen");
997                 g_free(prtmp);
998                 fclose(tmpfp);
999                 return;
1000         }
1001
1002         if (msginfo->date) fprintf(prfp, "Date: %s\n", msginfo->date);
1003         if (msginfo->from) fprintf(prfp, "From: %s\n", msginfo->from);
1004         if (msginfo->to)   fprintf(prfp, "To: %s\n", msginfo->to);
1005         if (msginfo->cc)   fprintf(prfp, "Cc: %s\n", msginfo->cc);
1006         if (msginfo->newsgroups)
1007                 fprintf(prfp, "Newsgroups: %s\n", msginfo->newsgroups);
1008         if (msginfo->subject) fprintf(prfp, "Subject: %s\n", msginfo->subject);
1009         fputc('\n', prfp);
1010
1011         while (fgets(buf, sizeof(buf), tmpfp) != NULL)
1012                 fputs(buf, prfp);
1013
1014         fclose(prfp);
1015         fclose(tmpfp);
1016
1017         if (cmdline && (p = strchr(cmdline, '%')) && *(p + 1) == 's' &&
1018             !strchr(p + 2, '%'))
1019                 g_snprintf(buf, sizeof(buf) - 1, cmdline, prtmp);
1020         else {
1021                 if (cmdline)
1022                         g_warning("Print command line is invalid: `%s'\n",
1023                                   cmdline);
1024                 g_snprintf(buf, sizeof(buf) - 1, def_cmd, prtmp);
1025         }
1026
1027         g_free(prtmp);
1028
1029         g_strchomp(buf);
1030         if (buf[strlen(buf) - 1] != '&') strcat(buf, "&");
1031         system(buf);
1032 }
1033
1034 MsgInfo *procmsg_msginfo_new_ref(MsgInfo *msginfo)
1035 {
1036         msginfo->refcnt++;
1037         
1038         return msginfo;
1039 }
1040
1041 MsgInfo *procmsg_msginfo_new()
1042 {
1043         MsgInfo *newmsginfo;
1044
1045         newmsginfo = g_new0(MsgInfo, 1);
1046         newmsginfo->refcnt = 1;
1047         
1048         return newmsginfo;
1049 }
1050
1051 MsgInfo *procmsg_msginfo_copy(MsgInfo *msginfo)
1052 {
1053         MsgInfo *newmsginfo;
1054
1055         if (msginfo == NULL) return NULL;
1056
1057         newmsginfo = g_new0(MsgInfo, 1);
1058
1059         newmsginfo->refcnt = 1;
1060
1061 #define MEMBCOPY(mmb)   newmsginfo->mmb = msginfo->mmb
1062 #define MEMBDUP(mmb)    newmsginfo->mmb = msginfo->mmb ? \
1063                         g_strdup(msginfo->mmb) : NULL
1064
1065         MEMBCOPY(msgnum);
1066         MEMBCOPY(size);
1067         MEMBCOPY(mtime);
1068         MEMBCOPY(date_t);
1069         MEMBCOPY(flags);
1070
1071         MEMBDUP(fromname);
1072
1073         MEMBDUP(date);
1074         MEMBDUP(from);
1075         MEMBDUP(to);
1076         MEMBDUP(cc);
1077         MEMBDUP(newsgroups);
1078         MEMBDUP(subject);
1079         MEMBDUP(msgid);
1080         MEMBDUP(inreplyto);
1081         MEMBDUP(xref);
1082
1083         MEMBCOPY(folder);
1084         MEMBCOPY(to_folder);
1085
1086         MEMBDUP(xface);
1087         MEMBDUP(dispositionnotificationto);
1088         MEMBDUP(returnreceiptto);
1089         MEMBDUP(references);
1090
1091         MEMBCOPY(score);
1092         MEMBCOPY(threadscore);
1093
1094         return newmsginfo;
1095 }
1096
1097 MsgInfo *procmsg_msginfo_get_full_info(MsgInfo *msginfo)
1098 {
1099         MsgInfo *full_msginfo;
1100         gchar *file;
1101
1102         if (msginfo == NULL) return NULL;
1103
1104         file = procmsg_get_message_file(msginfo);
1105         if (!file) {
1106                 g_warning("procmsg_msginfo_get_full_info(): can't get message file.\n");
1107                 return NULL;
1108         }
1109
1110         full_msginfo = procheader_parse_file(file, msginfo->flags, TRUE, FALSE);
1111         g_free(file);
1112         if (!full_msginfo) return NULL;
1113
1114         full_msginfo->msgnum = msginfo->msgnum;
1115         full_msginfo->size = msginfo->size;
1116         full_msginfo->mtime = msginfo->mtime;
1117         full_msginfo->folder = msginfo->folder;
1118         full_msginfo->to_folder = msginfo->to_folder;
1119 #if USE_GPGME
1120         full_msginfo->plaintext_file = g_strdup(msginfo->plaintext_file);
1121         full_msginfo->decryption_failed = msginfo->decryption_failed;
1122 #endif
1123
1124         return full_msginfo;
1125 }
1126
1127 void procmsg_msginfo_free(MsgInfo *msginfo)
1128 {
1129         if (msginfo == NULL) return;
1130
1131         msginfo->refcnt--;
1132         if (msginfo->refcnt > 0)
1133                 return;
1134
1135         g_free(msginfo->fromspace);
1136         g_free(msginfo->references);
1137         g_free(msginfo->returnreceiptto);
1138         g_free(msginfo->dispositionnotificationto);
1139         g_free(msginfo->xface);
1140
1141         g_free(msginfo->fromname);
1142
1143         g_free(msginfo->date);
1144         g_free(msginfo->from);
1145         g_free(msginfo->to);
1146         g_free(msginfo->cc);
1147         g_free(msginfo->newsgroups);
1148         g_free(msginfo->subject);
1149         g_free(msginfo->msgid);
1150         g_free(msginfo->inreplyto);
1151         g_free(msginfo->xref);
1152
1153         g_free(msginfo);
1154 }
1155
1156 guint procmsg_msginfo_memusage(MsgInfo *msginfo)
1157 {
1158         guint memusage = 0;
1159         
1160         memusage += sizeof(MsgInfo);
1161         if (msginfo->fromname)
1162                 memusage += strlen(msginfo->fromname);
1163         if (msginfo->date)
1164                 memusage += strlen(msginfo->date);
1165         if (msginfo->from)
1166                 memusage += strlen(msginfo->from);
1167         if (msginfo->to)
1168                 memusage += strlen(msginfo->to);
1169         if (msginfo->cc)
1170                 memusage += strlen(msginfo->cc);
1171         if (msginfo->newsgroups)
1172                 memusage += strlen(msginfo->newsgroups);
1173         if (msginfo->subject)
1174                 memusage += strlen(msginfo->subject);
1175         if (msginfo->msgid)
1176                 memusage += strlen(msginfo->msgid);
1177         if (msginfo->inreplyto)
1178                 memusage += strlen(msginfo->inreplyto);
1179         if (msginfo->xface)
1180                 memusage += strlen(msginfo->xface);
1181         if (msginfo->dispositionnotificationto)
1182                 memusage += strlen(msginfo->dispositionnotificationto);
1183         if (msginfo->returnreceiptto)
1184                 memusage += strlen(msginfo->returnreceiptto);
1185         if (msginfo->references)
1186                 memusage += strlen(msginfo->references);
1187         if (msginfo->fromspace)
1188                 memusage += strlen(msginfo->fromspace);
1189
1190         return memusage;
1191 }
1192
1193 gint procmsg_cmp_msgnum_for_sort(gconstpointer a, gconstpointer b)
1194 {
1195         const MsgInfo *msginfo1 = a;
1196         const MsgInfo *msginfo2 = b;
1197
1198         if (!msginfo1)
1199                 return -1;
1200         if (!msginfo2)
1201                 return -1;
1202
1203         return msginfo1->msgnum - msginfo2->msgnum;
1204 }
1205
1206 enum
1207 {
1208         Q_SENDER           = 0,
1209         Q_SMTPSERVER       = 1,
1210         Q_RECIPIENTS       = 2,
1211         Q_NEWSGROUPS       = 3,
1212         Q_MAIL_ACCOUNT_ID  = 4,
1213         Q_NEWS_ACCOUNT_ID  = 5,
1214         Q_SAVE_COPY_FOLDER = 6,
1215         Q_REPLY_MESSAGE_ID = 7,
1216 };
1217
1218 gint procmsg_send_message_queue(const gchar *file)
1219 {
1220         static HeaderEntry qentry[] = {{"S:",    NULL, FALSE},
1221                                        {"SSV:",  NULL, FALSE},
1222                                        {"R:",    NULL, FALSE},
1223                                        {"NG:",   NULL, FALSE},
1224                                        {"MAID:", NULL, FALSE},
1225                                        {"NAID:", NULL, FALSE},
1226                                        {"SCF:",  NULL, FALSE},
1227                                        {"RMID:", NULL, FALSE},
1228                                        {NULL,    NULL, FALSE}};
1229         FILE *fp;
1230         gint filepos;
1231         gint mailval = 0, newsval = 0;
1232         gchar *from = NULL;
1233         gchar *smtpserver = NULL;
1234         GSList *to_list = NULL;
1235         GSList *newsgroup_list = NULL;
1236         gchar *savecopyfolder = NULL;
1237         gchar *replymessageid = NULL;
1238         gchar buf[BUFFSIZE];
1239         gint hnum;
1240         PrefsAccount *mailac = NULL, *newsac = NULL;
1241         int local = 0;
1242
1243         g_return_val_if_fail(file != NULL, -1);
1244
1245         if ((fp = fopen(file, "rb")) == NULL) {
1246                 FILE_OP_ERROR(file, "fopen");
1247                 return -1;
1248         }
1249
1250         while ((hnum = procheader_get_one_field(buf, sizeof(buf), fp, qentry))
1251                != -1) {
1252                 gchar *p = buf + strlen(qentry[hnum].name);
1253
1254                 switch (hnum) {
1255                 case Q_SENDER:
1256                         if (!from) from = g_strdup(p);
1257                         break;
1258                 case Q_SMTPSERVER:
1259                         if (!smtpserver) smtpserver = g_strdup(p);
1260                         break;
1261                 case Q_RECIPIENTS:
1262                         to_list = address_list_append(to_list, p);
1263                         break;
1264                 case Q_NEWSGROUPS:
1265                         newsgroup_list = newsgroup_list_append(newsgroup_list, p);
1266                         break;
1267                 case Q_MAIL_ACCOUNT_ID:
1268                         mailac = account_find_from_id(atoi(p));
1269                         break;
1270                 case Q_NEWS_ACCOUNT_ID:
1271                         newsac = account_find_from_id(atoi(p));
1272                         break;
1273                 case Q_SAVE_COPY_FOLDER:
1274                         if (!savecopyfolder) savecopyfolder = g_strdup(p);
1275                         break;
1276                 case Q_REPLY_MESSAGE_ID:
1277                         if (!replymessageid) replymessageid = g_strdup(p);
1278                         break;
1279                 }
1280         }
1281         filepos = ftell(fp);
1282
1283         if (to_list) {
1284                 debug_print("Sending message by mail\n");
1285                 if (!from) {
1286                         g_warning("Queued message header is broken.\n");
1287                         mailval = -1;
1288                 } else if (mailac && mailac->use_mail_command &&
1289                            mailac->mail_command && (* mailac->mail_command)) {
1290                         mailval = send_message_local(mailac->mail_command, fp);
1291                         local = 1;
1292                 } else if (prefs_common.use_extsend && prefs_common.extsend_cmd) {
1293                         mailval = send_message_local(prefs_common.extsend_cmd, fp);
1294                         local = 1;
1295                 } else {
1296                         if (!mailac) {
1297                                 mailac = account_find_from_smtp_server(from, smtpserver);
1298                                 if (!mailac) {
1299                                         g_warning("Account not found. "
1300                                                     "Using current account...\n");
1301                                         mailac = cur_account;
1302                                 }
1303                         }
1304
1305                         if (mailac)
1306                                 mailval = send_message_smtp(mailac, to_list, fp);
1307                         else {
1308                                 PrefsAccount tmp_ac;
1309
1310                                 g_warning("Account not found.\n");
1311
1312                                 memset(&tmp_ac, 0, sizeof(PrefsAccount));
1313                                 tmp_ac.address = from;
1314                                 tmp_ac.smtp_server = smtpserver;
1315                                 tmp_ac.smtpport = SMTP_PORT;
1316                                 mailval = send_message_smtp(&tmp_ac, to_list, fp);
1317                         }
1318                 }
1319                 if (mailval < 0) {
1320                         if (!local)
1321                                 alertpanel_error(
1322                                         _("Error occurred while sending the message to `%s'."),
1323                                         mailac ? mailac->smtp_server : smtpserver);
1324                         else
1325                                 alertpanel_error(
1326                                         _("Error occurred while sending the message with command `%s'."),
1327                                         (mailac && mailac->use_mail_command && 
1328                                          mailac->mail_command && (*mailac->mail_command)) ? 
1329                                                 mailac->mail_command : prefs_common.extsend_cmd);
1330                 }
1331         }
1332
1333         fseek(fp, filepos, SEEK_SET);
1334         if (newsgroup_list && (newsval == 0)) {
1335                 Folder *folder;
1336                 gchar *tmp = NULL;
1337                 FILE *tmpfp;
1338
1339                 /* write to temporary file */
1340                 tmp = g_strdup_printf("%s%ctmp%d", g_get_tmp_dir(),
1341                             G_DIR_SEPARATOR, (gint)file);
1342                 if ((tmpfp = fopen(tmp, "wb")) == NULL) {
1343                         FILE_OP_ERROR(tmp, "fopen");
1344                         newsval = -1;
1345                         alertpanel_error(_("Could not create temporary file for news sending."));
1346                 } else {
1347                         if (change_file_mode_rw(tmpfp, tmp) < 0) {
1348                                 FILE_OP_ERROR(tmp, "chmod");
1349                                 g_warning("can't change file mode\n");
1350                         }
1351
1352                         while ((newsval == 0) && fgets(buf, sizeof(buf), fp) != NULL) {
1353                                 if (fputs(buf, tmpfp) == EOF) {
1354                                         FILE_OP_ERROR(tmp, "fputs");
1355                                         newsval = -1;
1356                                         alertpanel_error(_("Error when writing temporary file for news sending."));
1357                                 }
1358                         }
1359                         fclose(tmpfp);
1360
1361                         if (newsval == 0) {
1362                                 debug_print("Sending message by news\n");
1363
1364                                 folder = FOLDER(newsac->folder);
1365
1366                                 newsval = news_post(folder, tmp);
1367                                 if (newsval < 0) {
1368                                         alertpanel_error(_("Error occurred while posting the message to %s ."),
1369                                                  newsac->nntp_server);
1370                                 }
1371                         }
1372                         unlink(tmp);
1373                 }
1374                 g_free(tmp);
1375         }
1376
1377         slist_free_strings(to_list);
1378         g_slist_free(to_list);
1379         slist_free_strings(newsgroup_list);
1380         g_slist_free(newsgroup_list);
1381         g_free(from);
1382         g_free(smtpserver);
1383         fclose(fp);
1384
1385         /* save message to outbox */
1386         if (mailval == 0 && newsval == 0 && savecopyfolder) {
1387                 FolderItem *outbox;
1388
1389                 debug_print("saving sent message...\n");
1390
1391                 outbox = folder_find_item_from_identifier(savecopyfolder);
1392                 if (!outbox)
1393                         outbox = folder_get_default_outbox();
1394
1395                 procmsg_save_to_outbox(outbox, file, TRUE);
1396         }
1397
1398         if (replymessageid != NULL) {
1399                 gchar **tokens;
1400                 FolderItem *item;
1401                 
1402                 tokens = g_strsplit(replymessageid, "\x7f", 0);
1403                 item = folder_find_item_from_identifier(tokens[0]);
1404                 if (item != NULL) {
1405                         MsgInfo *msginfo;
1406                         
1407                         msginfo = folder_item_get_msginfo(item, atoi(tokens[1]));
1408                         if ((msginfo != NULL) && (strcmp(msginfo->msgid, tokens[2]) != 0)) {
1409                                 procmsg_msginfo_free(msginfo);
1410                                 msginfo = NULL;
1411                         }
1412                         
1413                         if (msginfo == NULL) {
1414                                 msginfo = folder_item_get_msginfo_by_msgid(item, tokens[2]);
1415                         }
1416                         
1417                         if (msginfo != NULL) {
1418                                 procmsg_msginfo_unset_flags(msginfo, MSG_FORWARDED, 0);
1419                                 procmsg_msginfo_set_flags(msginfo, MSG_REPLIED, 0);
1420
1421                                 procmsg_msginfo_free(msginfo);
1422                         }
1423                 }
1424                 g_strfreev(tokens);
1425         }
1426
1427         g_free(savecopyfolder);
1428         g_free(replymessageid);
1429         
1430         return (newsval != 0 ? newsval : mailval);
1431 }
1432
1433 #define CHANGE_FLAGS(msginfo) \
1434 { \
1435 if (msginfo->folder->folder->change_flags != NULL) \
1436 msginfo->folder->folder->change_flags(msginfo->folder->folder, \
1437                                       msginfo->folder, \
1438                                       msginfo); \
1439 }
1440
1441 void procmsg_msginfo_set_flags(MsgInfo *msginfo, MsgPermFlags perm_flags, MsgTmpFlags tmp_flags)
1442 {
1443         FolderItem *item;
1444         MsgInfoUpdate msginfo_update;
1445
1446         g_return_if_fail(msginfo != NULL);
1447         item = msginfo->folder;
1448         g_return_if_fail(item != NULL);
1449         
1450         debug_print("Setting flags for message %d in folder %s\n", msginfo->msgnum, item->path);
1451
1452         /* if new flag is set */
1453         if ((perm_flags & MSG_NEW) && !MSG_IS_NEW(msginfo->flags) &&
1454            !MSG_IS_IGNORE_THREAD(msginfo->flags)) {
1455                 item->new++;
1456                 item->need_update = TRUE;
1457         }
1458
1459         /* if unread flag is set */
1460         if ((perm_flags & MSG_UNREAD) && !MSG_IS_UNREAD(msginfo->flags) &&
1461            !MSG_IS_IGNORE_THREAD(msginfo->flags)) {
1462                 item->unread++;
1463                 item->need_update = TRUE;
1464         }
1465
1466         if (!MSG_IS_UNREAD(msginfo->flags) &&(perm_flags & MSG_UNREAD)
1467         && procmsg_msg_has_marked_parent(msginfo)) {
1468                 item->unreadmarked++;
1469                 item->need_update = TRUE;
1470         }
1471         
1472         if (!MSG_IS_MARKED(msginfo->flags) && (perm_flags & MSG_MARKED)) {
1473                 procmsg_update_unread_children(msginfo, TRUE);
1474         }
1475
1476
1477         /* if ignore thread flag is set */
1478         if ((perm_flags & MSG_IGNORE_THREAD) && !MSG_IS_IGNORE_THREAD(msginfo->flags)) {
1479                 if (MSG_IS_NEW(msginfo->flags) || (perm_flags & MSG_NEW)) {
1480                         item->new--;
1481                         item->need_update = TRUE;
1482                 }
1483                 if (MSG_IS_UNREAD(msginfo->flags) || (perm_flags & MSG_UNREAD)) {
1484                         item->unread--;
1485                         item->need_update = TRUE;
1486                 }
1487                 if ((perm_flags & MSG_UNREAD) || (MSG_IS_UNREAD(msginfo->flags)
1488                 && procmsg_msg_has_marked_parent(msginfo))) {
1489                         item->unreadmarked--;
1490                         item->need_update = TRUE;
1491                 }
1492                 if ((perm_flags & MSG_MARKED) || (MSG_IS_MARKED(msginfo->flags)
1493                 && !MSG_IS_IGNORE_THREAD(msginfo->flags))) {
1494                         procmsg_update_unread_children(msginfo, FALSE);
1495                 }
1496
1497         }
1498
1499         if (MSG_IS_IMAP(msginfo->flags))
1500                 imap_msg_set_perm_flags(msginfo, perm_flags);
1501
1502         msginfo->flags.perm_flags |= perm_flags;
1503         msginfo->flags.tmp_flags |= tmp_flags;
1504
1505         msginfo_update.msginfo = msginfo;
1506         hooks_invoke(MSGINFO_UPDATE_HOOKLIST, &msginfo_update);
1507
1508         CHANGE_FLAGS(msginfo);
1509         procmsg_msginfo_write_flags(msginfo);
1510 }
1511
1512 void procmsg_msginfo_unset_flags(MsgInfo *msginfo, MsgPermFlags perm_flags, MsgTmpFlags tmp_flags)
1513 {
1514         FolderItem *item;
1515         MsgInfoUpdate msginfo_update;
1516
1517         g_return_if_fail(msginfo != NULL);
1518         item = msginfo->folder;
1519         g_return_if_fail(item != NULL); 
1520         
1521         debug_print("Unsetting flags for message %d in folder %s\n", msginfo->msgnum, item->path);
1522
1523         /* if new flag is unset */
1524         if ((perm_flags & MSG_NEW) && MSG_IS_NEW(msginfo->flags) &&
1525            !MSG_IS_IGNORE_THREAD(msginfo->flags)) {
1526                 item->new--;
1527                 item->need_update = TRUE;
1528         }
1529
1530         /* if unread flag is unset */
1531         if ((perm_flags & MSG_UNREAD) && MSG_IS_UNREAD(msginfo->flags) &&
1532            !MSG_IS_IGNORE_THREAD(msginfo->flags)) {
1533                 item->unread--;
1534                 item->need_update = TRUE;
1535         }
1536         
1537         if (MSG_IS_UNREAD(msginfo->flags) && (perm_flags & MSG_UNREAD)
1538         && !MSG_IS_IGNORE_THREAD(msginfo->flags)
1539         && procmsg_msg_has_marked_parent(msginfo)) {
1540                 item->unreadmarked--;
1541                 item->need_update = TRUE;
1542         }
1543
1544         if (MSG_IS_MARKED(msginfo->flags) && (perm_flags & MSG_MARKED)
1545         && !MSG_IS_IGNORE_THREAD(msginfo->flags)) {
1546                 procmsg_update_unread_children(msginfo, FALSE);
1547         }
1548
1549         /* if ignore thread flag is unset */
1550         if ((perm_flags & MSG_IGNORE_THREAD) && MSG_IS_IGNORE_THREAD(msginfo->flags)) {
1551                 if (MSG_IS_NEW(msginfo->flags) && !(perm_flags & MSG_NEW)) {
1552                         item->new++;
1553                         item->need_update = TRUE;
1554                 }
1555                 if (MSG_IS_UNREAD(msginfo->flags) && !(perm_flags & MSG_UNREAD)) {
1556                         item->unread++;
1557                         item->need_update = TRUE;
1558                 }
1559                 if (MSG_IS_UNREAD(msginfo->flags) && !(perm_flags & MSG_UNREAD)
1560                 && procmsg_msg_has_marked_parent(msginfo)) {
1561                         item->unreadmarked++;
1562                         item->need_update = TRUE;
1563                 }
1564                 if (MSG_IS_MARKED(msginfo->flags) && !(perm_flags & MSG_MARKED)) {
1565                         procmsg_update_unread_children(msginfo, TRUE);
1566                 }
1567
1568         }
1569
1570         if (MSG_IS_IMAP(msginfo->flags))
1571                 imap_msg_unset_perm_flags(msginfo, perm_flags);
1572
1573         msginfo->flags.perm_flags &= ~perm_flags;
1574         msginfo->flags.tmp_flags &= ~tmp_flags;
1575
1576         msginfo_update.msginfo = msginfo;
1577         hooks_invoke(MSGINFO_UPDATE_HOOKLIST, &msginfo_update);
1578
1579         CHANGE_FLAGS(msginfo);
1580         procmsg_msginfo_write_flags(msginfo);
1581 }
1582
1583 void procmsg_msginfo_write_flags(MsgInfo *msginfo)
1584 {
1585         gchar *destdir;
1586         FILE *fp;
1587
1588         destdir = folder_item_get_path(msginfo->folder);
1589         if (!is_dir_exist(destdir))
1590                 make_dir_hier(destdir);
1591
1592         if ((fp = procmsg_open_mark_file(destdir, TRUE))) {
1593                 procmsg_write_flags(msginfo, fp);
1594                 fclose(fp);
1595         } else {
1596                 g_warning("Can't open mark file.\n");
1597         }
1598         
1599         g_free(destdir);
1600 }
1601
1602 /*!
1603  *\brief        check for flags (e.g. mark) in prior msgs of current thread
1604  *
1605  *\param        info Current message
1606  *\param        perm_flags Flags to be checked
1607  *\param        parentmsgs Hash of prior msgs to avoid loops
1608  *
1609  *\return       gboolean TRUE if perm_flags are found
1610  */
1611 gboolean procmsg_msg_has_flagged_parent_real(MsgInfo *info,
1612                 MsgPermFlags perm_flags, GHashTable *parentmsgs)
1613 {
1614         MsgInfo *tmp;
1615
1616         g_return_val_if_fail(info != NULL, FALSE);
1617
1618         if (info != NULL && info->folder != NULL && info->inreplyto != NULL) {
1619                 tmp = folder_item_get_msginfo_by_msgid(info->folder,
1620                                 info->inreplyto);
1621                 if (tmp && (tmp->flags.perm_flags & perm_flags)) {
1622                         procmsg_msginfo_free(tmp);
1623                         return TRUE;
1624                 } else if (tmp != NULL) {
1625                         gboolean result;
1626
1627                         if (g_hash_table_lookup(parentmsgs, info)) {
1628                                 debug_print("loop detected: %s%c%d\n",
1629                                         folder_item_get_path(info->folder),
1630                                         G_DIR_SEPARATOR, info->msgnum);
1631                                 result = FALSE;
1632                         } else {
1633                                 g_hash_table_insert(parentmsgs, info, "1");
1634                                 result = procmsg_msg_has_flagged_parent_real(
1635                                     tmp, perm_flags, parentmsgs);
1636                         }
1637                         procmsg_msginfo_free(tmp);
1638                         return result;
1639                 } else {
1640                         return FALSE;
1641                 }
1642         } else
1643                 return FALSE;
1644 }
1645
1646 /*!
1647  *\brief        Callback for cleaning up hash of parentmsgs
1648  */
1649 gboolean parentmsgs_hash_remove(gpointer key,
1650                             gpointer value,
1651                             gpointer user_data)
1652 {
1653         return TRUE;
1654 }
1655
1656 /*!
1657  *\brief        Set up list of parentmsgs
1658  *              See procmsg_msg_has_flagged_parent_real()
1659  */
1660 gboolean procmsg_msg_has_flagged_parent(MsgInfo *info, MsgPermFlags perm_flags)
1661 {
1662         gboolean result;
1663         GHashTable *parentmsgs = g_hash_table_new(NULL, NULL); 
1664
1665         result = procmsg_msg_has_flagged_parent_real(info, perm_flags, parentmsgs);
1666         g_hash_table_foreach_remove(parentmsgs, parentmsgs_hash_remove, NULL);
1667         g_hash_table_destroy(parentmsgs);
1668         return result;
1669 }
1670
1671 /*!
1672  *\brief        Check if msgs prior in thread are marked
1673  *              See procmsg_msg_has_flagged_parent_real()
1674  */
1675 gboolean procmsg_msg_has_marked_parent(MsgInfo *info)
1676 {
1677         return procmsg_msg_has_flagged_parent(info, MSG_MARKED);
1678 }
1679
1680
1681 GSList *procmsg_find_children (MsgInfo *info)
1682 {
1683         GSList *children = NULL;
1684         GSList *all, *cur;
1685         
1686         g_return_val_if_fail(info!=NULL, NULL);
1687         if (info->msgid == NULL)
1688                 return NULL;
1689         all = folder_item_get_msg_list(info->folder);
1690         for (cur = all; cur != NULL; cur = g_slist_next(cur)) {
1691                 MsgInfo *tmp = (MsgInfo *)cur->data;
1692                 if (tmp->inreplyto && !strcmp(tmp->inreplyto, info->msgid)) {
1693                         GSList *grand_children;
1694                         children = g_slist_prepend(children, tmp);
1695                         grand_children = procmsg_find_children(tmp);
1696                         children = slist_concat_unique(children, grand_children);
1697                         g_slist_free(grand_children);
1698                 }
1699                 if (tmp && tmp != info)
1700                         procmsg_msginfo_free(tmp);
1701         }
1702         
1703         return children;
1704 }
1705
1706 static void procmsg_update_unread_children (MsgInfo *info, gboolean newly_marked)
1707 {
1708         GSList *children = procmsg_find_children(info);
1709         GSList *cur;
1710         for (cur = children; cur != NULL; cur = g_slist_next(cur)) {
1711                 MsgInfo *tmp = (MsgInfo *)cur->data;
1712                 if(MSG_IS_UNREAD(tmp->flags) && !MSG_IS_IGNORE_THREAD(tmp->flags)) {
1713                         if(newly_marked) 
1714                                 info->folder->unreadmarked++;
1715                         else
1716                                 info->folder->unreadmarked--;
1717                         info->folder->need_update = TRUE;
1718                 }
1719                 procmsg_msginfo_free(tmp);
1720         }
1721 }