aboutsummaryrefslogtreecommitdiffstats
path: root/camel/providers/imap/camel-imap-folder.c
blob: ab0050c8880cfc343bf7faf603a86d0b2352ccdf (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
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8; fill-column: 160 -*- */
/* camel-imap-folder.c : Abstract class for an email folder */

/* 
 * Authors: Jeffrey Stedfast <fejj@helixcode.com> 
 *
 * Copyright (C) 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-imap-folder.h"
#include "camel-imap-store.h"
#include "camel-imap-stream.h"
#include "string-utils.h"
#include "camel-stream.h"
#include "camel-stream-fs.h"
#include "camel-stream-mem.h"
#include "camel-stream-buffer.h"
#include "camel-data-wrapper.h"
#include "camel-mime-message.h"
#include "camel-stream-filter.h"
#include "camel-mime-filter-from.h"
#include "camel-mime-filter-crlf.h"
#include "camel-exception.h"
#include "camel-mime-utils.h"

#define d(x)

#define CF_CLASS(o) (CAMEL_FOLDER_CLASS (GTK_OBJECT (o)->klass))

static CamelFolderClass *parent_class = NULL;

static void imap_init (CamelFolder *folder, CamelStore *parent_store,
               CamelFolder *parent_folder, const gchar *name,
               gchar *separator, gboolean path_begns_with_sep,
               CamelException *ex);

static void imap_sync (CamelFolder *folder, gboolean expunge, CamelException *ex);
#if 0
static gboolean imap_exists (CamelFolder *folder, CamelException *ex);
static gboolean imap_delete (CamelFolder *folder, gboolean recurse, CamelException *ex);
static gboolean imap_delete_messages (CamelFolder *folder, CamelException *ex);
#endif
static gint imap_get_message_count (CamelFolder *folder, CamelException *ex);
static void imap_append_message (CamelFolder *folder, CamelMimeMessage *message, CamelException *ex);
static GPtrArray *imap_get_uids (CamelFolder *folder, CamelException *ex);
static GPtrArray *imap_get_subfolder_names (CamelFolder *folder, CamelException *ex);
static GPtrArray *imap_get_summary (CamelFolder *folder, CamelException *ex);
static void imap_free_summary (CamelFolder *folder, GPtrArray *array);
static CamelMimeMessage *imap_get_message_by_uid (CamelFolder *folder, const gchar *uid, 
                          CamelException *ex);

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

#if 0
static void _copy_message_to (CamelFolder *folder, CamelMimeMessage *message, 
                  CamelFolder *dest_folder, CamelException *ex);
static const gchar *_get_message_uid (CamelFolder *folder, CamelMimeMessage *message, 
                      CamelException *ex);
#endif

static void imap_delete_message_by_uid(CamelFolder *folder, const gchar *uid, CamelException *ex);

static const CamelMessageInfo *imap_summary_get_by_uid(CamelFolder *f, const char *uid);

static GList *imap_search_by_expression(CamelFolder *folder, const char *expression, CamelException *ex);

static void imap_finalize (GtkObject *object);

static void
camel_imap_folder_class_init (CamelImapFolderClass *camel_imap_folder_class)
{
    CamelFolderClass *camel_folder_class = CAMEL_FOLDER_CLASS (camel_imap_folder_class);
    GtkObjectClass *gtk_object_class = GTK_OBJECT_CLASS (camel_folder_class);

    parent_class = gtk_type_class (camel_folder_get_type ());
        
    /* virtual method definition */

    /* virtual method overload */
    camel_folder_class->init = imap_init;

    camel_folder_class->sync = imap_sync;
#if 0
    camel_folder_class->exists = imap_exists;
    camel_folder_class->create = imap_create;
    camel_folder_class->delete = imap_delete;
    camel_folder_class->delete_messages = imap_delete_messages;
#endif
    camel_folder_class->get_message_count = imap_get_message_count;
    camel_folder_class->append_message = imap_append_message;
    camel_folder_class->get_uids = imap_get_uids;
    camel_folder_class->get_subfolder_names = imap_get_subfolder_names;
    camel_folder_class->get_summary = imap_get_summary;
    camel_folder_class->free_summary = imap_free_summary;
    camel_folder_class->expunge = imap_expunge;

    camel_folder_class->get_message_by_uid = imap_get_message_by_uid;
    camel_folder_class->delete_message_by_uid = imap_delete_message_by_uid;

    camel_folder_class->search_by_expression = imap_search_by_expression;

    camel_folder_class->summary_get_by_uid = imap_summary_get_by_uid;

    gtk_object_class->finalize = imap_finalize; 
}

static void
camel_imap_folder_init (gpointer object, gpointer klass)
{
    CamelImapFolder *imap_folder = CAMEL_IMAP_FOLDER (object);
    CamelFolder *folder = CAMEL_FOLDER (object);

    folder->can_hold_messages = TRUE;
    folder->can_hold_folders = TRUE;
    folder->has_summary_capability = FALSE;
    folder->has_search_capability = FALSE;

    imap_folder->count = -1;
}

GtkType
camel_imap_folder_get_type (void)
{
    static GtkType camel_imap_folder_type = 0;
    
    if (!camel_imap_folder_type)    {
        GtkTypeInfo camel_imap_folder_info =    
        {
            "CamelImapFolder",
            sizeof (CamelImapFolder),
            sizeof (CamelImapFolderClass),
            (GtkClassInitFunc) camel_imap_folder_class_init,
            (GtkObjectInitFunc) camel_imap_folder_init,
                /* reserved_1 */ NULL,
                /* reserved_2 */ NULL,
            (GtkClassInitFunc) NULL,
        };
        
        camel_imap_folder_type = gtk_type_unique (CAMEL_FOLDER_TYPE, &camel_imap_folder_info);
    }
    
    return camel_imap_folder_type;
}

CamelFolder *
camel_imap_folder_new (CamelStore *parent, CamelException *ex)
{
    CamelFolder *folder = CAMEL_FOLDER (gtk_object_new (camel_imap_folder_get_type (), NULL));
    
    CF_CLASS (folder)->init (folder, parent, NULL, "INBOX", "/", FALSE, ex);

    return folder;
}

static void           
imap_finalize (GtkObject *object)
{
    GTK_OBJECT_CLASS (parent_class)->finalize (object);
}

static void 
imap_init (CamelFolder *folder, CamelStore *parent_store, CamelFolder *parent_folder,
       const gchar *name, gchar *separator, gboolean path_begins_with_sep, CamelException *ex)
{
    CamelImapFolder *imap_folder = CAMEL_IMAP_FOLDER (folder);
    int status;
    char *result;
    
    /* 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 = FALSE;  /* TODO: double-check this */
    folder->has_search_capability = TRUE;    /* This is really a "maybe" */

    
        /* some IMAP daemons support user-flags           *
     * I would not, however, rely on this feature as  *
     * most IMAP daemons are not 100% RFC compliant   */
    folder->permanent_flags = CAMEL_MESSAGE_SEEN |
        CAMEL_MESSAGE_ANSWERED |
        CAMEL_MESSAGE_FLAGGED |
        CAMEL_MESSAGE_DELETED |
        CAMEL_MESSAGE_DRAFT |
        CAMEL_MESSAGE_USER;

    
    imap_folder->search = NULL;

    /* SELECT the IMAP mail spool */
    status = camel_imap_command_extended (CAMEL_IMAP_STORE (folder->parent_store), folder,
                          &result, "SELECT %s", folder->full_name);
    if (status != CAMEL_IMAP_OK) {
        CamelService *service = CAMEL_SERVICE (folder->parent_store);
        camel_exception_setv (ex, CAMEL_EXCEPTION_SERVICE_UNAVAILABLE,
                      "Could not SELECT %s on IMAP server %s: %s.",
                      folder->full_name, service->url->host, 
                      status == CAMEL_IMAP_ERR ? result :
                      "Unknown error");
    }
    g_free(result);
}

static void
imap_sync (CamelFolder *folder, gboolean expunge, CamelException *ex)
{
    /* TODO: actually code this method */
    if (expunge)
        imap_expunge (folder, ex);
}

static void
imap_expunge (CamelFolder *folder, CamelException *ex)
{
    gchar *result;
    gint status;

    g_return_if_fail (folder != NULL);
    
    status = camel_imap_command_extended (CAMEL_IMAP_STORE (folder->parent_store), folder,
                          &result, "EXPUNGE");
    
    if (status != CAMEL_IMAP_OK) {
        CamelService *service = CAMEL_SERVICE (folder->parent_store);
        camel_exception_setv (ex, CAMEL_EXCEPTION_SERVICE_UNAVAILABLE,
                      "Could not EXPUNGE from IMAP server %s: %s.",
                      service->url->host,
                      status == CAMEL_IMAP_ERR ? result :
                      "Unknown error");
        g_free (result);
        return;
    }
    
    g_free(result);
}

#if 0
static gboolean
imap_exists (CamelFolder *folder, CamelException *ex)
{
    /* make sure the folder exists */
    GPtrArray *lsub;
    gboolean exists = FALSE;
    int i, max;

    g_return_val_if_fail (folder != NULL, FALSE);

    /* check if the imap file path is determined */
    if (!folder->full_name) {
        camel_exception_set (ex, CAMEL_EXCEPTION_FOLDER_INVALID,
                     "undetermined folder file path. Maybe use set_name ?");
        return FALSE;
    }

    /* check if the imap dir path is determined */
    if (!folder->full_name) {
        camel_exception_set (ex, CAMEL_EXCEPTION_FOLDER_INVALID,
                     "undetermined folder directory path. Maybe use set_name ?");
        return FALSE;
    }

    /* Get a listing of the folders that exist */
    lsub = imap_get_subfolder_names (folder, ex);

    /* look to see if any of those subfolders match... */
    max = lsub->len;
    for (i = 0; i < max; i++)
        if (!strcmp(g_ptr_array_index(lsub, i), folder->full_name))
        {
            exists = TRUE;
            break;
        }

    g_ptr_array_free (lsub, TRUE);

    return exists;
}
#endif

#if 0
static gboolean
imap_delete (CamelFolder *folder, gboolean recurse, CamelException *ex)
{
    /* TODO: code this & what should this do? delete messages or the folder? */
    CamelImapFolder *imap_folder = CAMEL_IMAP_FOLDER (folder);
    gboolean folder_already_exists;

    g_return_val_if_fail (folder != NULL, FALSE);

    /* check if the folder object exists */

    /* in the case where the folder does not exist, 
       return immediatly */
    folder_already_exists = camel_folder_exists (folder, ex);
    if (camel_exception_get_id (ex))
        return FALSE;

    if (!folder_already_exists)
        return TRUE;


    /* call default implementation.
       It should delete the messages in the folder
       and recurse the operation to subfolders */
    parent_class->delete (folder, recurse, ex);
    if (camel_exception_get_id (ex))
        return FALSE;

    if (!(folder->full_name || folder->name)) {
        camel_exception_set (ex, CAMEL_EXCEPTION_FOLDER_INVALID,
                     "invalid folder path. Use set_name ?");
        return FALSE;
    }
    
        /* delete the directory - we must start with the leaves and work
       back to the root if we are to delete recursively */

    /* TODO: Finish this... */

    return TRUE;
}
#endif

static gint
imap_get_message_count (CamelFolder *folder, CamelException *ex)
{
    CamelImapFolder *imap_folder = CAMEL_IMAP_FOLDER (folder);
    gchar *result, *msg_count;
    gint status;

    g_return_val_if_fail (folder != NULL, -1);

    /* If we already have a count, return */
    if (imap_folder->count != -1)
        return imap_folder->count;

    status = camel_imap_command_extended (CAMEL_IMAP_STORE (folder->parent_store), folder,
                          &result, "STATUS %s (MESSAGES)", folder->full_name);

    if (status != CAMEL_IMAP_OK) {
        CamelService *service = CAMEL_SERVICE (folder->parent_store);
        camel_exception_setv (ex, CAMEL_EXCEPTION_SERVICE_UNAVAILABLE,
                      "Could not get message count from IMAP "
                      "server %s: %s.", service->url->host,
                      status == CAMEL_IMAP_ERR ? result :
                      "Unknown error");
        g_free (result);
        return -1;
    }

    /* parse out the message count - should come in the form: "* STATUS <folder> (MESSAGES <count>)\r\n" */
    if (result && *result == '*') {
        if ((msg_count = strstr(result, "MESSAGES")) != NULL) {
            msg_count += strlen("MESSAGES") + 1;

            for ( ; *msg_count == ' '; msg_count++);
            
            /* we should now be pointing to the message count */
            imap_folder->count = atoi(msg_count);
        }
    }
    g_free(result);

    return imap_folder->count;
}

/* TODO: Optimize this later - there may be times when moving/copying a message from the
   same IMAP store in which case we'd want to use IMAP's COPY command */
static void
imap_append_message (CamelFolder *folder, CamelMimeMessage *message, CamelException *ex)
{
    CamelStreamMem *mem;
    gchar *result;
    gint status;

    g_return_if_fail (folder != NULL);
    g_return_if_fail (message != NULL);

    /* write the message to a CamelStreamMem so we can get it's size */
    mem = CAMEL_STREAM_MEM (camel_stream_mem_new());
    if (camel_data_wrapper_write_to_stream (CAMEL_DATA_WRAPPER (message), CAMEL_STREAM (mem)) == -1) {
        CamelService *service = CAMEL_SERVICE (folder->parent_store);
        camel_exception_setv (ex, CAMEL_EXCEPTION_SYSTEM,
                      "Could not APPEND message to IMAP server %s: %s.",
                      service->url->host,
                      g_strerror (errno));

            return;
    }

    mem->buffer = g_byte_array_append(mem->buffer, g_strdup("\r\n"), 3);
    status = camel_imap_command(CAMEL_IMAP_STORE (folder->parent_store),
                    folder, &result,
                    "APPEND %s (\\Seen) {%d}\r\n%s",
                    folder->full_name,
                    mem->buffer->len,
                    mem->buffer->data);

    if (status != CAMEL_IMAP_OK) {
        CamelService *service = CAMEL_SERVICE (folder->parent_store);
        camel_exception_setv (ex, CAMEL_EXCEPTION_SERVICE_UNAVAILABLE,
                      "Could not APPEND message to IMAP server %s: %s.",
                      service->url->host,
                      status == CAMEL_IMAP_ERR ? result :
                      "Unknown error");
        g_free (result);
        return;
    }

    g_free(result);
    return;
}

static GPtrArray *
imap_get_uids (CamelFolder *folder, CamelException *ex) 
{
    CamelImapFolder *imap_folder = CAMEL_IMAP_FOLDER (folder);
    CamelMessageInfo *info;
    GPtrArray *array, *infolist;
    gint i, count;

    infolist = imap_get_summary (folder, ex);
    count = infolist->len;
    
    array = g_ptr_array_new ();
    g_ptr_array_set_size (array, count);
    for (i = 0; i < count; i++) {
        info = (CamelMessageInfo *) g_ptr_array_index (infolist, i);
        array->pdata[i] = g_strdup(info->uid);
    }

    imap_free_summary (folder, infolist);
    
    return array;
}

static GPtrArray *
imap_get_subfolder_names (CamelFolder *folder, CamelException *ex)
{
    CamelImapFolder *imap_folder = CAMEL_IMAP_FOLDER (folder);
    GPtrArray *listing;
    gint status;
    gchar *result;
    
    g_return_val_if_fail (folder != NULL, g_ptr_array_new());
    
    if (imap_folder->count != -1)
        return g_ptr_array_new ();
    
    status = camel_imap_command_extended(CAMEL_IMAP_STORE (folder->parent_store), folder,
                         &result, "LSUB \"\" \"%s\"", folder->full_name);
    
    if (status != CAMEL_IMAP_OK) {
        CamelService *service = CAMEL_SERVICE (folder->parent_store);
        camel_exception_setv (ex, CAMEL_EXCEPTION_SERVICE_UNAVAILABLE,
                      "Could not get subfolder listing from IMAP "
                      "server %s: %s.", service->url->host,
                      status == CAMEL_IMAP_ERR ? result :
                      "Unknown error");
        g_free (result);
        return g_ptr_array_new ();
    }
    
    /* parse out the subfolders */
    listing = g_ptr_array_new ();
    g_ptr_array_add(listing, g_strdup("INBOX"));
    if (result) {
        char *ptr = result;
        
        while (*ptr == '*') {
            gchar *flags, *end, *dir_sep, *param = NULL;
            
            ptr = flags = strchr(ptr, '(') + 1;    /* jump to the flags section */
            end = strchr(flags, ')');              /* locate end of flags */
            flags = g_strndup(flags, (gint)(end - flags));
            
            if (strstr(flags, "\\NoSelect")) {
                g_free(flags);
                continue;
            }
            g_free(flags);

            ptr = dir_sep = strchr(ptr, '"') + 1;  /* jump to the first param */
            end = strchr(param, '"');              /* locate the end of the param */
            dir_sep = g_strndup(dir_sep, (gint)(end - param));

            /* skip to the actual directory parameter */
            for (ptr = end++; *ptr == ' '; ptr++);
                        for (end = ptr; *end && *end != '\n'; end++);
            param = g_strndup(ptr, (gint)(end - ptr));

            g_ptr_array_add(listing, param);

            g_free(dir_sep);  /* TODO: decide if we really need dir_sep */

            if (*end)
                ptr = end + 1;
            else
                ptr = end;
        }
    }
    g_free(result);

    return listing;
}

static void
imap_delete_message_by_uid (CamelFolder *folder, const gchar *uid, CamelException *ex)
{
    gchar *result;
    gint status;

    status = camel_imap_command_extended (CAMEL_IMAP_STORE (folder->parent_store), folder,
                          &result, "UID STORE %s +FLAGS.SILENT (\\Deleted)", uid);

    if (status != CAMEL_IMAP_OK) {
        CamelService *service = CAMEL_SERVICE (folder->parent_store);
        
        camel_exception_setv (ex, CAMEL_EXCEPTION_SERVICE_UNAVAILABLE,
                      "Could not mark message %s as 'Deleted' on IMAP server %s: %s",
                      uid, service->url->host,
                      status == CAMEL_IMAP_ERR ? result :
                      "Unknown error");
        g_free (result);
        return;
    }

    g_free (result);
    return;
}

static CamelMimeMessage *
imap_get_message_by_uid (CamelFolder *folder, const gchar *uid, CamelException *ex)
{
    CamelStream *imap_stream;
    CamelStream *msgstream;
    CamelStreamFilter *f_stream;   /* will be used later w/ crlf filter */
    CamelMimeFilter *filter;       /* crlf/dot filter */
    CamelMimeMessage *msg;
    CamelMimePart *part;
    CamelDataWrapper *cdw;
    gchar *cmdbuf;
    int id;

    /* TODO: fetch the correct part, get rid of the hard-coded stuff */
    cmdbuf = g_strdup_printf ("UID FETCH %s BODY[TEXT]", uid);
    imap_stream = camel_imap_stream_new (CAMEL_IMAP_FOLDER (folder), cmdbuf);
    g_free (cmdbuf);


    /* Temp hack - basically we read in the entire message instead of getting a part as it's needed */
    msgstream = camel_stream_mem_new ();
    camel_stream_write_to_stream (msgstream, CAMEL_STREAM (imap_stream));
    gtk_object_unref (GTK_OBJECT (imap_stream));
    
    f_stream = camel_stream_filter_new_with_stream (msgstream);
    filter = camel_mime_filter_crlf_new (CAMEL_MIME_FILTER_CRLF_DECODE, CAMEL_MIME_FILTER_CRLF_MODE_CRLF_DOTS);
    id = camel_stream_filter_add (f_stream, CAMEL_MIME_FILTER (filter));
    
    msg = camel_mime_message_new ();
    
    /*cdw = camel_data_wrapper_new ();*/
    /*camel_data_wrapper_construct_from_stream (cdw, CAMEL_STREAM (f_stream));*/
    camel_data_wrapper_construct_from_stream (CAMEL_DATA_WRAPPER (msg), CAMEL_STREAM (f_stream));
    
    camel_stream_filter_remove (f_stream, id);
    camel_stream_close (CAMEL_STREAM (f_stream));
    gtk_object_unref (GTK_OBJECT (msgstream));
    gtk_object_unref (GTK_OBJECT (f_stream));
    
    /*camel_data_wrapper_set_mime_type (cdw, "text/plain");*/

    /*camel_medium_set_content_object (CAMEL_MEDIUM (msg), CAMEL_DATA_WRAPPER (cdw));*/
    /*gtk_object_unref (GTK_OBJECT (cdw));*/
    
    return msg;
}

/* This probably shouldn't go here...but it will for now */
static gchar *
get_header_field (gchar *header, gchar *field)
{
    gchar *part, *index, *p, *q;

    index = strstrcase(header, field);
    if (index == NULL)
        return NULL;

    p = index + strlen (field) + 1;
    for (q = p; *q; q++)
        if (*q == '\n' && (*(q + 1) != ' ' || *(q + 1) != '\t'))
            break;

    part = g_strndup (p, (gint)(q - p));

    /* it may be wrapped on multiple lines, so lets strip out \n's */
    for (p = part; *p; ) {
        if (*p == '\r' || *p == '\n')
            memmove(p, p + 1, strlen (p) - 1);
        else
            p++;
    }
    
    return part;
}

GPtrArray *
imap_get_summary (CamelFolder *folder, CamelException *ex)
{
    /* TODO: code this - loop: "FETCH <i> BODY.PEEK[HEADER]" and parse */
    GPtrArray *array = NULL;
    CamelMessageInfo *info;
    int i, num, status;
    char *result, *datestr;
    
    num = imap_get_message_count (folder, ex);
    
    array = g_ptr_array_new ();
    
    for (i = 0; i < num; i++) {
        status = camel_imap_command_extended (CAMEL_IMAP_STORE (folder->parent_store), folder,
                              &result, "FETCH %d BODY.PEEK[HEADER]", i);
        
        if (status != CAMEL_IMAP_OK) {
            g_free (result);
            break;
        }
        
        info = g_malloc0 (sizeof (CamelMessageInfo));
        info->subject = get_header_field (result, "\nSubject:");
        info->to = get_header_field (result, "\nTo:");
        info->from = get_header_field (result, "\nFrom:");

        datestr = get_header_field (result, "\nDate:");
        info->date_sent = header_decode_date (datestr, NULL);
        g_free (datestr);
        
        info->uid = NULL;  /* FIXME: how can we get the UID? */
        g_free (result);
        
        /* still need to get flags */

        g_ptr_array_add (array, info);
    }

    return array;
}

void
imap_free_summary (CamelFolder *folder, GPtrArray *array)
{
    CamelMessageInfo *info;
    gint i, max;

    max = array->len;
    for (i = 0; i < max; i++) {
        info = g_ptr_array_index (array, i);
        g_free (info->subject);
        g_free (info->to);
        g_free (info->from);
        g_free (info->uid);
    }

    g_ptr_array_free (array, TRUE);
    
    return;
}

/* get a single message info, by uid */
static const CamelMessageInfo *
imap_summary_get_by_uid (CamelFolder *folder, const char *uid)
{
    /* TODO: code this - do a "UID FETCH <uid> BODY.PEEK[HEADER]" and parse */
    CamelMessageInfo *info = NULL;
    char *result, *datestr;
    int status;

    status = camel_imap_command_extended (CAMEL_IMAP_STORE (folder->parent_store), folder,
                          &result, "UID FETCH %s BODY.PEEK[HEADER]", uid);

    if (status != CAMEL_IMAP_OK) {
        g_free (result);
        return NULL;
    }

    info = g_malloc0 (sizeof (CamelMessageInfo));
    info->subject = get_header_field (result, "\nSubject:");
    info->to = get_header_field (result, "\nTo:");
    info->from = get_header_field (result, "\nFrom:");
    
    datestr = get_header_field (result, "\nDate:");
    info->date_sent = header_decode_date (datestr, NULL);
    g_free (datestr);
    
    info->uid = g_strdup (uid);
    g_free (result);

    /* still need to get flags */

    return info;
}

static GList *
imap_search_by_expression (CamelFolder *folder, const char *expression, CamelException *ex)
{
    return NULL;
#if 0
    /* TODO: find a good way of doing this */
    CamelImapFolder *imap_folder = CAMEL_IMAP_FOLDER (folder);

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

    camel_folder_search_set_folder(imap_folder->search, folder);
    if (imap_folder->summary)
        /* FIXME: dont access summary array directly? */
        camel_folder_search_set_summary(imap_folder->search,
                        CAMEL_FOLDER_SUMMARY (imap_folder->summary)->messages);
    camel_folder_search_set_body_index(imap_folder->search, imap_folder->index);

    return camel_folder_search_execute_expression(imap_folder->search, expression, ex);
#endif
}