0.8.8claws120
[claws.git] / src / procmsg.h
index 585ab4954c8d95417cb5cd712e6178425bad8fd0..cd9823ea444315417b756a615e941341ce823389 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
- * Copyright (C) 1999-2001 Hiroyuki Yamamoto
+ * Copyright (C) 1999-2002 Hiroyuki Yamamoto
  *
  * 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
 #ifndef __PROCMSG_H__
 #define __PROCMSG_H__
 
+#ifdef HAVE_CONFIG_H
+#  include "config.h"
+#endif
+
 #include <glib.h>
 #include <stdio.h>
 #include <time.h>
@@ -30,6 +34,7 @@ typedef struct _MsgInfo               MsgInfo;
 typedef struct _MsgFlags       MsgFlags;
 
 #include "folder.h"
+#include "procmime.h"
 
 typedef enum
 {
@@ -42,54 +47,57 @@ typedef enum
        
        MSG_REALLY_DELETED = 1 << 6,            /* mbox stuff */
 
-#define MSG_LABEL_SBIT (7)             /* start bit message label */
-#define MAKE_MSG_LABEL(h, m, l) (((h) << (MSG_LABEL_SBIT+2)) | \
-                               ((m) << (MSG_LABEL_SBIT+1)) | \
-                               ((l) << (MSG_LABEL_SBIT+0)))
-                               
-       MSG_LABEL       = MAKE_MSG_LABEL(1, 1, 1),
-       MSG_LABEL_NONE  = MAKE_MSG_LABEL(0, 0, 0),
-       MSG_LABEL_1     = MAKE_MSG_LABEL(0, 0, 1),
-       MSG_LABEL_2     = MAKE_MSG_LABEL(0, 1, 0),
-       MSG_LABEL_3     = MAKE_MSG_LABEL(0, 1, 1),
-       MSG_LABEL_4     = MAKE_MSG_LABEL(1, 0, 0),
-       MSG_LABEL_5     = MAKE_MSG_LABEL(1, 0, 1),
-       MSG_LABEL_6     = MAKE_MSG_LABEL(1, 1, 0),
-       MSG_LABEL_7     = MAKE_MSG_LABEL(1, 1, 1),
-
-#define MSG_LABEL_ORANGE   (MSG_LABEL_1)
-#define MSG_LABEL_RED      (MSG_LABEL_2)
-#define MSG_LABEL_PINK     (MSG_LABEL_3)
-#define MSG_LABEL_SKYBLUE  (MSG_LABEL_4)
-#define MSG_LABEL_BLUE     (MSG_LABEL_5)
-#define MSG_LABEL_GREEN    (MSG_LABEL_6)
-#define MSG_LABEL_BROWN    (MSG_LABEL_7)
-
-       /*MSG_IGNORE_THREAD   = 1 << 10,*/   /* ignore threads */
+#define MSG_CLABEL_SBIT        (7)             /* start bit of color label */
+#define MAKE_MSG_CLABEL(h, m, l)       (((h) << (MSG_CLABEL_SBIT + 2)) | \
+                                        ((m) << (MSG_CLABEL_SBIT + 1)) | \
+                                        ((l) << (MSG_CLABEL_SBIT + 0)))
+
+       MSG_CLABEL_NONE = MAKE_MSG_CLABEL(0, 0, 0),
+       MSG_CLABEL_1    = MAKE_MSG_CLABEL(0, 0, 1),
+       MSG_CLABEL_2    = MAKE_MSG_CLABEL(0, 1, 0),
+       MSG_CLABEL_3    = MAKE_MSG_CLABEL(0, 1, 1),
+       MSG_CLABEL_4    = MAKE_MSG_CLABEL(1, 0, 0),
+       MSG_CLABEL_5    = MAKE_MSG_CLABEL(1, 0, 1),
+       MSG_CLABEL_6    = MAKE_MSG_CLABEL(1, 1, 0),
+       MSG_CLABEL_7    = MAKE_MSG_CLABEL(1, 1, 1),
+
+#define MSG_CLABEL_ORANGE      MSG_CLABEL_1
+#define MSG_CLABEL_RED         MSG_CLABEL_2
+#define MSG_CLABEL_PINK                MSG_CLABEL_3
+#define MSG_CLABEL_SKYBLUE     MSG_CLABEL_4
+#define MSG_CLABEL_BLUE                MSG_CLABEL_5
+#define MSG_CLABEL_GREEN       MSG_CLABEL_6
+#define MSG_CLABEL_BROWN       MSG_CLABEL_7
+
+       MSG_IGNORE_THREAD   = 1 << 10,   /* ignore threads */
+       MSG_LOCKED          = 1 << 11,   /* msg is locked  */
+       MSG_RETRCPT_PENDING = 1 << 12,   /* return receipt pending */
 
        /* RESERVED */
        MSG_RESERVED_CLAWS  = 1 << 30,  /* for sylpheed-claws */
        MSG_RESERVED_MAIN   = 1 << 31   /* for sylpheed-main  */
 } MsgPermFlags;
 
+#define MSG_CLABEL_FLAG_MASK   (MSG_CLABEL_7)
+
 typedef enum
 {
        MSG_MOVE        = 1 << 0,
        MSG_COPY        = 1 << 1,
-       
+
        MSG_QUEUED      = 1 << 16,
        MSG_DRAFT       = 1 << 17,
        MSG_ENCRYPTED   = 1 << 18,
        MSG_IMAP        = 1 << 19,
        MSG_NEWS        = 1 << 20,
-
-       MSG_FILTERING   = 1 << 25,      /* claws: re/set by filtering */
+       MSG_SIGNED      = 1 << 21,
 
        MSG_MIME        = 1 << 29,
+
        MSG_CACHED      = 1 << 31
 } MsgTmpFlags;
 
-#define MSG_CACHED_FLAG_MASK           (MSG_MIME)
+#define MSG_CACHED_FLAG_MASK   (MSG_MIME | MSG_ENCRYPTED | MSG_SIGNED)
 
 #define MSG_SET_FLAGS(msg, flags)      { (msg) |= (flags); }
 #define MSG_UNSET_FLAGS(msg, flags)    { (msg) &= ~(flags); }
@@ -107,14 +115,24 @@ typedef enum
 #define MSG_IS_MARKED(msg)             (((msg).perm_flags & MSG_MARKED) != 0)
 #define MSG_IS_DELETED(msg)            (((msg).perm_flags & MSG_DELETED) != 0)
 #define MSG_IS_REPLIED(msg)            (((msg).perm_flags & MSG_REPLIED) != 0)
+#define MSG_IS_LOCKED(msg)             (((msg).perm_flags & MSG_LOCKED) != 0)
 #define MSG_IS_FORWARDED(msg)          (((msg).perm_flags & MSG_FORWARDED) != 0)
 
+#define MSG_GET_COLORLABEL(msg)                (((msg).perm_flags & MSG_CLABEL_FLAG_MASK))
+#define MSG_GET_COLORLABEL_VALUE(msg)  (MSG_GET_COLORLABEL(msg) >> MSG_CLABEL_SBIT)
+#define MSG_SET_COLORLABEL_VALUE(msg, val) \
+       MSG_SET_PERM_FLAGS(msg, ((((guint)(val)) & 7) << MSG_CLABEL_SBIT))
+
+#define MSG_COLORLABEL_TO_FLAGS(val) ((((guint)(val)) & 7) << MSG_CLABEL_SBIT)
+#define MSG_COLORLABEL_FROM_FLAGS(val) (val >> MSG_CLABEL_SBIT)
+
 #define MSG_IS_MOVE(msg)               (((msg).tmp_flags & MSG_MOVE) != 0)
 #define MSG_IS_COPY(msg)               (((msg).tmp_flags & MSG_COPY) != 0)
 
 #define MSG_IS_QUEUED(msg)             (((msg).tmp_flags & MSG_QUEUED) != 0)
 #define MSG_IS_DRAFT(msg)              (((msg).tmp_flags & MSG_DRAFT) != 0)
 #define MSG_IS_ENCRYPTED(msg)          (((msg).tmp_flags & MSG_ENCRYPTED) != 0)
+#define MSG_IS_SIGNED(msg)             (((msg).tmp_flags & MSG_SIGNED) != 0)
 #define MSG_IS_IMAP(msg)               (((msg).tmp_flags & MSG_IMAP) != 0)
 #define MSG_IS_NEWS(msg)               (((msg).tmp_flags & MSG_NEWS) != 0)
 #define MSG_IS_MIME(msg)               (((msg).tmp_flags & MSG_MIME) != 0)
@@ -122,12 +140,8 @@ typedef enum
 
 /* Claws related flags */
 #define MSG_IS_REALLY_DELETED(msg)     (((msg).perm_flags & MSG_REALLY_DELETED) != 0)
-/*#define MSG_IS_IGNORE_THREAD(msg)    (((msg).perm_flags & MSG_IGNORE_THREAD) != 0)*/
-#define MSG_GET_LABEL(msg)             (((msg).perm_flags & MSG_LABEL))
-#define MSG_GET_LABEL_VALUE(msg)       (MSG_GET_LABEL(msg) >> MSG_LABEL_SBIT)
-/* 7 == nr. of colors excl. none */
-#define MSG_SET_LABEL_VALUE(msg, val)  MSG_SET_PERM_FLAGS(msg, ((((unsigned)(val)) & 7) << MSG_LABEL_SBIT))
-#define MSG_IS_FILTERING(msg)          (((msg).tmp_flags  & MSG_FILTERING) != 0)
+#define MSG_IS_IGNORE_THREAD(msg)      (((msg).perm_flags & MSG_IGNORE_THREAD) != 0)
+#define MSG_IS_RETRCPT_PENDING(msg)    (((msg).perm_flags & MSG_RETRCPT_PENDING) != 0)
 
 
 #define WRITE_CACHE_DATA_INT(n, fp) \
@@ -155,6 +169,8 @@ struct _MsgFlags
 
 struct _MsgInfo
 {
+       guint refcnt;
+
        guint  msgnum;
        off_t  size;
        time_t mtime;
@@ -172,6 +188,7 @@ struct _MsgInfo
        gchar *subject;
        gchar *msgid;
        gchar *inreplyto;
+       gchar *xref;
 
        FolderItem *folder;
        FolderItem *to_folder;
@@ -192,6 +209,14 @@ struct _MsgInfo
        guint decryption_failed : 1;
 };
 
+#define MSGINFO_UPDATE_HOOKLIST "msginfo_update"
+
+typedef struct _MsgInfoUpdate MsgInfoUpdate;
+
+struct _MsgInfoUpdate {
+       MsgInfo *msginfo;
+};
+
 GHashTable *procmsg_msg_hash_table_create      (GSList         *mlist);
 void procmsg_msg_hash_table_append             (GHashTable     *msg_table,
                                                 GSList         *mlist);
@@ -201,36 +226,76 @@ GSList *procmsg_read_cache                (FolderItem     *item,
                                         gboolean        scan_file);
 void   procmsg_set_flags               (GSList         *mlist,
                                         FolderItem     *item);
-gint   procmsg_get_last_num_in_cache   (GSList         *mlist);
+gint   procmsg_get_last_num_in_msg_list(GSList         *mlist);
 void   procmsg_msg_list_free           (GSList         *mlist);
 void   procmsg_write_cache             (MsgInfo        *msginfo,
                                         FILE           *fp);
 void   procmsg_write_flags             (MsgInfo        *msginfo,
                                         FILE           *fp);
+void   procmsg_flush_mark_queue        (FolderItem     *item,
+                                        FILE           *fp);
+void   procmsg_add_flags               (FolderItem     *item,
+                                        gint            num,
+                                        MsgFlags        flags);
 void   procmsg_get_mark_sum            (const gchar    *folder,
                                         gint           *new,
                                         gint           *unread,
-                                        gint           *total);
+                                        gint           *total,
+                                        gint           *min,
+                                        gint           *max,
+                                        gint            first);
 FILE   *procmsg_open_mark_file         (const gchar    *folder,
                                         gboolean        append);
 
+GNode  *procmsg_get_thread_tree                (GSList         *mlist);
+
 void   procmsg_move_messages           (GSList         *mlist);
 void   procmsg_copy_messages           (GSList         *mlist);
 
 gchar  *procmsg_get_message_file_path  (MsgInfo        *msginfo);
 gchar  *procmsg_get_message_file       (MsgInfo        *msginfo);
 FILE   *procmsg_open_message           (MsgInfo        *msginfo);
+#if USE_GPGME
+FILE   *procmsg_open_message_decrypted (MsgInfo        *msginfo,
+                                        MimeInfo      **mimeinfo);
+#endif
 gboolean procmsg_msg_exist             (MsgInfo        *msginfo);
 
 void   procmsg_empty_trash             (void);
-gint   procmsg_send_queue              (void);
+gint   procmsg_send_queue              (FolderItem     *queue,
+                                        gboolean        save_msgs);
+gint   procmsg_save_to_outbox          (FolderItem     *outbox,
+                                        const gchar    *file,
+                                        gboolean        is_queued);
 void   procmsg_print_message           (MsgInfo        *msginfo,
                                         const gchar    *cmdline);
 
+MsgInfo *procmsg_msginfo_new           ();
+MsgInfo *procmsg_msginfo_new_ref       (MsgInfo        *msginfo);
 MsgInfo *procmsg_msginfo_copy          (MsgInfo        *msginfo);
+MsgInfo *procmsg_msginfo_get_full_info (MsgInfo        *msginfo);
 void    procmsg_msginfo_free           (MsgInfo        *msginfo);
+guint   procmsg_msginfo_memusage       (MsgInfo        *msginfo);
 
 gint procmsg_cmp_msgnum_for_sort       (gconstpointer   a,
                                         gconstpointer   b);
-
+gint procmsg_send_message_queue                (const gchar *file);
+
+void procmsg_msginfo_set_flags         (MsgInfo *msginfo,
+                                        MsgPermFlags perm_flags,
+                                         MsgTmpFlags tmp_flags);
+void procmsg_msginfo_unset_flags       (MsgInfo *msginfo,
+                                        MsgPermFlags perm_flags,
+                                         MsgTmpFlags tmp_flags);
+gint procmsg_remove_special_headers    (const gchar    *in, 
+                                        const gchar    *out);
+
+gboolean procmsg_msg_has_flagged_parent        (MsgInfo        *info,
+                                        MsgPermFlags    perm_flags);
+gboolean procmsg_msg_has_marked_parent (MsgInfo        *info);
+GSList *procmsg_find_children          (MsgInfo        *info);
+void procmsg_update_unread_children    (MsgInfo        *info,
+                                        gboolean        newly_marked);
+void procmsg_msginfo_set_to_folder     (MsgInfo        *msginfo,
+                                        FolderItem     *to_folder);
 #endif /* __PROCMSG_H__ */