sync with sylpheed 0.6.3cvs7
[claws.git] / src / procmsg.h
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2001 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 #ifndef __PROCMSG_H__
21 #define __PROCMSG_H__
22
23 #include <glib.h>
24 #include <stdio.h>
25 #include <time.h>
26 #include <sys/types.h>
27 #include <string.h>
28
29 typedef struct _MsgInfo         MsgInfo;
30 typedef struct _MsgFlags        MsgFlags;
31
32 #include "folder.h"
33
34 typedef enum
35 {
36         MSG_NEW         = 1 << 0,
37         MSG_UNREAD      = 1 << 1,
38         MSG_MARKED      = 1 << 2,
39         MSG_DELETED     = 1 << 3,
40         MSG_REPLIED     = 1 << 4,
41         MSG_FORWARDED   = 1 << 5,
42         
43         MSG_REALLY_DELETED = 1 << 6,            /* mbox stuff */
44
45 #define MSG_CLABEL_SBIT (7)             /* start bit of color label */
46 #define MAKE_MSG_CLABEL(h, m, l)        (((h) << (MSG_CLABEL_SBIT + 2)) | \
47                                          ((m) << (MSG_CLABEL_SBIT + 1)) | \
48                                          ((l) << (MSG_CLABEL_SBIT + 0)))
49
50         MSG_CLABEL_NONE = MAKE_MSG_CLABEL(0, 0, 0),
51         MSG_CLABEL_1    = MAKE_MSG_CLABEL(0, 0, 1),
52         MSG_CLABEL_2    = MAKE_MSG_CLABEL(0, 1, 0),
53         MSG_CLABEL_3    = MAKE_MSG_CLABEL(0, 1, 1),
54         MSG_CLABEL_4    = MAKE_MSG_CLABEL(1, 0, 0),
55         MSG_CLABEL_5    = MAKE_MSG_CLABEL(1, 0, 1),
56         MSG_CLABEL_6    = MAKE_MSG_CLABEL(1, 1, 0),
57         MSG_CLABEL_7    = MAKE_MSG_CLABEL(1, 1, 1),
58
59 #define MSG_CLABEL_ORANGE       MSG_CLABEL_1
60 #define MSG_CLABEL_RED          MSG_CLABEL_2
61 #define MSG_CLABEL_PINK         MSG_CLABEL_3
62 #define MSG_CLABEL_SKYBLUE      MSG_CLABEL_4
63 #define MSG_CLABEL_BLUE         MSG_CLABEL_5
64 #define MSG_CLABEL_GREEN        MSG_CLABEL_6
65 #define MSG_CLABEL_BROWN        MSG_CLABEL_7
66
67         MSG_IGNORE_THREAD   = 1 << 10,   /* ignore threads */
68
69         /* RESERVED */
70         MSG_RESERVED_CLAWS  = 1 << 30,  /* for sylpheed-claws */
71         MSG_RESERVED_MAIN   = 1 << 31   /* for sylpheed-main  */
72 } MsgPermFlags;
73
74 #define MSG_CLABEL_FLAG_MASK    (MSG_CLABEL_7)
75
76 typedef enum
77 {
78         MSG_MOVE        = 1 << 0,
79         MSG_COPY        = 1 << 1,
80
81         MSG_QUEUED      = 1 << 16,
82         MSG_DRAFT       = 1 << 17,
83         MSG_ENCRYPTED   = 1 << 18,
84         MSG_IMAP        = 1 << 19,
85         MSG_NEWS        = 1 << 20,
86
87         MSG_FILTERING   = 1 << 25,      /* claws: re/set by filtering */
88
89         MSG_MIME        = 1 << 29,
90
91         MSG_CACHED      = 1 << 31
92 } MsgTmpFlags;
93
94 #define MSG_CACHED_FLAG_MASK    (MSG_MIME)
95
96 #define MSG_SET_FLAGS(msg, flags)       { (msg) |= (flags); }
97 #define MSG_UNSET_FLAGS(msg, flags)     { (msg) &= ~(flags); }
98 #define MSG_SET_PERM_FLAGS(msg, flags) \
99         MSG_SET_FLAGS((msg).perm_flags, flags)
100 #define MSG_SET_TMP_FLAGS(msg, flags) \
101         MSG_SET_FLAGS((msg).tmp_flags, flags)
102 #define MSG_UNSET_PERM_FLAGS(msg, flags) \
103         MSG_UNSET_FLAGS((msg).perm_flags, flags)
104 #define MSG_UNSET_TMP_FLAGS(msg, flags) \
105         MSG_UNSET_FLAGS((msg).tmp_flags, flags)
106
107 #define MSG_IS_NEW(msg)                 (((msg).perm_flags & MSG_NEW) != 0)
108 #define MSG_IS_UNREAD(msg)              (((msg).perm_flags & MSG_UNREAD) != 0)
109 #define MSG_IS_MARKED(msg)              (((msg).perm_flags & MSG_MARKED) != 0)
110 #define MSG_IS_DELETED(msg)             (((msg).perm_flags & MSG_DELETED) != 0)
111 #define MSG_IS_REPLIED(msg)             (((msg).perm_flags & MSG_REPLIED) != 0)
112 #define MSG_IS_FORWARDED(msg)           (((msg).perm_flags & MSG_FORWARDED) != 0)
113
114 #define MSG_GET_COLORLABEL(msg)         (((msg).perm_flags & MSG_CLABEL_FLAG_MASK))
115 #define MSG_GET_COLORLABEL_VALUE(msg)   (MSG_GET_COLORLABEL(msg) >> MSG_CLABEL_SBIT)
116 #define MSG_SET_COLORLABEL_VALUE(msg, val) \
117         MSG_SET_PERM_FLAGS(msg, ((((guint)(val)) & 7) << MSG_CLABEL_SBIT))
118
119 #define MSG_IS_MOVE(msg)                (((msg).tmp_flags & MSG_MOVE) != 0)
120 #define MSG_IS_COPY(msg)                (((msg).tmp_flags & MSG_COPY) != 0)
121
122 #define MSG_IS_QUEUED(msg)              (((msg).tmp_flags & MSG_QUEUED) != 0)
123 #define MSG_IS_DRAFT(msg)               (((msg).tmp_flags & MSG_DRAFT) != 0)
124 #define MSG_IS_ENCRYPTED(msg)           (((msg).tmp_flags & MSG_ENCRYPTED) != 0)
125 #define MSG_IS_IMAP(msg)                (((msg).tmp_flags & MSG_IMAP) != 0)
126 #define MSG_IS_NEWS(msg)                (((msg).tmp_flags & MSG_NEWS) != 0)
127 #define MSG_IS_MIME(msg)                (((msg).tmp_flags & MSG_MIME) != 0)
128 #define MSG_IS_CACHED(msg)              (((msg).tmp_flags & MSG_CACHED) != 0)
129
130 /* Claws related flags */
131 #define MSG_IS_REALLY_DELETED(msg)      (((msg).perm_flags & MSG_REALLY_DELETED) != 0)
132 #define MSG_IS_IGNORE_THREAD(msg)       (((msg).perm_flags & MSG_IGNORE_THREAD) != 0)
133 #define MSG_IS_FILTERING(msg)           (((msg).tmp_flags  & MSG_FILTERING) != 0)
134
135
136 #define WRITE_CACHE_DATA_INT(n, fp) \
137         fwrite(&n, sizeof(n), 1, fp)
138
139 #define WRITE_CACHE_DATA(data, fp) \
140 { \
141         gint len; \
142  \
143         if (data == NULL || (len = strlen(data)) == 0) { \
144                 len = 0; \
145                 WRITE_CACHE_DATA_INT(len, fp); \
146         } else { \
147                 len = strlen(data); \
148                 WRITE_CACHE_DATA_INT(len, fp); \
149                 fwrite(data, len, 1, fp); \
150         } \
151 }
152
153 struct _MsgFlags
154 {
155         MsgPermFlags perm_flags;
156         MsgTmpFlags  tmp_flags;
157 };
158
159 struct _MsgInfo
160 {
161         guint  msgnum;
162         off_t  size;
163         time_t mtime;
164         time_t date_t;
165
166         MsgFlags flags;
167
168         gchar *fromname;
169
170         gchar *date;
171         gchar *from;
172         gchar *to;
173         gchar *cc;
174         gchar *newsgroups;
175         gchar *subject;
176         gchar *msgid;
177         gchar *inreplyto;
178
179         FolderItem *folder;
180         FolderItem *to_folder;
181
182         gchar *xface;
183
184         gchar *dispositionnotificationto;
185         gchar *returnreceiptto;
186
187         gchar *references;
188         gchar *fromspace;
189
190         gint score;
191         gint threadscore;
192
193         /* used only for encrypted messages */
194         gchar *plaintext_file;
195         guint decryption_failed : 1;
196 };
197
198 GHashTable *procmsg_msg_hash_table_create       (GSList         *mlist);
199 void procmsg_msg_hash_table_append              (GHashTable     *msg_table,
200                                                  GSList         *mlist);
201 GHashTable *procmsg_to_folder_hash_table_create (GSList         *mlist);
202
203 GSList *procmsg_read_cache              (FolderItem     *item,
204                                          gboolean        scan_file);
205 void    procmsg_set_flags               (GSList         *mlist,
206                                          FolderItem     *item);
207 gint    procmsg_get_last_num_in_cache   (GSList         *mlist);
208 void    procmsg_msg_list_free           (GSList         *mlist);
209 void    procmsg_write_cache             (MsgInfo        *msginfo,
210                                          FILE           *fp);
211 void    procmsg_write_flags             (MsgInfo        *msginfo,
212                                          FILE           *fp);
213 void    procmsg_get_mark_sum            (const gchar    *folder,
214                                          gint           *new,
215                                          gint           *unread,
216                                          gint           *total);
217 FILE   *procmsg_open_mark_file          (const gchar    *folder,
218                                          gboolean        append);
219
220 GNode  *procmsg_get_thread_tree         (GSList         *mlist);
221
222 void    procmsg_move_messages           (GSList         *mlist);
223 void    procmsg_copy_messages           (GSList         *mlist);
224
225 gchar  *procmsg_get_message_file_path   (MsgInfo        *msginfo);
226 gchar  *procmsg_get_message_file        (MsgInfo        *msginfo);
227 FILE   *procmsg_open_message            (MsgInfo        *msginfo);
228 gboolean procmsg_msg_exist              (MsgInfo        *msginfo);
229
230 void    procmsg_empty_trash             (void);
231 gint    procmsg_send_queue              (void);
232 void    procmsg_print_message           (MsgInfo        *msginfo,
233                                          const gchar    *cmdline);
234
235 MsgInfo *procmsg_msginfo_copy           (MsgInfo        *msginfo);
236 void     procmsg_msginfo_free           (MsgInfo        *msginfo);
237
238 gint procmsg_cmp_msgnum_for_sort        (gconstpointer   a,
239                                          gconstpointer   b);
240
241 #endif /* __PROCMSG_H__ */