aboutsummaryrefslogtreecommitdiffstats
path: root/camel/providers/mbox/camel-mbox-summary.c
blob: fedd9f6411ecc67df33b525f749aa351fb59d315 (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
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
/*
 *  Copyright (C) 2000 Helix Code Inc.
 *
 *  Authors: Michael Zucchi <notzed@helixcode.com>
 *
 *  This program is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU Library 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 Library General Public License for more details.
 *
 *  You should have received a copy of the GNU Library General Public
 *  License along with this program; if not, write to the Free Software
 *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */

#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <sys/uio.h>

#include <stdio.h>
#include <string.h>

#include <gtk/gtk.h>

#include <camel/camel-mime-message.h>

#include <camel/camel-mime-parser.h>
#include <camel/camel-mime-filter.h>
#include <camel/camel-mime-filter-basic.h>
#include <camel/camel-mime-filter-charset.h>
#include <camel/camel-mime-filter-index.h>

#include <camel/camel-mime-utils.h>

#include "camel-mbox-summary.h"

#include <errno.h>
#include <ctype.h>
#include <netinet/in.h>

#define d(x)

#define CAMEL_MBOX_SUMMARY_VERSION 3

static int safe_write(int fd, char *buffer, size_t towrite);
static void camel_mbox_summary_add(CamelMboxSummary *s, CamelMboxMessageInfo *info);

/*
  Disk file format?

  message uid
message-block
  date:
  date received?

  subject: (unicode encoded)
  from: (unicode encoded)
  to: (unicode)

  content-block

content-block
  content-type: ; params;
  content-id:
  content-description:
  content-transfer-encoding:
  message-start:
  header-size:
  body-size:

  message-block
  multipart-block

 */

/* pah, i dont care, its almost no code and it works, dont need a glist */
struct _node {
    struct _node *next;
};

static struct _node *
my_list_append(struct _node **list, struct _node *n)
{
    struct _node *ln = (struct _node *)list;
    while (ln->next)
        ln = ln->next;
    n->next = 0;
    ln->next = n;
    return n;
}

static int
my_list_size(struct _node **list)
{
    int len = 0;
    struct _node *ln = (struct _node *)list;
    while (ln->next) {
        ln = ln->next;
        len++;
    }
    return len;
}

/* low-level io functions */
static int
encode_int (FILE *out, gint32 value)
{
    int i;

    for (i=28;i>0;i-=7) {
        if (value >= (1<<i)) {
            unsigned int c = (value>>i) & 0x7f;
            if (fputc(c, out) == -1)
                return -1;
        }
    }
    return fputc(value | 0x80, out);
}

static gint32
decode_int (FILE *in)
{
        gint32 value=0, v;

        /* until we get the last byte, keep decoding 7 bits at a time */
        while ( ((v = fgetc(in)) & 0x80) == 0 && v!=EOF) {
                value |= v;
                value <<= 7;
        }
        value |= (v&0x7f);
        return value;
}

static int
encode_fixed_int (FILE *out, gint32 value)
{
    guint32 save;

    save = htonl(value);
    return fwrite(&save, sizeof(save), 1, out);
}

static gint32
decode_fixed_int (FILE *out)
{
    guint32 save;

    if (fread(&save, sizeof(save), 1, out) != -1) {
        return ntohl(save);
    } else {
        return -1;
    }
}

/* should be sorted, for binary search */
/* This is a tokenisation mechanism for strings written to the
   summary - to save space.
   This list can have at most 31 words. */
static char * tokens[] = {
    "7bit",
    "8bit",
    "alternative",
    "application",
    "base64",
    "boundary",
    "charset",
    "filename",
    "html",
    "image",
    "iso-8859-1",
    "iso-8859-8",
    "message",
    "mixed",
    "multipart",
    "name",
    "octet-stream",
    "parallel",
    "plain",
    "quoted-printable",
    "rfc822",
    "text",
    "us-ascii",     /* 23 words */
};

#define tokens_len (sizeof(tokens)/sizeof(tokens[0]))

/* baiscally ...
    0 = null
    1-tokens_len == tokens[id-1]
    >=32 string, length = n-32
*/

static int
encode_string (FILE *out, char *str)
{
    if (str == NULL) {
        return encode_int(out, 0);
    } else {
        int len = strlen(str);
        int i, token=-1;

        if (len <= 16) {
            char lower[32];

            for (i=0;i<len;i++)
                lower[i] = tolower(str[i]);
            lower[i] = 0;
            for (i=0;i<tokens_len;i++) {
                if (!strcmp(tokens[i], lower)) {
                    token = i;
                    break;
                }
            }
        }
        if (token != -1) {
            return encode_int(out, token+1);
        } else {
            if (encode_int(out, len+32) == -1)
                return -1;
            return fwrite(str, len, 1, out);
        }
    }
    return 0;
}

static char *
decode_string (FILE *in)
{
    char *ret;
    int len;
    
    len = decode_int(in);

    if (len<32) {
        if (len <= 0) {
            ret = NULL;
        } else if (len<= tokens_len) {
            ret = g_strdup(tokens[len-1]);
        } else {
            g_warning("Invalid token encountered: %d", len);
            ret = NULL;
        }
    } else if (len > 10240) {
        g_warning("Got broken string header length: %d bytes", len);
        ret = NULL;
    } else {
        len -= 32;
        ret = g_malloc(len+1);
        if (fread(ret, len, 1, in) == -1) {
            g_free(ret);
            return NULL;
        }
        ret[len]=0;
    }

    return ret;
}



/* allocation functions */

static void
body_part_dump(CamelMboxMessageContentInfo *bs, int depth)
{
    CamelMboxMessageContentInfo *c;
    char *prefix;

    if (bs == NULL)
        return;

    prefix = alloca(depth*2+1);
    memset(prefix, ' ', depth*2);
    prefix[depth*2]=0;
    printf("%scontent-range: %d %d %d\n", prefix, (int)bs->pos, (int)bs->bodypos, (int)bs->endpos);
    printf("%scontent-type: %s/%s\n", prefix, bs->info.type?bs->info.type->type:"?", bs->info.type?bs->info.type->subtype:"?");
    printf("%scontent-id: %s\n", prefix, bs->info.id);
    printf("%scontent-description: %s\n", prefix, bs->info.description);
    printf("%scontent-transfer-encoding: %s\n", prefix, bs->info.encoding);
    c = (CamelMboxMessageContentInfo *)bs->info.childs;
    while (c) {
        printf("%s -- \n", prefix);
        body_part_dump(c, depth+1);
        c = (CamelMboxMessageContentInfo *)c->info.next;
    }
}

static void
message_struct_dump(CamelMboxMessageInfo *ms)
{
    char *tmp;

    if (ms == NULL) {
        printf("Empty message?\n");
        return;
    }

    printf("Subject: %s\n", ms->info.subject);
    printf("From: %s\n", ms->info.from);
    printf("To: %s\n", ms->info.to);
    tmp = header_format_date(ms->info.date_sent, 0);
    printf("Date: %s\n", tmp);
    g_free(tmp);
    tmp = header_format_date(ms->info.date_received, 0);
    printf("Date-Received: %s\n", tmp);
    g_free(tmp);
    printf("UID: %08x-%04x\n", atoi(ms->info.uid), ms->info.flags);
    printf(" -- content ->\n");
    body_part_dump((CamelMboxMessageContentInfo *)ms->info.content, 1);
}

static CamelMboxMessageContentInfo *
body_part_new(CamelMimeParser *mp, CamelMboxMessageContentInfo *parent, int start, int body)
{
    CamelMboxMessageContentInfo *bs;

    bs = g_malloc0(sizeof(*bs));

    bs->info.parent = (CamelMessageContentInfo *)parent;

    bs->info.type = camel_mime_parser_content_type(mp);
    header_content_type_ref(bs->info.type);

    bs->info.id = header_msgid_decode(camel_mime_parser_header(mp, "content-id", NULL));
    bs->info.description = header_decode_string(camel_mime_parser_header(mp, "content-description", NULL));
    bs->info.encoding = header_content_encoding_decode(camel_mime_parser_header(mp, "content-transfer-encoding", NULL));

    /* not sure what to set here? */
    bs->pos = start;
    bs->bodypos = body;
    bs->endpos = -1;

    if (parent)
        my_list_append((struct _node **)&parent->info.childs, (struct _node *)bs);

    return bs;
}

static CamelMboxMessageInfo *
message_struct_new(CamelMimeParser *mp, CamelMboxMessageContentInfo *parent, int start, int body, off_t xev_offset)
{
    CamelMboxMessageInfo *ms;
    struct _header_address *addr;
    const char *text;

    ms = g_malloc0(sizeof(*ms));

    /* FIXME: what about cc, sender vs from? */
    ms->info.subject = header_decode_string(camel_mime_parser_header(mp, "subject", NULL));
    text = camel_mime_parser_header(mp, "from", NULL);
    addr = header_address_decode(text);
    if (addr) {
        ms->info.from = header_address_list_format(addr);
        header_address_list_clear(&addr);
    } else {
        ms->info.from = g_strdup(text);
    }
    text = camel_mime_parser_header(mp, "to", NULL);
    addr = header_address_decode(text);
    if (addr) {
        ms->info.to = header_address_list_format(addr);
        header_address_list_clear(&addr);
    } else {
        ms->info.to = g_strdup(text);
    }

    ms->info.date_sent = header_decode_date(camel_mime_parser_header(mp, "date", NULL), NULL);
    ms->info.date_received = 0;

    ms->info.content = (CamelMessageContentInfo *)body_part_new(mp, parent, start, body);
    ms->xev_offset = xev_offset;

    return ms;
}

static void
body_part_free(CamelMboxMessageContentInfo *bs)
{
    CamelMboxMessageContentInfo *c, *cn;

    c = (CamelMboxMessageContentInfo *)bs->info.childs;
    while (c) {
        cn = (CamelMboxMessageContentInfo *)c->info.next;
        body_part_free(c);
        c = cn;
    }
    g_free(bs->info.id);
    g_free(bs->info.description);
    g_free(bs->info.encoding);
    header_content_type_unref(bs->info.type);
    g_free(bs);
}

static void
message_struct_free(CamelMboxMessageInfo *ms)
{
    g_free(ms->info.subject);
    g_free(ms->info.to);
    g_free(ms->info.from);
    body_part_free((CamelMboxMessageContentInfo *)ms->info.content);
    g_free(ms);
}


/* IO functions */
static CamelMboxMessageContentInfo *
body_part_load(FILE *in)
{
    CamelMboxMessageContentInfo *bs = NULL, *c;
    struct _header_content_type *ct;
    char *type;
    char *subtype;
    int i, count;

    d(printf("got content-block\n"));
    bs = g_malloc0(sizeof(*bs));
    bs->pos = decode_int(in);
    bs->bodypos = bs->pos + decode_int(in);
    bs->endpos = bs->pos + decode_int(in);

    /* do content type */
    d(printf("got content-type\n"));
    type = decode_string(in);
    subtype = decode_string(in);

    ct = header_content_type_new(type, subtype);
    bs->info.type = ct;
    count = decode_int(in);
    d(printf("getting %d params\n", count));
    for (i=0;i<count;i++) {
        char *name = decode_string(in);
        char *value = decode_string(in);
        
        d(printf(" %s = \"%s\"\n", name, value));
        
        header_content_type_set_param(ct, name, value);
        /* FIXME: do this so we dont have to double alloc/free */
        g_free(name);
        g_free(value);
    }

    d(printf("got content-id\n"));
    bs->info.id = decode_string(in);
    d(printf("got content-description\n"));
    bs->info.description = decode_string(in);
    d(printf("got content-encoding\n"));
    bs->info.encoding = decode_string(in);

    count = decode_int(in);
    d(printf("got children, %d\n", count));
    for (i=0;i<count;i++) {
        c = body_part_load(in);
        if (c) {
            my_list_append((struct _node **)&bs->info.childs, (struct _node *)c);
            c->info.parent = (CamelMessageContentInfo *)bs;
        } else {
            printf("Cannot load child\n");
        }
    }

    return bs;
}

static int
body_part_save(FILE *out, CamelMboxMessageContentInfo *bs)
{
    CamelMboxMessageContentInfo *c, *cn;
    struct _header_content_type *ct;
    struct _header_param *hp;

    encode_int(out, bs->pos);
    encode_int(out, bs->bodypos - bs->pos);
    encode_int(out, bs->endpos - bs->pos);

    ct = bs->info.type;
    if (ct) {
        encode_string(out, ct->type);
        encode_string(out, ct->subtype);
        encode_int(out, my_list_size((struct _node **)&ct->params));
        hp = ct->params;
        while (hp) {
            encode_string(out, hp->name);
            encode_string(out, hp->value);
            hp = hp->next;
        }
    } else {
        encode_string(out, NULL);
        encode_string(out, NULL);
        encode_int(out, 0);
    }
    encode_string(out, bs->info.id);
    encode_string(out, bs->info.description);
    encode_string(out, bs->info.encoding);

    encode_int(out, my_list_size((struct _node **)&bs->info.childs));

    c = (CamelMboxMessageContentInfo *)bs->info.childs;
    while (c) {
        cn = (CamelMboxMessageContentInfo *)c->info.next;
        body_part_save(out, c);
        c = cn;
    }

    return 0;
}

static CamelMboxMessageInfo *
message_struct_load(FILE *in)
{
    CamelMboxMessageInfo *ms;

    ms = g_malloc0(sizeof(*ms));

    ms->info.uid = g_strdup_printf("%u", decode_int(in));
    ms->info.flags = decode_int(in);
    ms->info.date_sent = decode_int(in);
    ms->info.date_received = decode_int(in);
    ms->xev_offset = decode_int(in);
    ms->info.subject = decode_string(in);
    ms->info.from = decode_string(in);
    ms->info.to = decode_string(in);
    ms->info.content = (CamelMessageContentInfo *)body_part_load(in);

    return ms;
}

static int
message_struct_save(FILE *out, CamelMboxMessageInfo *ms)
{
    encode_int(out, strtoul(ms->info.uid, NULL, 10));
    encode_int(out, ms->info.flags);
    encode_int(out, ms->info.date_sent);
    encode_int(out, ms->info.date_received);
    encode_int(out, ms->xev_offset);
    encode_string(out, ms->info.subject);
    encode_string(out, ms->info.from);
    encode_string(out, ms->info.to);
    body_part_save(out, (CamelMboxMessageContentInfo *)ms->info.content);

    return 0;
}

static unsigned int
header_evolution_decode(const char *in, unsigned int *uid, unsigned int *flags)
{
    char *header;
    if (in
        && (header = header_token_decode(in))) {
        if (strlen(header) == strlen("00000000-0000")
            && sscanf(header, "%08x-%04x", uid, flags) == 2) {
            g_free(header);
            return *uid;
        }
        g_free(header);
    }

    return ~0;
}

static int
safe_write(int fd, char *buffer, size_t towrite)
{
    size_t donelen;
    size_t len;

    donelen = 0;
    while (donelen < towrite) {
        len = write(fd, buffer + donelen, towrite - donelen);
        if (len == -1) {
            if (errno == EINTR || errno == EAGAIN)
                continue;
            return -1;
        }
        donelen += len;
    }
    return donelen;
}

static int
header_write(int fd, struct _header_raw *header, unsigned int uid, unsigned int flags)
{
    struct iovec iv[4];
    int outlen = 0;

    iv[1].iov_base = ":";
    iv[1].iov_len = 1;
    iv[3].iov_base = "\n";
    iv[3].iov_len = 1;

    while (header) {
        if (strcasecmp(header->name, "x-evolution")) {
            int len;

            iv[0].iov_base = header->name;
            iv[0].iov_len = strlen(header->name);
            iv[2].iov_base = header->value;
            iv[2].iov_len = strlen(header->value);

            do {
                len = writev(fd, iv, 4);
            } while (len == -1 && errno == EINTR);

            if (len == -1)
                return -1;
            outlen += len;
        }
        header = header->next;
    }

    return outlen;
}

/* returns -1 on error, else number of bytes written */
int
camel_mbox_summary_copy_block(int fromfd, int tofd, off_t readpos, size_t bytes)
{
    char buffer[4096];
    int written = 0;
    off_t pos, newpos;

    pos = lseek(fromfd, 0, SEEK_CUR);
    if (pos == -1)
        return -1;

    newpos = lseek(fromfd, readpos, SEEK_SET);
    if (newpos == -1 || newpos != readpos)
        goto error;

    d(printf("oldpos = %d;  copying %d from %d\n", (int)pos, (int)bytes, (int)readpos));

    while (bytes>0) {
        int toread, towrite, donelen;

        toread = bytes;
        if (bytes>4096)
            toread = 4096;
        else
            toread = bytes;
    reread:
        towrite = read(fromfd, buffer, toread);
        if (towrite == -1) {
            if (errno == EINTR || errno == EAGAIN)
                goto reread;
            goto error;
        }

        /* check for 'end of file' */
        if (towrite == 0)
            break;

        if ( (donelen = safe_write(tofd, buffer, towrite)) == -1)
            goto error;

        written += donelen;
        bytes -= donelen;
    }

    d(printf("written %d bytes\n", written));

    newpos = lseek(fromfd, pos, SEEK_SET);
    if (newpos == -1 || newpos != pos);
        return -1;

    return written;

error:
    lseek(fromfd, pos, SEEK_SET);
    return -1;
}

#define SAVEIT

/* TODO: Allow to sync with current summary info, without over-writing flags if they
   already exist there */
/* TODO: Lazy sync, make this read-only, and dont write out xev headers unless we need
   to? */
static int index_folder(CamelMboxSummary *s, int startoffset)
{
    CamelMimeParser *mp;
    int fd;
    int fdout;
    int state;

    int toplevel = FALSE;
    const char *xev;
    char *data;
    int datalen;

    int enc_id=-1;
    int chr_id=-1;
    int idx_id=-1;
    struct _header_content_type *ct;
    int doindex=FALSE;
    CamelMimeFilterCharset *mfc = NULL;
    CamelMimeFilterIndex *mfi = NULL;
    CamelMimeFilterBasic *mf64 = NULL, *mfqp = NULL;

    CamelMboxMessageContentInfo *body = NULL, *parent = NULL;
    CamelMboxMessageInfo *message = NULL;

    int from_end = 0;   /* start of message */
    int from = 0;       /* start of headers */
    int last_write = 0; /* last written position */
    int eof;
    int write_offset = 0;   /* how much does the dest differ from the source pos */
    int old_offset = 0;

    guint32 newuid, newflags;
    off_t xevoffset = -1;

    char *tmpname;

    printf("indexing %s (%s) from %d\n", s->folder_path, s->summary_path, startoffset);

    fd = open(s->folder_path, O_RDONLY);
    if (fd==-1) {
        perror("Can't open folder");
        return -1;
    }

    tmpname = g_strdup_printf("%s.tmp", s->folder_path);

    fdout = open(tmpname, O_WRONLY|O_CREAT|O_TRUNC, 0600);
    if (fdout==-1) {
        perror("Can't open output");
        g_free(tmpname);
        return -1;
    }

    mp = camel_mime_parser_new();
    camel_mime_parser_init_with_fd(mp, fd);
    camel_mime_parser_scan_from(mp, TRUE);

    /* FIXME: cleaner fail code */
    if (startoffset > 0) {
        if (camel_mime_parser_seek(mp, startoffset, SEEK_SET) != startoffset) {
            g_free(tmpname);
            gtk_object_unref((GtkObject *)mp);
            return -1;
        }
    }

    mfi = camel_mime_filter_index_new_ibex(s->index);

    while ( (state = camel_mime_parser_step(mp, &data, &datalen)) != HSCAN_EOF ) {
        switch(state) {
        case HSCAN_FROM: /* starting a new message content */
            /* save the current position */
            d(printf("from = %d\n", (int)camel_mime_parser_tell(mp)));
            toplevel = FALSE;
            from = camel_mime_parser_tell(mp);
            break;

        case HSCAN_FROM_END:
            d(printf("from-end = %d\n", (int)camel_mime_parser_tell(mp)));
            d(printf("message from %d to %d\n", from_end, (int)camel_mime_parser_tell(mp)));
            from_end = camel_mime_parser_tell(mp);
            break;

        case HSCAN_MESSAGE:
        case HSCAN_MULTIPART:
        case HSCAN_HEADER: /* starting a new header */
            newuid=~0;
            newflags=0;
            if (!toplevel) {
                char name[32];
                unsigned int olduid, oldflags;
                int headerlen;
                int docopy = FALSE;

                /* check for X-Evolution header ... if its there, nothing to do (skip content) */
                xev = camel_mime_parser_header(mp, "x-evolution", (int *)&xevoffset);
                if (xev) {
                    d(printf("An x-evolution header exists at: %d = %s\n", xevoffset + write_offset, xev));
                    xevoffset = xevoffset + write_offset;
                    if (header_evolution_decode(xev, &olduid, &oldflags) != ~0) {
                        d(printf(" uid = %d = %x\n", olduid, olduid));
                        newuid = olduid;
                        newflags = oldflags;
#if 0
                        while (camel_mime_parser_step(mp, &data, &datalen) != HSCAN_FROM_END)
                            ;
                        break;
#endif
                    } else {
                        printf("Invalid xev header?  I need to write out a new one ...\n");
                    }
                }

                toplevel = TRUE;

                /* assign a new uid for this message */
                if (newuid == ~0) {
                    newuid = s->nextuid++;
                    docopy = TRUE;
                } else {
                    /* make sure we account for this uid when assigning uid's */
                    /* this really needs a pre-scan pass ... *sigh* */
                    camel_mbox_summary_set_uid(s, newuid);
                }

                /* setup index name for this uid */
                sprintf(name, "%u", newuid);
                camel_mime_filter_index_set_name(mfi, name);
                /* remove all references to this name from the index */
                if (s->index)
                    ibex_unindex(s->index, name);

                d(printf("Message content starts at %d\n", camel_mime_parser_tell(mp)));
                
                if (docopy) {
                    /* now, copy over bits of mbox from last write, and insert the X-Evolution header (at the top of headers) */
                    /* if we already have a valid x-evolution header, use that, dont need to copy */
                    camel_mbox_summary_copy_block(fd, fdout, last_write, from-last_write);
                    last_write = from;

                    headerlen = header_write(fdout, camel_mime_parser_headers_raw(mp), newuid, 0);
                    sprintf(name, "X-Evolution: %08x-%04x\n\n", newuid, 0);
                    safe_write(fdout, name, strlen(name));
                    d(printf("new X-Evolution at %d\n", headerlen + from + write_offset));
                    xevoffset = headerlen + from + write_offset;
                    old_offset = write_offset;

                    write_offset += (headerlen - (camel_mime_parser_tell(mp)-from)) + strlen(name);
                    last_write = camel_mime_parser_tell(mp);
                }
            } else {
                old_offset = write_offset;
            }

            /* we only care about the rest for actual content parts */
            /* TODO: Cleanup, this is a huge mess */
            if (state != HSCAN_HEADER) {
                if (message == NULL) {
                    message = message_struct_new(mp, parent, camel_mime_parser_tell_start_headers(mp)+old_offset, camel_mime_parser_tell(mp)+write_offset, xevoffset);
                    parent = (CamelMboxMessageContentInfo *)message->info.content;
                    if (newuid != ~0) {
                        message->info.uid = g_strdup_printf("%u", newuid);
                        message->info.flags = newflags;
                    } else {
                        g_warning("This shouldn't happen?");
                    }
                } else {
                    parent = body_part_new(mp, parent, camel_mime_parser_tell_start_headers(mp)+old_offset, camel_mime_parser_tell(mp)+write_offset);
                }
                break;
            }

            if (message == NULL) {
                message = message_struct_new(mp, parent, camel_mime_parser_tell_start_headers(mp)+old_offset, camel_mime_parser_tell(mp)+write_offset, xevoffset);
                body = (CamelMboxMessageContentInfo *)message->info.content;
                if (newuid != ~0) {
                    message->info.uid = g_strdup_printf("%u", newuid);
                    message->info.flags = newflags;
                } else {
                    g_warning("This shouldn't happen?");
                }
            } else {
                body = body_part_new(mp, parent, camel_mime_parser_tell_start_headers(mp)+old_offset, camel_mime_parser_tell(mp)+write_offset);
            }

            /* check headers for types that we can index */
            ct = camel_mime_parser_content_type(mp);
            if (header_content_type_is(ct, "text", "*")) {
                char *encoding;
                const char *charset;
                
                /* TODO: The filters should all be cached, so they aren't recreated between
                   messages/message parts */
                encoding = header_content_encoding_decode(camel_mime_parser_header(mp, "content-transfer-encoding", NULL));
                if (encoding) {
                    if (!strcasecmp(encoding, "base64")) {
                        d(printf("Adding decoding filter for base64\n"));
                        if (mf64 == NULL)
                            mf64 = camel_mime_filter_basic_new_type(CAMEL_MIME_FILTER_BASIC_BASE64_DEC);
                        enc_id = camel_mime_parser_filter_add(mp, (CamelMimeFilter *)mf64);
                    } else if (!strcasecmp(encoding, "quoted-printable")) {
                        d(printf("Adding decoding filter for quoted-printable\n"));
                        if (mfqp == NULL)
                            mfqp = camel_mime_filter_basic_new_type(CAMEL_MIME_FILTER_BASIC_QP_DEC);
                        enc_id = camel_mime_parser_filter_add(mp, (CamelMimeFilter *)mfqp);
                    }
                    g_free(encoding);
                }
                
                charset = header_content_type_param(ct, "charset");
                if (charset!=NULL
                    && !(strcasecmp(charset, "us-ascii")==0
                    || strcasecmp(charset, "utf-8")==0)) {
                    d(printf("Adding conversion filter from %s to utf-8\n", charset));
                    if (mfc == NULL)
                        mfc = camel_mime_filter_charset_new_convert(charset, "utf-8");
                    if (mfc) {
                        chr_id = camel_mime_parser_filter_add(mp, (CamelMimeFilter *)mfc);
                    } else {
                        g_warning("Cannot convert '%s' to 'utf-8', message display may be corrupt", charset);
                    }
                }

                doindex = TRUE;

                /* and this filter actually does the indexing */
                idx_id = camel_mime_parser_filter_add(mp, (CamelMimeFilter *)mfi);
            } else {
                doindex = FALSE;
            }
            break;

            /* fixme, this needs thought *sigh* */
        case HSCAN_MESSAGE_END:
        case HSCAN_MULTIPART_END:
            if (parent) {
                parent->endpos = camel_mime_parser_tell(mp)+write_offset;
                if (parent->info.parent == NULL) {
                    camel_mbox_summary_add(s, message);
                    message = NULL;
                    parent = NULL;
                } else {
                    parent = (CamelMboxMessageContentInfo *)parent->info.parent;
                }
            }
            break;

        case HSCAN_BODY:
            if (doindex) {
                d(printf("Got content to index:\n%.*s", datalen, data));
            }
            break;

        case HSCAN_BODY_END:
            if (body) {
                body->endpos = camel_mime_parser_tell(mp)+write_offset;
                if (body->info.parent == NULL) {
                    camel_mbox_summary_add(s, message);
                    message = NULL;
                }
            }

            d(printf("end of content, removing decoders\n"));
            if (enc_id != -1) {
                camel_mime_parser_filter_remove(mp, enc_id);
                enc_id = -1;
            }
            if (chr_id != -1) {
                camel_mime_parser_filter_remove(mp, chr_id);
                chr_id = -1;
            }
            if (idx_id != -1) {
                camel_mime_parser_filter_remove(mp, idx_id);
                idx_id = -1;
            }
            break;
        }
    }

    /* did we actually write anything out?   Then rename and be done with it. */
    if (last_write>0) {
        eof = camel_mime_parser_tell(mp);
        camel_mbox_summary_copy_block(fd, fdout, last_write, eof-last_write);

        if (close(fdout) == -1) {
            perror("Could not close output file");
            unlink(tmpname);
        } else {
            printf("renaming %s to %s\n", tmpname, s->folder_path);
            if (rename(tmpname, s->folder_path) == -1) {
                perror("Error renaming file");
                unlink(tmpname);
            }
        }
    } else {
        /* no, then dont bother touching the inbox */
        printf("No written changes to mbox, removing tmp file\n");
        close(fdout);
        unlink(tmpname);
    }

    close(fd);

    if (mf64) gtk_object_unref((GtkObject *)mf64);
    if (mfqp) gtk_object_unref((GtkObject *)mfqp);
    if (mfc) gtk_object_unref((GtkObject *)mfc);
    if (mfi) gtk_object_unref((GtkObject *)mfi);

    /* force an index sync? */
    if (s->index) {
        ibex_write(s->index);
    }

        gtk_object_unref((GtkObject *)mp);

    /* and finally ... update the summary sync info */
    {
        struct stat st;

        if (stat(s->folder_path, &st) == 0) {
            s->time = st.st_mtime;
            s->size = st.st_size;
        }
    }

    g_free(tmpname);

    return 0;
}

CamelMboxSummary *camel_mbox_summary_new(const char *summary, const char *folder, ibex *index)
{
    CamelMboxSummary *s;

    s = g_malloc0(sizeof(*s));

    s->dirty = TRUE;
    s->folder_path = g_strdup(folder);
    s->summary_path = g_strdup(summary);
    /* FIXME: refcount index? */
    s->index = index;

    s->messages = g_ptr_array_new();
    s->message_uid = g_hash_table_new(g_str_hash, g_str_equal);

    /* always force an update */
    s->time = 0;
    s->size = 0;

    s->nextuid = 1;

    /* TODO: force an initial load right now? */

    return s;
}

void camel_mbox_summary_unref(CamelMboxSummary *s)
{
    g_warning("Unimplemented function, mbox_summary_unref");
}

/* check that the summary is uptodate, TRUE means it is uptodate */
int camel_mbox_summary_check(CamelMboxSummary *s)
{
    struct stat st;

    /* no folder at all? */
    if (stat(s->folder_path, &st) != 0)
        return FALSE;

    return (st.st_size == s->size) && (st.st_mtime == s->time);
}

static void camel_mbox_summary_add(CamelMboxSummary *s, CamelMboxMessageInfo *info)
{
    CamelMboxMessageInfo *old;

retry:
    if (info->info.uid == NULL) {
        info->info.uid = g_strdup_printf("%u", s->nextuid++);
    }
    if (( old = g_hash_table_lookup(s->message_uid, info->info.uid) )) {
#warning do something fatal with a fatal error.
        /* err, once i work out why it keeps getting called so often */
        d(g_warning("Trying to insert message with clashing uid's new %s exist %s", info->info.uid, old->info.uid));
        g_free(info->info.uid);
        info->info.uid = NULL;
        goto retry;
    }
    d(printf("adding %s\n", info->info.uid));
    g_ptr_array_add(s->messages, info);
    g_hash_table_insert(s->message_uid, info->info.uid, info);
    s->dirty = TRUE;
}

static int summary_header_read(FILE *fp, guint32 *version, time_t *time, size_t *size, guint32 *nextuid)
{
    fseek(fp, 0, SEEK_SET);
    *version = decode_fixed_int(fp);
    *time = decode_fixed_int(fp);
    *size = decode_fixed_int(fp);
    *nextuid = decode_fixed_int(fp);
    return ferror(fp);
}

static void
summary_clear(CamelMboxSummary *s)
{
    int i;

    for (i=0;i<s->messages->len;i++) {
        message_struct_free(g_ptr_array_index(s->messages, i));
    }
    g_ptr_array_free(s->messages, TRUE);
    g_hash_table_destroy(s->message_uid);

    s->messages = g_ptr_array_new();
    s->message_uid = g_hash_table_new(g_str_hash, g_str_equal);
}

int camel_mbox_summary_load(CamelMboxSummary *s)
{
    struct stat st;
    FILE *fp;
    int i, total;
    CamelMboxMessageInfo *info;

    summary_clear(s);

    if ((fp = fopen(s->summary_path, "r")) == NULL) {
        g_warning("Loading non-existant summary, generating summary for folder: %s: %s", s->summary_path, strerror(errno));
        index_folder(s, 0);
        camel_mbox_summary_save(s);
    } else {
        guint32 version, nextuid;
        time_t time;
        size_t size;

        if (stat(s->folder_path, &st) != 0) {
            g_warning("Uh, no folder anyway, aborting");
            fclose(fp);
            return -1;
        }

        if (summary_header_read(fp, &version, &time, &size, &nextuid) != 0
            || version != CAMEL_MBOX_SUMMARY_VERSION) {
            g_warning("Summary missing or version mismatch, reloading summary");
            fclose(fp);
            index_folder(s, 0);
            camel_mbox_summary_save(s);
            return 0;
        }

        s->nextuid = MAX(s->nextuid, nextuid);
        s->time = time;
        s->size = size;
        total = decode_fixed_int(fp);
            
        if (time != st.st_mtime || size != st.st_size) {
            /* if its grown, then just index the new stuff, and load the rest from the summary */
            if (size < st.st_size) {
                g_warning("Indexing/summarizing from start position: %d", size);

                d(printf("loading %d items from summary file\n", total));
                for (i=0;i<total;i++) {
                    info = message_struct_load(fp);
                    if (info) {
                        camel_mbox_summary_add(s, info);
                    } else {
                        break;
                    }
                }
                fclose(fp);
                s->dirty = FALSE;
                index_folder(s, size); /* if it adds any, it'll dirtify it */
                camel_mbox_summary_save(s);
            } else {
                g_warning("Folder changed/smaller, reindexing everything");
                index_folder(s, 0);
                camel_mbox_summary_save(s);
                fclose(fp);
            }
            return 0;
        }

        printf("loading %d items from summary file\n", total);
        for (i=0;i<total;i++) {
            info = message_struct_load(fp);
            if (info) {
                camel_mbox_summary_add(s, info);
            } else {
                break;
            }
        }
        fclose(fp);
        s->dirty = FALSE;
    }
    return 0;
}

static int summary_header_write(FILE *fp, CamelMboxSummary *s)
{
    fseek(fp, 0, SEEK_SET);
    encode_fixed_int(fp, CAMEL_MBOX_SUMMARY_VERSION);
    encode_fixed_int(fp, s->time);
    /* if we're dirty, then dont *really* save it ... */
    if (s->dirty)
        encode_fixed_int(fp, 0);
    else
        encode_fixed_int(fp, s->size);
    encode_fixed_int(fp, s->nextuid);
    fflush(fp);
    return ferror(fp);
}

static int summary_header_save(CamelMboxSummary *s)
{
    int fd;
    FILE *fp;

    fd = open(s->summary_path, O_WRONLY|O_CREAT, 0600);
    if (fd == -1)
        return -1;
    fp = fdopen(fd, "w");
    if (fp == NULL)
        return -1;

    summary_header_write(fp, s);
    return fclose(fp);
}

int camel_mbox_summary_save(CamelMboxSummary *s)
{
    int i, fd;
    FILE *fp;

    printf("saving summary? %s\n", s->summary_path);

    /* FIXME: error checking */
    if (s->dirty) {
        printf("yes\n");
        fd = open(s->summary_path, O_WRONLY|O_CREAT|O_TRUNC, 0600);
        if (fd == -1)
            return -1;
        fp = fdopen(fd, "w");
        if (fp == NULL)
            return -1;

        s->dirty = FALSE;

        summary_header_write(fp, s);
        encode_fixed_int(fp, s->messages->len);

        printf("message count = %d\n", s->messages->len);

        for (i=0;i<s->messages->len;i++) {
            message_struct_save(fp, g_ptr_array_index(s->messages, i));
        }
        fclose(fp);
    } else {
        printf("no\n");
    }
    return 0;
}

CamelMboxMessageInfo *camel_mbox_summary_uid(CamelMboxSummary *s, const char *uid)
{
    return g_hash_table_lookup(s->message_uid, uid);
}

CamelMboxMessageInfo *camel_mbox_summary_index(CamelMboxSummary *s, int index)
{
    return g_ptr_array_index(s->messages, index);
}

int camel_mbox_summary_message_count(CamelMboxSummary *s)
{
    return s->messages->len;
}

guint32 camel_mbox_summary_next_uid(CamelMboxSummary *s)
{
    guint32 uid = s->nextuid++;

    summary_header_save(s);
    return uid;
}

guint32 camel_mbox_summary_set_uid(CamelMboxSummary *s, guint32 uid)
{
    if (s->nextuid <= uid) {
        s->nextuid = uid+1;
        summary_header_save(s);
    }
    return s->nextuid;
}

void camel_mbox_summary_set_flags_by_uid(CamelMboxSummary *s, const char *uid, guint32 flags)
{
    CamelMessageInfo *info;

    info = (CamelMessageInfo *)camel_mbox_summary_uid(s, uid);
    if (info != NULL) {
        if (info->flags != flags) {
            info->flags = flags | CAMEL_MESSAGE_FOLDER_FLAGGED;
            s->dirty = TRUE;
        }
    } else {
        g_warning("Message has dissapeared from summary?  uid %s", uid);
    }
}

/* update offsets in the summary to take account deleted parts */
static void
offset_content(CamelMboxMessageContentInfo *content, off_t offset)
{
    content->pos -= offset;
    content->bodypos -= offset;
    content->endpos -= offset;
    content = (CamelMboxMessageContentInfo *)content->info.childs;
    while (content) {
        offset_content(content, offset);
        content = (CamelMboxMessageContentInfo *)content->info.next;
    }
}

void camel_mbox_summary_remove_uid(CamelMboxSummary *s, const char *uid)
{
    CamelMboxMessageInfo *oldinfo;
    char *olduid;

    if (g_hash_table_lookup_extended(s->message_uid, uid, (void *)&olduid, (void *)&oldinfo)) {
#if 0
        /* FIXME: this code should be executed to update the summary info,
           however, only if we're not depending on the info not changing yet */
        off_t offset = info->endpos - info->pos;
        int i, count, got = FALSE;

        count = s->messages->len;
        for (i=0;i<count;i++) {
            CamelMboxMessageInfo *minfo = g_ptr_array_index(s->messages, i);
            if (got) {
                offset_content(minfo, offset);
            } else if (minfo == info) {
                got = TRUE;
            }
        }
#endif
        g_hash_table_remove(s->message_uid, uid);
        g_ptr_array_remove(s->messages, oldinfo);
        message_struct_free(oldinfo);
        g_free(olduid);
    }
}

/* perform expunge/update xev headers, etc */
/* TODO: merge this with the indexing code, so that it can index new parts
   without having to reread everything again? */
/* TODO: sync with the mbox, if it has changed */
int
camel_mbox_summary_expunge(CamelMboxSummary *s)
{
    int quick = TRUE, work=FALSE;
    int i, count;
    CamelMboxMessageInfo *info;

    printf("Executing expunge ...\n");

    count = camel_mbox_summary_message_count(s);
    for (i=0;quick && i<count;i++) {
        info = camel_mbox_summary_index(s, i);
        if (info->xev_offset == -1 || info->info.flags & CAMEL_MESSAGE_DELETED)
            quick = FALSE;
        else
            work |= (info->info.flags & CAMEL_MESSAGE_FOLDER_FLAGGED) != 0;
    }
    if (quick) {
        int fd;
        char name[32];

        if (!work)
            return 0;

        camel_mbox_summary_save(s);

        fd = open(s->folder_path, O_WRONLY);

        if (fd == -1) {
            g_error("Cannot open folder for update: %s", strerror(errno));
            return -1;
        }

        /* poke in the new xev info */
        for (i=0;i<count;i++) {
            info = camel_mbox_summary_index(s, i);
            g_assert(info);
            g_assert(info->xev_offset != -1);
            if (info->info.flags & CAMEL_MESSAGE_FOLDER_FLAGGED) {
                printf("Setting new flags to message %s = %04x\n", info->info.uid, info->info.flags & 0xffff);
                lseek(fd, info->xev_offset, SEEK_SET);
                sprintf(name, "X-Evolution: %08x-%04x\n\n", (unsigned int)strtoul(info->info.uid, NULL, 10), info->info.flags & 0xffff);
                write(fd, name, strlen(name));
                info->info.flags &= ~CAMEL_MESSAGE_FOLDER_FLAGGED;
            }
        }
        close(fd);
    } else {
        char *tmpname;
        int fd, fdout;
        int last_write = 0, offset = 0, summary_end = 0, last_start = 0;
        CamelMboxMessageContentInfo *content;
        struct stat st;

        printf("We must expunge messages and/or write headers\n");

        /* FIXME: This should check the current summary is correct */

        /* we have to write out new headers or delete messages, starting from message i */

        fd = open(s->folder_path, O_RDONLY);
        if (fd == -1) {
            g_error("Cannot open folder for read: %s", strerror(errno));
            return -1;
        }

        tmpname = g_strdup_printf("%s.tmp", s->folder_path);
        fdout = open(tmpname, O_WRONLY|O_CREAT|O_TRUNC, 0600);
        if (fdout == -1) {
            g_error("Cannot open tmp file for write: %s", strerror(errno));
            close(fd);
            g_free(tmpname);
            return -1;
        }

        for (i=0;i<count;i++) {
            info = camel_mbox_summary_index(s, i);
            g_assert(info);
            g_assert(info->info.content);

            content = (CamelMboxMessageContentInfo *)info->info.content;

            /* FIXME: Must also write out xev headers etc, as appropriate? */

            /* we need to use the end of the previous message, becuase the beginning of
               this message doesn't include the "^From " line. */

            /* do we remove this message? */
            if (info->info.flags & CAMEL_MESSAGE_DELETED) {
                printf("Deleting message: %s\n", info->info.uid);
                camel_mbox_summary_copy_block(fd, fdout, last_write, last_start-last_write);
                offset += (content->endpos - last_start);
                last_write = content->endpos;
                last_start = last_write;

                /* remove this message from the index */
                if (s->index) {
                    ibex_unindex(s->index, info->info.uid);
                }

                camel_mbox_summary_remove_uid(s, info->info.uid);
                i--; /* redo this index */
                count--;
            } else {
                printf("Keeping message: %s\n", info->info.uid);
                last_start = content->endpos;
                offset_content(content, offset);
                summary_end = content->endpos;
            }
        }
        /* copy the rest of the file ... */
        camel_mbox_summary_copy_block(fd, fdout, last_write, INT_MAX);

        close(fd);
        if (close(fdout) == -1) {
            g_error("Cannot close tmp folder: %s", strerror(errno));
            unlink(tmpname);
            g_free(tmpname);
            return -1;
        }

        if (rename(tmpname, s->folder_path) == -1) {
            g_error("Cannot rename folder: %s", strerror(errno));
            unlink(tmpname);
            g_free(tmpname);
            return -1;
        }

        /* force an index sync */
        if (s->index) {
            ibex_write(s->index);
        }

        /* update summary size to match the actual (written) folder size ... */
        s->size = summary_end;
        /* and the time to match the newly written time, so we dont update needlessly */
        if (stat(s->folder_path, &st) == 0) {
            s->time = st.st_mtime;
        }

        camel_mbox_summary_save(s);
    }

    return 0;
}


#if 0
int main(int argc, char **argv)
{
    if (argc<2) {
        printf("usage: %s mbox\n", argv[0]);
        return 1;
    }

    gtk_init(&argc, &argv);

    index_folder(argv[1]);

    return 0;
}
#endif