update dutch translation
[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         MSG_LOCKED          = 1 << 11,   /* msg is locked  */
69
70         /* RESERVED */
71         MSG_RESERVED_CLAWS  = 1 << 30,  /* for sylpheed-claws */
72         MSG_RESERVED_MAIN   = 1 << 31   /* for sylpheed-main  */
73 } MsgPermFlags;
74
75 #define MSG_CLABEL_FLAG_MASK    (MSG_CLABEL_7)
76
77 typedef enum
78 {
79         MSG_MOVE        = 1 << 0,
80         MSG_COPY        = 1 << 1,
81
82         MSG_QUEUED      = 1 << 16,
83         MSG_DRAFT       = 1 << 17,
84         MSG_ENCRYPTED   = 1 << 18,
85         MSG_IMAP        = 1 << 19,
86         MSG_NEWS        = 1 << 20,
87
88         MSG_MIME        = 1 << 29,
89
90         MSG_CACHED      = 1 << 31
91 } MsgTmpFlags;
92
93 #define MSG_CACHED_FLAG_MASK    (MSG_MIME | MSG_ENCRYPTED)
94
95 #define MSG_SET_FLAGS(msg, flags)       { (msg) |= (flags); }
96 #define MSG_UNSET_FLAGS(msg, flags)     { (msg) &= ~(flags); }
97 #define MSG_SET_PERM_FLAGS(msg, flags) \
98         MSG_SET_FLAGS((msg).perm_flags, flags)
99 #define MSG_SET_TMP_FLAGS(msg, flags) \
100         MSG_SET_FLAGS((msg).tmp_flags, flags)
101 #define MSG_UNSET_PERM_FLAGS(msg, flags) \
102         MSG_UNSET_FLAGS((msg).perm_flags, flags)
103 #define MSG_UNSET_TMP_FLAGS(msg, flags) \
104         MSG_UNSET_FLAGS((msg).tmp_flags, flags)
105
106 #define MSG_IS_NEW(msg)                 (((msg).perm_flags & MSG_NEW) != 0)
107 #define MSG_IS_UNREAD(msg)              (((msg).perm_flags & MSG_UNREAD) != 0)
108 #define MSG_IS_MARKED(msg)              (((msg).perm_flags & MSG_MARKED) != 0)
109 #define MSG_IS_DELETED(msg)             (((msg).perm_flags & MSG_DELETED) != 0)
110 #define MSG_IS_REPLIED(msg)             (((msg).perm_flags & MSG_REPLIED) != 0)
111 #define MSG_IS_LOCKED(msg)              (((msg).perm_flags & MSG_LOCKED) != 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
134
135 #define WRITE_CACHE_DATA_INT(n, fp) \
136         fwrite(&n, sizeof(n), 1, fp)
137
138 #define WRITE_CACHE_DATA(data, fp) \
139 { \
140         gint len; \
141  \
142         if (data == NULL || (len = strlen(data)) == 0) { \
143                 len = 0; \
144                 WRITE_CACHE_DATA_INT(len, fp); \
145         } else { \
146                 len = strlen(data); \
147                 WRITE_CACHE_DATA_INT(len, fp); \
148                 fwrite(data, len, 1, fp); \
149         } \
150 }
151
152 struct _MsgFlags
153 {
154         MsgPermFlags perm_flags;
155         MsgTmpFlags  tmp_flags;
156 };
157
158 struct _MsgInfo
159 {
160         guint  msgnum;
161         off_t  size;
162         time_t mtime;
163         time_t date_t;
164
165         MsgFlags flags;
166
167         gchar *fromname;
168
169         gchar *date;
170         gchar *from;
171         gchar *to;
172         gchar *cc;
173         gchar *newsgroups;
174         gchar *subject;
175         gchar *msgid;
176         gchar *inreplyto;
177
178         FolderItem *folder;
179         FolderItem *to_folder;
180
181         gchar *xface;
182
183         gchar *dispositionnotificationto;
184         gchar *returnreceiptto;
185
186         gchar *references;
187         gchar *fromspace;
188
189         gint score;
190         gint threadscore;
191
192         /* used only for encrypted messages */
193         gchar *plaintext_file;
194         guint decryption_failed : 1;
195 };
196
197 GHashTable *procmsg_msg_hash_table_create       (GSList         *mlist);
198 void procmsg_msg_hash_table_append              (GHashTable     *msg_table,
199                                                  GSList         *mlist);
200 GHashTable *procmsg_to_folder_hash_table_create (GSList         *mlist);
201
202 GSList *procmsg_read_cache              (FolderItem     *item,
203                                          gboolean        scan_file);
204 void    procmsg_set_flags               (GSList         *mlist,
205                                          FolderItem     *item);
206 gint    procmsg_get_last_num_in_cache   (GSList         *mlist);
207 void    procmsg_msg_list_free           (GSList         *mlist);
208 void    procmsg_write_cache             (MsgInfo        *msginfo,
209                                          FILE           *fp);
210 void    procmsg_write_flags             (MsgInfo        *msginfo,
211                                          FILE           *fp);
212 void    procmsg_get_mark_sum            (const gchar    *folder,
213                                          gint           *new,
214                                          gint           *unread,
215                                          gint           *total);
216 FILE   *procmsg_open_mark_file          (const gchar    *folder,
217                                          gboolean        append);
218
219 GNode  *procmsg_get_thread_tree         (GSList         *mlist);
220
221 void    procmsg_move_messages           (GSList         *mlist);
222 void    procmsg_copy_messages           (GSList         *mlist);
223
224 gchar  *procmsg_get_message_file_path   (MsgInfo        *msginfo);
225 gchar  *procmsg_get_message_file        (MsgInfo        *msginfo);
226 FILE   *procmsg_open_message            (MsgInfo        *msginfo);
227 gboolean procmsg_msg_exist              (MsgInfo        *msginfo);
228
229 void    procmsg_empty_trash             (void);
230 gint    procmsg_send_queue              (void);
231 void    procmsg_print_message           (MsgInfo        *msginfo,
232                                          const gchar    *cmdline);
233
234 MsgInfo *procmsg_msginfo_copy           (MsgInfo        *msginfo);
235 void     procmsg_msginfo_free           (MsgInfo        *msginfo);
236
237 gint procmsg_cmp_msgnum_for_sort        (gconstpointer   a,
238                                          gconstpointer   b);
239 gint procmsg_send_message_queue         (const gchar *file);
240
241 #endif /* __PROCMSG_H__ */