aboutsummaryrefslogtreecommitdiffstats
path: root/camel/providers/mbox/camel-mbox-folder.c
blob: d533b675b9579eab4b9671d02d3a041848dff045 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8; fill-column: 160 -*- */
/* camel-mbox-folder.c : Abstract class for an email folder */

/* 
 * Authors: Bertrand Guiheneuf <bertrand@helixcode.com> 
 *          Michael Zucchi <notzed@helixcode.com>
 *          Jeffrey Stedfast <fejj@helixcode.com>
 *
 * Copyright (C) 1999, 2000 Helix Code Inc.
 *
 * This program is free software; you can redistribute it and/or 
 * modify it under the terms of the GNU General Public License as 
 * published by the Free Software Foundation; either version 2 of the
 * License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
 * USA
 */

#include <config.h>

#include <stdlib.h>
#include <sys/types.h>
#include <dirent.h>
#include <sys/stat.h>
#include <unistd.h>
#include <errno.h>
#include <string.h>
#include <fcntl.h>

#include "camel-mbox-folder.h"
#include "camel-mbox-store.h"
#include "string-utils.h"
#include "camel-stream-fs.h"
#include "camel-mbox-summary.h"
#include "camel-data-wrapper.h"
#include "camel-mime-message.h"
#include "camel-stream-filter.h"
#include "camel-mime-filter-from.h"
#include "camel-exception.h"

#define d(x)

static CamelFolderClass *parent_class = NULL;

/* Returns the class for a CamelMboxFolder */
#define CMBOXF_CLASS(so) CAMEL_MBOX_FOLDER_CLASS (CAMEL_OBJECT_GET_CLASS(so))
#define CF_CLASS(so) CAMEL_FOLDER_CLASS (CAMEL_OBJECT_GET_CLASS(so))
#define CMBOXS_CLASS(so) CAMEL_STORE_CLASS (CAMEL_OBJECT_GET_CLASS(so))


static void mbox_init(CamelFolder *folder, CamelStore * parent_store,
              CamelFolder *parent_folder, const gchar * name,

              gchar * separator, gboolean path_begins_with_sep, CamelException *ex);

static void mbox_sync(CamelFolder *folder, gboolean expunge, CamelException *ex);
static gint mbox_get_message_count(CamelFolder *folder);
static gint mbox_get_unread_message_count(CamelFolder *folder);
static void mbox_append_message(CamelFolder *folder, CamelMimeMessage * message, const CamelMessageInfo * info,

                CamelException *ex);
static GPtrArray *mbox_get_uids(CamelFolder *folder);
static GPtrArray *mbox_get_subfolder_names(CamelFolder *folder);
static GPtrArray *mbox_get_summary(CamelFolder *folder);
static CamelMimeMessage *mbox_get_message(CamelFolder *folder, const gchar * uid, CamelException *ex);

static void mbox_expunge(CamelFolder *folder, CamelException *ex);

static const CamelMessageInfo *mbox_get_message_info(CamelFolder *folder, const char *uid);

static GPtrArray *mbox_search_by_expression(CamelFolder *folder, const char *expression, CamelException *ex);
static void mbox_search_free(CamelFolder *folder, GPtrArray * result);

static guint32 mbox_get_message_flags(CamelFolder *folder, const char *uid);
static void mbox_set_message_flags(CamelFolder *folder, const char *uid, guint32 flags, guint32 set);
static gboolean mbox_get_message_user_flag(CamelFolder *folder, const char *uid, const char *name);
static void mbox_set_message_user_flag(CamelFolder *folder, const char *uid, const char *name, gboolean value);
static const char *mbox_get_message_user_tag(CamelFolder *folder, const char *uid, const char *name);
static void mbox_set_message_user_tag(CamelFolder *folder, const char *uid, const char *name, const char *value);


static void mbox_finalize(CamelObject * object);

static void
camel_mbox_folder_class_init(CamelMboxFolderClass * camel_mbox_folder_class)
{
    CamelFolderClass *camel_folder_class = CAMEL_FOLDER_CLASS(camel_mbox_folder_class);

    parent_class = CAMEL_FOLDER_CLASS(camel_type_get_global_classfuncs(camel_folder_get_type()));

    /* virtual method definition */

    /* virtual method overload */
    camel_folder_class->init = mbox_init;
    camel_folder_class->sync = mbox_sync;
    camel_folder_class->get_message_count = mbox_get_message_count;
    camel_folder_class->get_unread_message_count = mbox_get_unread_message_count;
    camel_folder_class->append_message = mbox_append_message;
    camel_folder_class->get_uids = mbox_get_uids;
    camel_folder_class->free_uids = camel_folder_free_deep;
    camel_folder_class->get_subfolder_names = mbox_get_subfolder_names;
    camel_folder_class->free_subfolder_names = camel_folder_free_deep;
    camel_folder_class->get_summary = mbox_get_summary;
    camel_folder_class->free_summary = camel_folder_free_nop;
    camel_folder_class->expunge = mbox_expunge;

    camel_folder_class->get_message = mbox_get_message;

    camel_folder_class->search_by_expression = mbox_search_by_expression;
    camel_folder_class->search_free = mbox_search_free;

    camel_folder_class->get_message_info = mbox_get_message_info;

    camel_folder_class->get_message_flags = mbox_get_message_flags;
    camel_folder_class->set_message_flags = mbox_set_message_flags;
    camel_folder_class->get_message_user_flag = mbox_get_message_user_flag;
    camel_folder_class->set_message_user_flag = mbox_set_message_user_flag;
    camel_folder_class->get_message_user_tag = mbox_get_message_user_tag;
    camel_folder_class->set_message_user_tag = mbox_set_message_user_tag;
}

static void
mbox_finalize(CamelObject * object)
{
    CamelMboxFolder *mbox_folder = CAMEL_MBOX_FOLDER(object);

    g_free(mbox_folder->folder_file_path);
    g_free(mbox_folder->summary_file_path);
    g_free(mbox_folder->folder_dir_path);
    g_free(mbox_folder->index_file_path);

}

CamelType camel_mbox_folder_get_type(void)
{
    static CamelType camel_mbox_folder_type = CAMEL_INVALID_TYPE;

    if (camel_mbox_folder_type == CAMEL_INVALID_TYPE) {
        camel_mbox_folder_type = camel_type_register(CAMEL_FOLDER_TYPE, "CamelMboxFolder",
                                 sizeof(CamelMboxFolder),
                                 sizeof(CamelMboxFolderClass),
                                 (CamelObjectClassInitFunc) camel_mbox_folder_class_init,
                                 NULL,
                                 (CamelObjectInitFunc) NULL,
                                 (CamelObjectFinalizeFunc) mbox_finalize);
    }

    return camel_mbox_folder_type;
}

static void
mbox_init(CamelFolder *folder, CamelStore * parent_store,
      CamelFolder *parent_folder, const gchar * name, gchar * separator,
      gboolean path_begins_with_sep, CamelException *ex)
{
    CamelMboxFolder *mbox_folder = (CamelMboxFolder *) folder;
    const gchar *root_dir_path;
    gchar *real_name;
    int forceindex;
    struct stat st;

    /* call parent method */
    parent_class->init(folder, parent_store, parent_folder, name, separator, path_begins_with_sep, ex);
    if (camel_exception_get_id(ex))
        return;

    /* we assume that the parent init
       method checks for the existance of @folder */
    folder->can_hold_messages = TRUE;
    folder->can_hold_folders = TRUE;
    folder->has_summary_capability = TRUE;
    folder->has_search_capability = TRUE;

    folder->permanent_flags = CAMEL_MESSAGE_ANSWERED |
        CAMEL_MESSAGE_DELETED |
        CAMEL_MESSAGE_DRAFT | CAMEL_MESSAGE_FLAGGED | CAMEL_MESSAGE_SEEN | CAMEL_MESSAGE_USER;
    /* FIXME: we don't actually preserve user flags right now. */

    mbox_folder->summary = NULL;
    mbox_folder->search = NULL;

    /* now set the name info */
    g_free(mbox_folder->folder_file_path);
    g_free(mbox_folder->folder_dir_path);
    g_free(mbox_folder->index_file_path);

    root_dir_path = camel_mbox_store_get_toplevel_dir(CAMEL_MBOX_STORE(folder->parent_store));

    real_name = g_basename(folder->full_name);
    mbox_folder->folder_file_path = g_strdup_printf("%s/%s", root_dir_path, real_name);
    mbox_folder->summary_file_path = g_strdup_printf("%s/%s-ev-summary", root_dir_path, real_name);
    mbox_folder->folder_dir_path = g_strdup_printf("%s/%s.sdb", root_dir_path, real_name);
    mbox_folder->index_file_path = g_strdup_printf("%s/%s.ibex", root_dir_path, real_name);

    /* if we have no index file, force it */
    forceindex = stat(mbox_folder->index_file_path, &st) == -1;

    mbox_folder->index = ibex_open(mbox_folder->index_file_path, O_CREAT | O_RDWR, 0600);
    if (mbox_folder->index == NULL) {
        /* yes, this isn't fatal at all */
        g_warning("Could not open/create index file: %s: indexing not performed", strerror(errno));
    }

    /* no summary (disk or memory), and we're proverbially screwed */
    mbox_folder->summary = camel_mbox_summary_new(mbox_folder->summary_file_path,
                              mbox_folder->folder_file_path, mbox_folder->index);
    if (mbox_folder->summary == NULL || camel_mbox_summary_load(mbox_folder->summary, forceindex) == -1) {
        camel_exception_set(ex, CAMEL_EXCEPTION_FOLDER_INVALID, /* FIXME: right error code */
                    "Could not create summary");
        return;
    }
}

static void
mbox_sync(CamelFolder *folder, gboolean expunge, CamelException *ex)
{
    CamelMboxFolder *mbox_folder = CAMEL_MBOX_FOLDER(folder);

    if (expunge)
        mbox_expunge(folder, ex);
    else
        camel_mbox_summary_sync(mbox_folder->summary, FALSE, ex);

    /* save index */
    if (mbox_folder->index)
        ibex_save(mbox_folder->index);
    if (mbox_folder->summary)
        camel_folder_summary_save(CAMEL_FOLDER_SUMMARY(mbox_folder->summary));
}

static void
mbox_expunge(CamelFolder *folder, CamelException *ex)
{
    CamelMboxFolder *mbox = CAMEL_MBOX_FOLDER(folder);

    camel_mbox_summary_sync(mbox->summary, TRUE, ex);

    /* TODO: check it actually changed */
    camel_object_trigger_event(CAMEL_OBJECT(folder), "folder_changed", GINT_TO_POINTER(0));
}

static gint
mbox_get_message_count(CamelFolder *folder)
{
    CamelMboxFolder *mbox_folder = CAMEL_MBOX_FOLDER(folder);

    g_return_val_if_fail(mbox_folder->summary != NULL, -1);

    return camel_folder_summary_count(CAMEL_FOLDER_SUMMARY(mbox_folder->summary));
}

static gint
mbox_get_unread_message_count(CamelFolder *folder)
{
    CamelMboxFolder *mbox_folder = CAMEL_MBOX_FOLDER(folder);
    CamelMessageInfo *info;
    GPtrArray *infolist;
    gint i, max, count = 0;

    g_return_val_if_fail(mbox_folder->summary != NULL, -1);

    max = camel_folder_summary_count(CAMEL_FOLDER_SUMMARY(mbox_folder->summary));
    if (max == -1)
        return -1;

    infolist = mbox_get_summary(folder);

    for (i = 0; i < infolist->len; i++) {
        info = (CamelMessageInfo *) g_ptr_array_index(infolist, i);
        if (!(info->flags & CAMEL_MESSAGE_SEEN))
            count++;
    }

    return count;
}

/* FIXME: this may need some tweaking for performance? */
static void
mbox_append_message(CamelFolder *folder, CamelMimeMessage * message, const CamelMessageInfo * info, CamelException *ex)
{
    CamelMboxFolder *mbox_folder = CAMEL_MBOX_FOLDER(folder);
    CamelStream *output_stream = NULL, *filter_stream = NULL;
    CamelMimeFilter *filter_from = NULL;
    CamelMessageInfo *newinfo;
    struct stat st;
    off_t seek = -1;
    char *xev, last;
    guint32 uid;
    char *fromline = NULL;

    if (stat(mbox_folder->folder_file_path, &st) != 0)
        goto fail;

    output_stream = camel_stream_fs_new_with_name(mbox_folder->folder_file_path, O_RDWR, 0600);
    if (output_stream == NULL)
        goto fail;

    if (st.st_size) {
        seek = camel_seekable_stream_seek((CamelSeekableStream *) output_stream, st.st_size - 1, SEEK_SET);
        if (++seek != st.st_size)
            goto fail;

        /* If the mbox doesn't end with a newline, fix that. */
        if (camel_stream_read(output_stream, &last, 1) != 1)
            goto fail;
        if (last != '\n')
            camel_stream_write(output_stream, "\n", 1);
    } else
        seek = 0;

    /* assign a new x-evolution header/uid */
    camel_medium_remove_header(CAMEL_MEDIUM(message), "X-Evolution");
    uid = camel_folder_summary_next_uid(CAMEL_FOLDER_SUMMARY(mbox_folder->summary));
    /* important that the header matches exactly 00000000-0000 */
    xev = g_strdup_printf("%08x-%04x", uid, info ? info->flags & 0xFFFF : 0);
    camel_medium_add_header(CAMEL_MEDIUM(message), "X-Evolution", xev);
    g_free(xev);

    /* we must write this to the non-filtered stream ... */
    fromline = camel_mbox_summary_build_from(CAMEL_MIME_PART(message)->headers);
    if (camel_stream_write_string(output_stream, fromline) == -1)
        goto fail;

    /* and write the content to the filtering stream, that translated '\nFrom' into '\n>From' */
    filter_stream = (CamelStream *) camel_stream_filter_new_with_stream(output_stream);
    filter_from = (CamelMimeFilter *) camel_mime_filter_from_new();
    camel_stream_filter_add((CamelStreamFilter *) filter_stream, filter_from);
    if (camel_data_wrapper_write_to_stream(CAMEL_DATA_WRAPPER(message), filter_stream) == -1)
        goto fail;

    if (camel_stream_close(filter_stream) == -1)
        goto fail;

    /* filter stream ref's the output stream itself, so we need to unref it too */
    camel_object_unref(CAMEL_OBJECT(filter_from));
    camel_object_unref(CAMEL_OBJECT(filter_stream));
    camel_object_unref(CAMEL_OBJECT(output_stream));
    g_free(fromline);

    /* force a summary update - will only update from the new position, if it can */
    if (camel_mbox_summary_update(mbox_folder->summary, seek) == 0) {
        char uidstr[16];

        sprintf(uidstr, "%u", uid);
        newinfo = camel_folder_summary_uid(CAMEL_FOLDER_SUMMARY(mbox_folder->summary), uidstr);

        if (info && newinfo) {
            CamelFlag *flag = info->user_flags;
            CamelTag *tag = info->user_tags;

            while (flag) {
                camel_flag_set(&(newinfo->user_flags), flag->name, TRUE);
                flag = flag->next;
            }

            while (tag) {
                camel_tag_set(&(newinfo->user_tags), tag->name, tag->value);
                tag = tag->next;
            }
        }
        camel_object_trigger_event(CAMEL_OBJECT(folder), "folder_changed", GINT_TO_POINTER(0));
    }

    return;

      fail:
    if (camel_exception_is_set(ex)) {
        camel_exception_setv(ex, camel_exception_get_id(ex),
                     "Cannot append message to mbox file: %s", camel_exception_get_description(ex));
    } else {
        camel_exception_setv(ex, CAMEL_EXCEPTION_SYSTEM,
                     "Cannot append message to mbox file: %s", g_strerror(errno));
    }
    if (filter_stream) {
        /*camel_stream_close (filter_stream); */
        camel_object_unref(CAMEL_OBJECT(filter_stream));
    }
    if (output_stream)
        camel_object_unref(CAMEL_OBJECT(output_stream));

    if (filter_from)
        camel_object_unref(CAMEL_OBJECT(filter_from));

    g_free(fromline);

    /* make sure the file isn't munged by us */
    if (seek != -1) {
        int fd = open(mbox_folder->folder_file_path, O_WRONLY, 0600);

        if (fd != -1) {
            ftruncate(fd, st.st_size);
            close(fd);
        }
    }
}

static GPtrArray *
mbox_get_uids(CamelFolder *folder)
{
    GPtrArray *array;
    CamelMboxFolder *mbox_folder = CAMEL_MBOX_FOLDER(folder);
    int i, count;

    count = camel_folder_summary_count(CAMEL_FOLDER_SUMMARY(mbox_folder->summary));
    array = g_ptr_array_new();
    g_ptr_array_set_size(array, count);
    for (i = 0; i < count; i++) {
        CamelMboxMessageInfo *info =
            (CamelMboxMessageInfo *) camel_folder_summary_index(CAMEL_FOLDER_SUMMARY(mbox_folder->summary), i);

        array->pdata[i] = g_strdup(info->info.uid);
    }

    return array;
}

static GPtrArray *
mbox_get_subfolder_names(CamelFolder *folder)
{
    /* No subfolders. */
    return g_ptr_array_new();
}

static CamelMimeMessage *
mbox_get_message(CamelFolder *folder, const gchar * uid, CamelException *ex)
{
    CamelMboxFolder *mbox_folder = CAMEL_MBOX_FOLDER(folder);
    CamelStream *message_stream = NULL;
    CamelMimeMessage *message = NULL;
    CamelMboxMessageInfo *info;
    CamelMimeParser *parser = NULL;
    char *buffer;
    int len;

    /* get the message summary info */
    info = (CamelMboxMessageInfo *) camel_folder_summary_uid(CAMEL_FOLDER_SUMMARY(mbox_folder->summary), uid);

    if (info == NULL) {
        errno = ENOENT;
        goto fail;
    }

    /* if this has no content, its an error in the library */
    g_assert(info->info.content);
    g_assert(info->frompos != -1);

    /* where we read from */
    message_stream = camel_stream_fs_new_with_name(mbox_folder->folder_file_path, O_RDONLY, 0);
    if (message_stream == NULL)
        goto fail;

    /* we use a parser to verify the message is correct, and in the correct position */
    parser = camel_mime_parser_new();
    camel_mime_parser_init_with_stream(parser, message_stream);
    camel_object_unref(CAMEL_OBJECT(message_stream));
    camel_mime_parser_scan_from(parser, TRUE);

    camel_mime_parser_seek(parser, info->frompos, SEEK_SET);
    if (camel_mime_parser_step(parser, &buffer, &len) != HSCAN_FROM) {
        g_warning("File appears truncated");
        goto fail;
    }

    if (camel_mime_parser_tell_start_from(parser) != info->frompos) {
        g_warning("Summary doesn't match the folder contents!  eek!\n"
              "  expecting offset %ld got %ld", (long int)info->frompos,
              (long int)camel_mime_parser_tell_start_from(parser));
        errno = EINVAL;
        goto fail;
    }

    message = camel_mime_message_new();
    if (camel_mime_part_construct_from_parser(CAMEL_MIME_PART(message), parser) == -1) {
        g_warning("Construction failed");
        goto fail;
    }
    camel_object_unref(CAMEL_OBJECT(parser));

    return message;

      fail:
    camel_exception_setv(ex, CAMEL_EXCEPTION_FOLDER_INVALID_UID, "Cannot get message: %s", g_strerror(errno));

    if (parser)
        camel_object_unref(CAMEL_OBJECT(parser));
    if (message)
        camel_object_unref(CAMEL_OBJECT(message));

    return NULL;
}

GPtrArray *
mbox_get_summary(CamelFolder *folder)
{
    CamelMboxFolder *mbox_folder = CAMEL_MBOX_FOLDER(folder);

    return CAMEL_FOLDER_SUMMARY(mbox_folder->summary)->messages;
}

/* get a single message info, by uid */
static const CamelMessageInfo *
mbox_get_message_info(CamelFolder *folder, const char *uid)
{
    CamelMboxFolder *mbox_folder = CAMEL_MBOX_FOLDER(folder);

    return camel_folder_summary_uid(CAMEL_FOLDER_SUMMARY(mbox_folder->summary), uid);
}

static GPtrArray *
mbox_search_by_expression(CamelFolder *folder, const char *expression, CamelException *ex)
{
    CamelMboxFolder *mbox_folder = CAMEL_MBOX_FOLDER(folder);

    if (mbox_folder->search == NULL) {
        mbox_folder->search = camel_folder_search_new();
    }

    camel_folder_search_set_folder(mbox_folder->search, folder);
    if (mbox_folder->summary) {
        /* FIXME: dont access summary array directly? */
        camel_folder_search_set_summary(mbox_folder->search,
                        CAMEL_FOLDER_SUMMARY(mbox_folder->summary)->messages);
    }

    camel_folder_search_set_body_index(mbox_folder->search, mbox_folder->index);

    return camel_folder_search_execute_expression(mbox_folder->search, expression, ex);
}

static void
mbox_search_free(CamelFolder *folder, GPtrArray * result)
{
    CamelMboxFolder *mbox_folder = CAMEL_MBOX_FOLDER(folder);

    camel_folder_search_free_result(mbox_folder->search, result);
}

static guint32
mbox_get_message_flags(CamelFolder *folder, const char *uid)
{
    CamelMessageInfo *info;
    CamelMboxFolder *mf = CAMEL_MBOX_FOLDER(folder);

    info = camel_folder_summary_uid(CAMEL_FOLDER_SUMMARY(mf->summary), uid);
    g_return_val_if_fail(info != NULL, 0);

    return info->flags;
}

static void
mbox_set_message_flags(CamelFolder *folder, const char *uid, guint32 flags, guint32 set)
{
    CamelMessageInfo *info;
    CamelMboxFolder *mf = CAMEL_MBOX_FOLDER(folder);

    info = camel_folder_summary_uid(CAMEL_FOLDER_SUMMARY(mf->summary), uid);
    g_return_if_fail(info != NULL);

    info->flags = (info->flags & ~flags) | (set & flags) | CAMEL_MESSAGE_FOLDER_FLAGGED;
    camel_folder_summary_touch(CAMEL_FOLDER_SUMMARY(mf->summary));

    camel_object_trigger_event(CAMEL_OBJECT(folder), "message_changed", (char *) uid);
}

static gboolean
mbox_get_message_user_flag(CamelFolder *folder, const char *uid, const char *name)
{
    CamelMessageInfo *info;
    CamelMboxFolder *mf = CAMEL_MBOX_FOLDER(folder);

    info = camel_folder_summary_uid(CAMEL_FOLDER_SUMMARY(mf->summary), uid);
    g_return_val_if_fail(info != NULL, FALSE);

    return camel_flag_get(&info->user_flags, name);
}

static void
mbox_set_message_user_flag(CamelFolder *folder, const char *uid, const char *name, gboolean value)
{
    CamelMessageInfo *info;
    CamelMboxFolder *mf = CAMEL_MBOX_FOLDER(folder);

    info = camel_folder_summary_uid(CAMEL_FOLDER_SUMMARY(mf->summary), uid);
    g_return_if_fail(info != NULL);

    camel_flag_set(&info->user_flags, name, value);
    info->flags |= CAMEL_MESSAGE_FOLDER_FLAGGED;
    camel_folder_summary_touch(CAMEL_FOLDER_SUMMARY(mf->summary));
    camel_object_trigger_event(CAMEL_OBJECT(folder), "message_changed", (char *) uid);
}

static const char *mbox_get_message_user_tag(CamelFolder *folder, const char *uid, const char *name)
{
    CamelMessageInfo *info;
    CamelMboxFolder *mf = CAMEL_MBOX_FOLDER(folder);

    info = camel_folder_summary_uid(CAMEL_FOLDER_SUMMARY(mf->summary), uid);
    g_return_val_if_fail(info != NULL, FALSE);

    return camel_tag_get(&info->user_tags, name);
}

static void mbox_set_message_user_tag(CamelFolder *folder, const char *uid, const char *name, const char *value)
{
    CamelMessageInfo *info;
    CamelMboxFolder *mf = CAMEL_MBOX_FOLDER(folder);

    info = camel_folder_summary_uid(CAMEL_FOLDER_SUMMARY(mf->summary), uid);
    g_return_if_fail(info != NULL);

    camel_tag_set(&info->user_tags, name, value);
    info->flags |= CAMEL_MESSAGE_FOLDER_FLAGGED;
    camel_folder_summary_touch(CAMEL_FOLDER_SUMMARY(mf->summary));
    camel_object_trigger_event(CAMEL_OBJECT(folder), "message_changed", (char *) uid);
}