File: ix01.html

package info (click to toggle)
evolution-data-server 2.22.3-1.1%2Blenny2
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 69,336 kB
  • ctags: 44,478
  • sloc: ansic: 341,205; xml: 65,790; tcl: 30,499; sh: 19,137; perl: 11,529; cpp: 8,264; java: 7,653; makefile: 6,871; awk: 1,338; yacc: 1,105; sed: 772; cs: 505; lex: 134; python: 30; asm: 14
file content (1770 lines) | stat: -rw-r--r-- 131,358 bytes parent folder | download
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
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Index</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.73.2">
<link rel="start" href="index.html" title="Camel Reference Manual">
<link rel="up" href="classes.html" title="Part I. Camel Classes">
<link rel="prev" href="camel-CamelMimeParser.html" title="CamelMimeParser">
<meta name="generator" content="GTK-Doc V1.11 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
<link rel="part" href="classes.html" title="Part I. Camel Classes">
<link rel="chapter" href="ClassTree.html" title="Class hierarchy">
<link rel="chapter" href="Fundamentals.html" title="Fundamentals">
<link rel="chapter" href="Streams.html" title="Streams">
<link rel="chapter" href="Filters.html" title="Stream Filters">
<link rel="chapter" href="Services.html" title="Services">
<link rel="chapter" href="Folders.html" title="Folders">
<link rel="chapter" href="Addresses.html" title="Addresses">
<link rel="chapter" href="Crypto.html" title="Crypto Contexts">
<link rel="chapter" href="MIME.html" title="MIME Objects">
<link rel="index" href="ix01.html" title="Index">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
<td><a accesskey="p" href="camel-CamelMimeParser.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
<td><a accesskey="u" href="classes.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
<th width="100%" align="center">Camel Reference Manual</th>
<td> </td>
</tr></table>
<div class="index">
<div class="titlepage"><div><div><h2 class="title">
<a name="id2770010"></a>Index</h2></div></div></div>
<div class="index">
<div class="indexdiv">
<h3>C</h3>
<dl>
<dt>CamelAddress, <a class="indexterm" href="camel-CamelAddress.html#CamelAddress">struct CamelAddress</a>
</dt>
<dt>CamelBestencEncoding, <a class="indexterm" href="camel-CamelMimeFilterBestenc.html#CamelBestencEncoding">enum CamelBestencEncoding</a>
</dt>
<dt>CamelBestencRequired, <a class="indexterm" href="camel-CamelMimeFilterBestenc.html#CamelBestencRequired">enum CamelBestencRequired</a>
</dt>
<dt>CamelCipherCertInfo, <a class="indexterm" href="camel-CamelCipherContext.html#CamelCipherCertInfo">CamelCipherCertInfo</a>
</dt>
<dt>CamelCipherContext, <a class="indexterm" href="camel-CamelCipherContext.html#CamelCipherContext">CamelCipherContext</a>
</dt>
<dt>CamelCipherHash, <a class="indexterm" href="camel-CamelCipherContext.html#CamelCipherHash">enum CamelCipherHash</a>
</dt>
<dt>CamelCipherValidity, <a class="indexterm" href="camel-CamelCipherContext.html#CamelCipherValidity">CamelCipherValidity</a>
</dt>
<dt>CamelCopyFunc, <a class="indexterm" href="camel-CamelObject.html#CamelCopyFunc">CamelCopyFunc ()</a>
</dt>
<dt>CamelDataWrapper, <a class="indexterm" href="camel-CamelDataWrapper.html#CamelDataWrapper">struct CamelDataWrapper</a>
</dt>
<dt>CamelException, <a class="indexterm" href="camel-camel-exception.html#CamelException">struct CamelException</a>
</dt>
<dt>CamelFlag, <a class="indexterm" href="camel-CamelFolderSummary.html#CamelFlag">CamelFlag</a>
</dt>
<dt>CamelFolder, <a class="indexterm" href="camel-CamelFolder.html#CamelFolder">struct CamelFolder</a>
</dt>
<dt>CamelFolderChangeInfo, <a class="indexterm" href="camel-CamelFolder.html#CamelFolderChangeInfo">CamelFolderChangeInfo</a>
</dt>
<dt>CamelFolderInfo, <a class="indexterm" href="camel-CamelStore.html#CamelFolderInfo">CamelFolderInfo</a>
</dt>
<dt>CamelFolderMetaSummary, <a class="indexterm" href="camel-CamelFolderSummary.html#CamelFolderMetaSummary">CamelFolderMetaSummary</a>
</dt>
<dt>CamelFolderSummary, <a class="indexterm" href="camel-CamelFolderSummary.html#CamelFolderSummary">struct CamelFolderSummary</a>
</dt>
<dt>CamelFolderSummaryFlags, <a class="indexterm" href="camel-CamelFolderSummary.html#CamelFolderSummaryFlags">enum CamelFolderSummaryFlags</a>
</dt>
<dt>CamelGpgContext, <a class="indexterm" href="camel-CamelGpgContext.html#CamelGpgContext">CamelGpgContext</a>
</dt>
<dt>CamelInterface, <a class="indexterm" href="camel-CamelObject.html#CamelInterface">CamelInterface</a>
</dt>
<dt>CamelInternetAddress, <a class="indexterm" href="camel-CamelInternetAddress.html#CamelInternetAddress">struct CamelInternetAddress</a>
</dt>
<dt>CamelISubscribe, <a class="indexterm" href="camel-CamelStore.html#CamelISubscribe">CamelISubscribe</a>
</dt>
<dt>CamelIterator, <a class="indexterm" href="camel-CamelObject.html#CamelIterator">CamelIterator</a>
</dt>
<dt>CamelIteratorVTable, <a class="indexterm" href="camel-CamelObject.html#CamelIteratorVTable">CamelIteratorVTable</a>
</dt>
<dt>CamelLinger, <a class="indexterm" href="camel-CamelTcpStream.html#CamelLinger">CamelLinger</a>
</dt>
<dt>CamelMedium, <a class="indexterm" href="camel-CamelMedium.html#CamelMedium">struct CamelMedium</a>
</dt>
<dt>CamelMediumHeader, <a class="indexterm" href="camel-CamelMedium.html#CamelMediumHeader">CamelMediumHeader</a>
</dt>
<dt>CamelMessageContentInfo, <a class="indexterm" href="camel-CamelFolderSummary.html#CamelMessageContentInfo">struct CamelMessageContentInfo</a>
</dt>
<dt>CamelMessageFlags, <a class="indexterm" href="camel-CamelFolderSummary.html#CamelMessageFlags">enum CamelMessageFlags</a>
</dt>
<dt>CamelMessageInfo, <a class="indexterm" href="camel-CamelFolderSummary.html#CamelMessageInfo">CamelMessageInfo</a>
</dt>
<dt>CamelMessageInfoBase, <a class="indexterm" href="camel-CamelFolderSummary.html#CamelMessageInfoBase">CamelMessageInfoBase</a>
</dt>
<dt>CamelMimeFilter, <a class="indexterm" href="camel-CamelMimeFilter.html#CamelMimeFilter">struct CamelMimeFilter</a>
</dt>
<dt>CamelMimeFilterBasic, <a class="indexterm" href="camel-CamelMimeFilterBasic.html#CamelMimeFilterBasic">struct CamelMimeFilterBasic</a>
</dt>
<dt>CamelMimeFilterBasicType, <a class="indexterm" href="camel-CamelMimeFilterBasic.html#CamelMimeFilterBasicType">enum CamelMimeFilterBasicType</a>
</dt>
<dt>CamelMimeFilterBestenc, <a class="indexterm" href="camel-CamelMimeFilterBestenc.html#CamelMimeFilterBestenc">struct CamelMimeFilterBestenc</a>
</dt>
<dt>CamelMimeFilterCanon, <a class="indexterm" href="camel-CamelMimeFilterCanon.html#CamelMimeFilterCanon">CamelMimeFilterCanon</a>
</dt>
<dt>CamelMimeFilterCharset, <a class="indexterm" href="camel-CamelMimeFilterCharset.html#CamelMimeFilterCharset">struct CamelMimeFilterCharset</a>
</dt>
<dt>CamelMimeFilterCRLF, <a class="indexterm" href="camel-CamelMimeFilterCRLF.html#CamelMimeFilterCRLF">struct CamelMimeFilterCRLF</a>
</dt>
<dt>CamelMimeFilterCRLFDirection, <a class="indexterm" href="camel-CamelMimeFilterCRLF.html#CamelMimeFilterCRLFDirection">enum CamelMimeFilterCRLFDirection</a>
</dt>
<dt>CamelMimeFilterCRLFMode, <a class="indexterm" href="camel-CamelMimeFilterCRLF.html#CamelMimeFilterCRLFMode">enum CamelMimeFilterCRLFMode</a>
</dt>
<dt>CamelMimeFilterEnriched, <a class="indexterm" href="camel-CamelMimeFilterEnriched.html#CamelMimeFilterEnriched">CamelMimeFilterEnriched</a>
</dt>
<dt>CamelMimeFilterFrom, <a class="indexterm" href="camel-CamelMimeFilterFrom.html#CamelMimeFilterFrom">CamelMimeFilterFrom</a>
</dt>
<dt>CamelMimeFilterHTML, <a class="indexterm" href="camel-CamelMimeFilterHTML.html#CamelMimeFilterHTML">CamelMimeFilterHTML</a>
</dt>
<dt>CamelMimeFilterIndex, <a class="indexterm" href="camel-CamelMimeFilterIndex.html#CamelMimeFilterIndex">struct CamelMimeFilterIndex</a>
</dt>
<dt>CamelMimeFilterPgp, <a class="indexterm" href="camel-CamelMimeFilterPgp.html#CamelMimeFilterPgp">CamelMimeFilterPgp</a>
</dt>
<dt>CamelMimeFilterSave, <a class="indexterm" href="camel-CamelMimeFilterSave.html#CamelMimeFilterSave">struct CamelMimeFilterSave</a>
</dt>
<dt>CamelMimeFilterToHTML, <a class="indexterm" href="camel-CamelMimeFilterToHTML.html#CamelMimeFilterToHTML">CamelMimeFilterToHTML</a>
</dt>
<dt>CamelMimeFilterWindows, <a class="indexterm" href="camel-CamelMimeFilterWindows.html#CamelMimeFilterWindows">CamelMimeFilterWindows</a>
</dt>
<dt>CamelMimeFilterYenc, <a class="indexterm" href="camel-CamelMimeFilterYenc.html#CamelMimeFilterYenc">CamelMimeFilterYenc</a>
</dt>
<dt>CamelMimeFilterYencDirection, <a class="indexterm" href="camel-CamelMimeFilterYenc.html#CamelMimeFilterYencDirection">enum CamelMimeFilterYencDirection</a>
</dt>
<dt>CamelMimeMessage, <a class="indexterm" href="camel-CamelMimeMessage.html#CamelMimeMessage">struct CamelMimeMessage</a>
</dt>
<dt>CamelMimeParser, <a class="indexterm" href="camel-CamelMimeParser.html#CamelMimeParser">struct CamelMimeParser</a>
</dt>
<dt>CamelMimePart, <a class="indexterm" href="camel-CamelMimePart.html#CamelMimePart">struct CamelMimePart</a>
</dt>
<dt>CamelMultipart, <a class="indexterm" href="camel-CamelMultipart.html#CamelMultipart">struct CamelMultipart</a>
</dt>
<dt>CamelMultipartEncrypted, <a class="indexterm" href="camel-CamelMultipartEncrypted.html#CamelMultipartEncrypted">CamelMultipartEncrypted</a>
</dt>
<dt>CamelMultipartSigned, <a class="indexterm" href="camel-CamelMultipartSigned.html#CamelMultipartSigned">CamelMultipartSigned</a>
</dt>
<dt>CamelObject, <a class="indexterm" href="camel-CamelObject.html#CamelObject">CamelObject</a>
</dt>
<dt>CamelObjectBag, <a class="indexterm" href="camel-CamelObject.html#CamelObjectBag">CamelObjectBag</a>
</dt>
<dt>CamelObjectClassFinalizeFunc, <a class="indexterm" href="camel-CamelObject.html#CamelObjectClassFinalizeFunc">CamelObjectClassFinalizeFunc ()</a>
</dt>
<dt>CamelObjectClassInitFunc, <a class="indexterm" href="camel-CamelObject.html#CamelObjectClassInitFunc">CamelObjectClassInitFunc ()</a>
</dt>
<dt>CamelObjectEventHookFunc, <a class="indexterm" href="camel-CamelObject.html#CamelObjectEventHookFunc">CamelObjectEventHookFunc ()</a>
</dt>
<dt>CamelObjectEventPrepFunc, <a class="indexterm" href="camel-CamelObject.html#CamelObjectEventPrepFunc">CamelObjectEventPrepFunc ()</a>
</dt>
<dt>CamelObjectFinalizeFunc, <a class="indexterm" href="camel-CamelObject.html#CamelObjectFinalizeFunc">CamelObjectFinalizeFunc ()</a>
</dt>
<dt>CamelObjectFlags, <a class="indexterm" href="camel-CamelObject.html#CamelObjectFlags">enum CamelObjectFlags</a>
</dt>
<dt>CamelObjectHookID, <a class="indexterm" href="camel-CamelObject.html#CamelObjectHookID">CamelObjectHookID</a>
</dt>
<dt>CamelObjectInitFunc, <a class="indexterm" href="camel-CamelObject.html#CamelObjectInitFunc">CamelObjectInitFunc ()</a>
</dt>
<dt>CamelObjectMeta, <a class="indexterm" href="camel-CamelObject.html#CamelObjectMeta">CamelObjectMeta</a>
</dt>
<dt>CamelOfflineFolder, <a class="indexterm" href="camel-CamelOfflineFolder.html#CamelOfflineFolder">CamelOfflineFolder</a>
</dt>
<dt>CamelOfflineJournal, <a class="indexterm" href="camel-CamelOfflineJournal.html#CamelOfflineJournal">CamelOfflineJournal</a>
</dt>
<dt>CamelOfflineJournalEntry, <a class="indexterm" href="camel-CamelOfflineJournal.html#CamelOfflineJournalEntry">CamelOfflineJournalEntry</a>
</dt>
<dt>CamelOfflineStore, <a class="indexterm" href="camel-CamelOfflineStore.html#CamelOfflineStore">CamelOfflineStore</a>
</dt>
<dt>CamelOperation, <a class="indexterm" href="camel-camel-operation.html#CamelOperation">CamelOperation</a>
</dt>
<dt>CamelOperationStatusFunc, <a class="indexterm" href="camel-camel-operation.html#CamelOperationStatusFunc">CamelOperationStatusFunc ()</a>
</dt>
<dt>CamelProvider, <a class="indexterm" href="camel-camel-provider.html#CamelProvider">CamelProvider</a>
</dt>
<dt>CamelProviderAutoDetectFunc, <a class="indexterm" href="camel-camel-provider.html#CamelProviderAutoDetectFunc">CamelProviderAutoDetectFunc ()</a>
</dt>
<dt>CamelProviderConfEntry, <a class="indexterm" href="camel-camel-provider.html#CamelProviderConfEntry">CamelProviderConfEntry</a>
</dt>
<dt>CamelProviderConfType, <a class="indexterm" href="camel-camel-provider.html#CamelProviderConfType">enum CamelProviderConfType</a>
</dt>
<dt>CamelProviderModule, <a class="indexterm" href="camel-camel-provider.html#CamelProviderModule">CamelProviderModule</a>
</dt>
<dt>CamelProviderType, <a class="indexterm" href="camel-camel-provider.html#CamelProviderType">enum CamelProviderType</a>
</dt>
<dt>CamelRenameInfo, <a class="indexterm" href="camel-CamelStore.html#CamelRenameInfo">CamelRenameInfo</a>
</dt>
<dt>CamelSasl, <a class="indexterm" href="camel-CamelSasl.html#CamelSasl">CamelSasl</a>
</dt>
<dt>CamelSaslAnonTraceType, <a class="indexterm" href="camel-CamelSaslAnonymous.html#CamelSaslAnonTraceType">enum CamelSaslAnonTraceType</a>
</dt>
<dt>CamelSaslAnonymous, <a class="indexterm" href="camel-CamelSaslAnonymous.html#CamelSaslAnonymous">CamelSaslAnonymous</a>
</dt>
<dt>CamelSaslCramMd5, <a class="indexterm" href="camel-CamelSaslCramMd5.html#CamelSaslCramMd5">CamelSaslCramMd5</a>
</dt>
<dt>CamelSaslDigestMd5, <a class="indexterm" href="camel-CamelSaslDigestMd5.html#CamelSaslDigestMd5">CamelSaslDigestMd5</a>
</dt>
<dt>CamelSaslGssapi, <a class="indexterm" href="camel-CamelSaslGssapi.html#CamelSaslGssapi">CamelSaslGssapi</a>
</dt>
<dt>CamelSaslKerberos4, <a class="indexterm" href="camel-CamelSaslKerberos4.html#CamelSaslKerberos4">CamelSaslKerberos4</a>
</dt>
<dt>CamelSaslLogin, <a class="indexterm" href="camel-CamelSaslLogin.html#CamelSaslLogin">CamelSaslLogin</a>
</dt>
<dt>CamelSaslNTLM, <a class="indexterm" href="camel-CamelSaslNTLM.html#CamelSaslNTLM">CamelSaslNTLM</a>
</dt>
<dt>CamelSaslPlain, <a class="indexterm" href="camel-CamelSaslPlain.html#CamelSaslPlain">CamelSaslPlain</a>
</dt>
<dt>CamelSeekableStream, <a class="indexterm" href="camel-CamelSeekableStream.html#CamelSeekableStream">struct CamelSeekableStream</a>
</dt>
<dt>CamelSeekableSubstream, <a class="indexterm" href="camel-CamelSeekableSubstream.html#CamelSeekableSubstream">struct CamelSeekableSubstream</a>
</dt>
<dt>CamelService, <a class="indexterm" href="camel-CamelService.html#CamelService">struct CamelService</a>
</dt>
<dt>CamelServiceAuthType, <a class="indexterm" href="camel-CamelService.html#CamelServiceAuthType">CamelServiceAuthType</a>
</dt>
<dt>CamelServiceConnectionStatus, <a class="indexterm" href="camel-CamelService.html#CamelServiceConnectionStatus">enum CamelServiceConnectionStatus</a>
</dt>
<dt>CamelSession, <a class="indexterm" href="camel-CamelSession.html#CamelSession">struct CamelSession</a>
</dt>
<dt>CamelSessionAlertType, <a class="indexterm" href="camel-CamelSession.html#CamelSessionAlertType">enum CamelSessionAlertType</a>
</dt>
<dt>CamelSessionThreadMsg, <a class="indexterm" href="camel-CamelSession.html#CamelSessionThreadMsg">CamelSessionThreadMsg</a>
</dt>
<dt>CamelSessionThreadOps, <a class="indexterm" href="camel-CamelSession.html#CamelSessionThreadOps">CamelSessionThreadOps</a>
</dt>
<dt>CamelSockOpt, <a class="indexterm" href="camel-CamelTcpStream.html#CamelSockOpt">enum CamelSockOpt</a>
</dt>
<dt>CamelSockOptData, <a class="indexterm" href="camel-CamelTcpStream.html#CamelSockOptData">CamelSockOptData</a>
</dt>
<dt>CamelStore, <a class="indexterm" href="camel-CamelStore.html#CamelStore">struct CamelStore</a>
</dt>
<dt>CamelStoreInfo, <a class="indexterm" href="camel-CamelStoreSummary.html#CamelStoreInfo">CamelStoreInfo</a>
</dt>
<dt>CamelStoreInfoFlags, <a class="indexterm" href="camel-CamelStoreSummary.html#CamelStoreInfoFlags">enum CamelStoreInfoFlags</a>
</dt>
<dt>CamelStoreSummary, <a class="indexterm" href="camel-CamelStoreSummary.html#CamelStoreSummary">CamelStoreSummary</a>
</dt>
<dt>CamelStoreSummaryFlags, <a class="indexterm" href="camel-CamelStoreSummary.html#CamelStoreSummaryFlags">enum CamelStoreSummaryFlags</a>
</dt>
<dt>CamelStream, <a class="indexterm" href="camel-CamelStream.html#CamelStream">struct CamelStream</a>
</dt>
<dt>CamelStreamBuffer, <a class="indexterm" href="camel-CamelStreamBuffer.html#CamelStreamBuffer">struct CamelStreamBuffer</a>
</dt>
<dt>CamelStreamBufferMode, <a class="indexterm" href="camel-CamelStreamBuffer.html#CamelStreamBufferMode">enum CamelStreamBufferMode</a>
</dt>
<dt>CamelStreamFilter, <a class="indexterm" href="camel-CamelStreamFilter.html#CamelStreamFilter">struct CamelStreamFilter</a>
</dt>
<dt>CamelStreamFs, <a class="indexterm" href="camel-CamelStreamFs.html#CamelStreamFs">struct CamelStreamFs</a>
</dt>
<dt>CamelStreamMem, <a class="indexterm" href="camel-CamelStreamMem.html#CamelStreamMem">struct CamelStreamMem</a>
</dt>
<dt>CamelStreamNull, <a class="indexterm" href="camel-CamelStreamNull.html#CamelStreamNull">struct CamelStreamNull</a>
</dt>
<dt>CamelStreamSeekPolicy, <a class="indexterm" href="camel-CamelSeekableStream.html#CamelStreamSeekPolicy">enum CamelStreamSeekPolicy</a>
</dt>
<dt>CamelStreamVFS, <a class="indexterm" href="camel-CamelStreamVFS.html#CamelStreamVFS">CamelStreamVFS</a>
</dt>
<dt>CamelSummaryMessageID, <a class="indexterm" href="camel-CamelFolderSummary.html#CamelSummaryMessageID">CamelSummaryMessageID</a>
</dt>
<dt>CamelSummaryReferences, <a class="indexterm" href="camel-CamelFolderSummary.html#CamelSummaryReferences">CamelSummaryReferences</a>
</dt>
<dt>CamelTag, <a class="indexterm" href="camel-CamelFolderSummary.html#CamelTag">CamelTag</a>
</dt>
<dt>CamelTcpStream, <a class="indexterm" href="camel-CamelTcpStream.html#CamelTcpStream">struct CamelTcpStream</a>
</dt>
<dt>CamelTcpStreamRaw, <a class="indexterm" href="camel-CamelTcpStreamRaw.html#CamelTcpStreamRaw">struct CamelTcpStreamRaw</a>
</dt>
<dt>CamelTcpStreamSSL, <a class="indexterm" href="camel-CamelTcpStreamSSL.html#CamelTcpStreamSSL">struct CamelTcpStreamSSL</a>
</dt>
<dt>CamelTimeoutCallback, <a class="indexterm" href="camel-CamelSession.html#CamelTimeoutCallback">CamelTimeoutCallback ()</a>
</dt>
<dt>CamelTransport, <a class="indexterm" href="camel-CamelTransport.html#CamelTransport">struct CamelTransport</a>
</dt>
<dt>CamelType, <a class="indexterm" href="camel-CamelObject.html#CamelType">CamelType</a>
</dt>
<dt>CamelURL, <a class="indexterm" href="camel-camel-url.html#CamelURL">CamelURL</a>
</dt>
<dt>CamelVeeFolder, <a class="indexterm" href="camel-CamelVeeFolder.html#CamelVeeFolder">CamelVeeFolder</a>
</dt>
<dt>CamelVTrashFolder, <a class="indexterm" href="camel-CamelVTrashFolder.html#CamelVTrashFolder">CamelVTrashFolder</a>
</dt>
<dt>camel_address_cat, <a class="indexterm" href="camel-CamelAddress.html#camel-address-cat">camel_address_cat ()</a>
</dt>
<dt>camel_address_copy, <a class="indexterm" href="camel-CamelAddress.html#camel-address-copy">camel_address_copy ()</a>
</dt>
<dt>camel_address_decode, <a class="indexterm" href="camel-CamelAddress.html#camel-address-decode">camel_address_decode ()</a>
</dt>
<dt>camel_address_encode, <a class="indexterm" href="camel-CamelAddress.html#camel-address-encode">camel_address_encode ()</a>
</dt>
<dt>camel_address_format, <a class="indexterm" href="camel-CamelAddress.html#camel-address-format">camel_address_format ()</a>
</dt>
<dt>camel_address_length, <a class="indexterm" href="camel-CamelAddress.html#camel-address-length">camel_address_length ()</a>
</dt>
<dt>camel_address_new, <a class="indexterm" href="camel-CamelAddress.html#camel-address-new">camel_address_new ()</a>
</dt>
<dt>camel_address_new_clone, <a class="indexterm" href="camel-CamelAddress.html#camel-address-new-clone">camel_address_new_clone ()</a>
</dt>
<dt>camel_address_remove, <a class="indexterm" href="camel-CamelAddress.html#camel-address-remove">camel_address_remove ()</a>
</dt>
<dt>camel_address_unformat, <a class="indexterm" href="camel-CamelAddress.html#camel-address-unformat">camel_address_unformat ()</a>
</dt>
<dt>CAMEL_CHECK_CAST, <a class="indexterm" href="camel-CamelObject.html#CAMEL-CHECK-CAST:CAPS">CAMEL_CHECK_CAST()</a>
</dt>
<dt>CAMEL_CHECK_CLASS_CAST, <a class="indexterm" href="camel-CamelObject.html#CAMEL-CHECK-CLASS-CAST:CAPS">CAMEL_CHECK_CLASS_CAST()</a>
</dt>
<dt>CAMEL_CHECK_CLASS_TYPE, <a class="indexterm" href="camel-CamelObject.html#CAMEL-CHECK-CLASS-TYPE:CAPS">CAMEL_CHECK_CLASS_TYPE()</a>
</dt>
<dt>CAMEL_CHECK_TYPE, <a class="indexterm" href="camel-CamelObject.html#CAMEL-CHECK-TYPE:CAPS">CAMEL_CHECK_TYPE()</a>
</dt>
<dt>camel_cipher_canonical_to_stream, <a class="indexterm" href="camel-CamelCipherContext.html#camel-cipher-canonical-to-stream">camel_cipher_canonical_to_stream ()</a>
</dt>
<dt>camel_cipher_context_construct, <a class="indexterm" href="camel-CamelCipherContext.html#camel-cipher-context-construct">camel_cipher_context_construct ()</a>
</dt>
<dt>camel_cipher_context_new, <a class="indexterm" href="camel-CamelCipherContext.html#camel-cipher-context-new">camel_cipher_context_new ()</a>
</dt>
<dt>camel_cipher_decrypt, <a class="indexterm" href="camel-CamelCipherContext.html#camel-cipher-decrypt">camel_cipher_decrypt ()</a>
</dt>
<dt>camel_cipher_encrypt, <a class="indexterm" href="camel-CamelCipherContext.html#camel-cipher-encrypt">camel_cipher_encrypt ()</a>
</dt>
<dt>camel_cipher_export_keys, <a class="indexterm" href="camel-CamelCipherContext.html#camel-cipher-export-keys">camel_cipher_export_keys ()</a>
</dt>
<dt>camel_cipher_hash_to_id, <a class="indexterm" href="camel-CamelCipherContext.html#camel-cipher-hash-to-id">camel_cipher_hash_to_id ()</a>
</dt>
<dt>camel_cipher_id_to_hash, <a class="indexterm" href="camel-CamelCipherContext.html#camel-cipher-id-to-hash">camel_cipher_id_to_hash ()</a>
</dt>
<dt>camel_cipher_import_keys, <a class="indexterm" href="camel-CamelCipherContext.html#camel-cipher-import-keys">camel_cipher_import_keys ()</a>
</dt>
<dt>camel_cipher_sign, <a class="indexterm" href="camel-CamelCipherContext.html#camel-cipher-sign">camel_cipher_sign ()</a>
</dt>
<dt>camel_cipher_validity_add_certinfo, <a class="indexterm" href="camel-CamelCipherContext.html#camel-cipher-validity-add-certinfo">camel_cipher_validity_add_certinfo ()</a>
</dt>
<dt>camel_cipher_validity_clear, <a class="indexterm" href="camel-CamelCipherContext.html#camel-cipher-validity-clear">camel_cipher_validity_clear ()</a>
</dt>
<dt>camel_cipher_validity_clone, <a class="indexterm" href="camel-CamelCipherContext.html#camel-cipher-validity-clone">camel_cipher_validity_clone ()</a>
</dt>
<dt>camel_cipher_validity_encrypt_t, <a class="indexterm" href="camel-CamelCipherContext.html#camel-cipher-validity-encrypt-t">enum camel_cipher_validity_encrypt_t</a>
</dt>
<dt>camel_cipher_validity_envelope, <a class="indexterm" href="camel-CamelCipherContext.html#camel-cipher-validity-envelope">camel_cipher_validity_envelope ()</a>
</dt>
<dt>camel_cipher_validity_free, <a class="indexterm" href="camel-CamelCipherContext.html#camel-cipher-validity-free">camel_cipher_validity_free ()</a>
</dt>
<dt>camel_cipher_validity_get_description, <a class="indexterm" href="camel-CamelCipherContext.html#camel-cipher-validity-get-description">camel_cipher_validity_get_description ()</a>
</dt>
<dt>camel_cipher_validity_get_valid, <a class="indexterm" href="camel-CamelCipherContext.html#camel-cipher-validity-get-valid">camel_cipher_validity_get_valid ()</a>
</dt>
<dt>camel_cipher_validity_init, <a class="indexterm" href="camel-CamelCipherContext.html#camel-cipher-validity-init">camel_cipher_validity_init ()</a>
</dt>
<dt>camel_cipher_validity_mode_t, <a class="indexterm" href="camel-CamelCipherContext.html#camel-cipher-validity-mode-t">enum camel_cipher_validity_mode_t</a>
</dt>
<dt>camel_cipher_validity_new, <a class="indexterm" href="camel-CamelCipherContext.html#camel-cipher-validity-new">camel_cipher_validity_new ()</a>
</dt>
<dt>camel_cipher_validity_set_description, <a class="indexterm" href="camel-CamelCipherContext.html#camel-cipher-validity-set-description">camel_cipher_validity_set_description ()</a>
</dt>
<dt>camel_cipher_validity_set_valid, <a class="indexterm" href="camel-CamelCipherContext.html#camel-cipher-validity-set-valid">camel_cipher_validity_set_valid ()</a>
</dt>
<dt>camel_cipher_validity_sign_t, <a class="indexterm" href="camel-CamelCipherContext.html#camel-cipher-validity-sign-t">enum camel_cipher_validity_sign_t</a>
</dt>
<dt>camel_cipher_verify, <a class="indexterm" href="camel-CamelCipherContext.html#camel-cipher-verify">camel_cipher_verify ()</a>
</dt>
<dt>camel_content_info_dump, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-content-info-dump">camel_content_info_dump ()</a>
</dt>
<dt>camel_data_wrapper_construct_from_stream, <a class="indexterm" href="camel-CamelDataWrapper.html#camel-data-wrapper-construct-from-stream">camel_data_wrapper_construct_from_stream ()</a>
</dt>
<dt>camel_data_wrapper_decode_to_stream, <a class="indexterm" href="camel-CamelDataWrapper.html#camel-data-wrapper-decode-to-stream">camel_data_wrapper_decode_to_stream ()</a>
</dt>
<dt>camel_data_wrapper_get_mime_type, <a class="indexterm" href="camel-CamelDataWrapper.html#camel-data-wrapper-get-mime-type">camel_data_wrapper_get_mime_type ()</a>
</dt>
<dt>camel_data_wrapper_get_mime_type_field, <a class="indexterm" href="camel-CamelDataWrapper.html#camel-data-wrapper-get-mime-type-field">camel_data_wrapper_get_mime_type_field ()</a>
</dt>
<dt>camel_data_wrapper_is_offline, <a class="indexterm" href="camel-CamelDataWrapper.html#camel-data-wrapper-is-offline">camel_data_wrapper_is_offline ()</a>
</dt>
<dt>camel_data_wrapper_new, <a class="indexterm" href="camel-CamelDataWrapper.html#camel-data-wrapper-new">camel_data_wrapper_new ()</a>
</dt>
<dt>camel_data_wrapper_set_mime_type, <a class="indexterm" href="camel-CamelDataWrapper.html#camel-data-wrapper-set-mime-type">camel_data_wrapper_set_mime_type ()</a>
</dt>
<dt>camel_data_wrapper_set_mime_type_field, <a class="indexterm" href="camel-CamelDataWrapper.html#camel-data-wrapper-set-mime-type-field">camel_data_wrapper_set_mime_type_field ()</a>
</dt>
<dt>camel_data_wrapper_write_to_stream, <a class="indexterm" href="camel-CamelDataWrapper.html#camel-data-wrapper-write-to-stream">camel_data_wrapper_write_to_stream ()</a>
</dt>
<dt>camel_enriched_to_html, <a class="indexterm" href="camel-CamelMimeFilterEnriched.html#camel-enriched-to-html">camel_enriched_to_html ()</a>
</dt>
<dt>camel_exception_clear, <a class="indexterm" href="camel-camel-exception.html#camel-exception-clear">camel_exception_clear ()</a>
</dt>
<dt>camel_exception_free, <a class="indexterm" href="camel-camel-exception.html#camel-exception-free">camel_exception_free ()</a>
</dt>
<dt>camel_exception_get_description, <a class="indexterm" href="camel-camel-exception.html#camel-exception-get-description">camel_exception_get_description ()</a>
</dt>
<dt>camel_exception_get_id, <a class="indexterm" href="camel-camel-exception.html#camel-exception-get-id">camel_exception_get_id ()</a>
</dt>
<dt>camel_exception_init, <a class="indexterm" href="camel-camel-exception.html#camel-exception-init">camel_exception_init ()</a>
</dt>
<dt>CAMEL_EXCEPTION_INITIALISER, <a class="indexterm" href="camel-camel-exception.html#CAMEL-EXCEPTION-INITIALISER:CAPS">CAMEL_EXCEPTION_INITIALISER</a>
</dt>
<dt>camel_exception_is_set, <a class="indexterm" href="camel-camel-exception.html#camel-exception-is-set">camel_exception_is_set()</a>
</dt>
<dt>camel_exception_new, <a class="indexterm" href="camel-camel-exception.html#camel-exception-new">camel_exception_new ()</a>
</dt>
<dt>camel_exception_set, <a class="indexterm" href="camel-camel-exception.html#camel-exception-set">camel_exception_set ()</a>
</dt>
<dt>camel_exception_setv, <a class="indexterm" href="camel-camel-exception.html#camel-exception-setv">camel_exception_setv ()</a>
</dt>
<dt>camel_exception_xfer, <a class="indexterm" href="camel-camel-exception.html#camel-exception-xfer">camel_exception_xfer ()</a>
</dt>
<dt>camel_flag_get, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-flag-get">camel_flag_get ()</a>
</dt>
<dt>camel_flag_list_copy, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-flag-list-copy">camel_flag_list_copy ()</a>
</dt>
<dt>camel_flag_list_free, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-flag-list-free">camel_flag_list_free ()</a>
</dt>
<dt>camel_flag_list_size, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-flag-list-size">camel_flag_list_size ()</a>
</dt>
<dt>camel_flag_set, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-flag-set">camel_flag_set ()</a>
</dt>
<dt>camel_folder_append_message, <a class="indexterm" href="camel-CamelFolder.html#camel-folder-append-message">camel_folder_append_message ()</a>
</dt>
<dt>camel_folder_change_info_add_source, <a class="indexterm" href="camel-CamelFolder.html#camel-folder-change-info-add-source">camel_folder_change_info_add_source ()</a>
</dt>
<dt>camel_folder_change_info_add_source_list, <a class="indexterm" href="camel-CamelFolder.html#camel-folder-change-info-add-source-list">camel_folder_change_info_add_source_list ()</a>
</dt>
<dt>camel_folder_change_info_add_uid, <a class="indexterm" href="camel-CamelFolder.html#camel-folder-change-info-add-uid">camel_folder_change_info_add_uid ()</a>
</dt>
<dt>camel_folder_change_info_add_update, <a class="indexterm" href="camel-CamelFolder.html#camel-folder-change-info-add-update">camel_folder_change_info_add_update ()</a>
</dt>
<dt>camel_folder_change_info_add_update_list, <a class="indexterm" href="camel-CamelFolder.html#camel-folder-change-info-add-update-list">camel_folder_change_info_add_update_list ()</a>
</dt>
<dt>camel_folder_change_info_build_diff, <a class="indexterm" href="camel-CamelFolder.html#camel-folder-change-info-build-diff">camel_folder_change_info_build_diff ()</a>
</dt>
<dt>camel_folder_change_info_cat, <a class="indexterm" href="camel-CamelFolder.html#camel-folder-change-info-cat">camel_folder_change_info_cat ()</a>
</dt>
<dt>camel_folder_change_info_changed, <a class="indexterm" href="camel-CamelFolder.html#camel-folder-change-info-changed">camel_folder_change_info_changed ()</a>
</dt>
<dt>camel_folder_change_info_change_uid, <a class="indexterm" href="camel-CamelFolder.html#camel-folder-change-info-change-uid">camel_folder_change_info_change_uid ()</a>
</dt>
<dt>camel_folder_change_info_clear, <a class="indexterm" href="camel-CamelFolder.html#camel-folder-change-info-clear">camel_folder_change_info_clear ()</a>
</dt>
<dt>camel_folder_change_info_free, <a class="indexterm" href="camel-CamelFolder.html#camel-folder-change-info-free">camel_folder_change_info_free ()</a>
</dt>
<dt>camel_folder_change_info_new, <a class="indexterm" href="camel-CamelFolder.html#camel-folder-change-info-new">camel_folder_change_info_new ()</a>
</dt>
<dt>camel_folder_change_info_recent_uid, <a class="indexterm" href="camel-CamelFolder.html#camel-folder-change-info-recent-uid">camel_folder_change_info_recent_uid ()</a>
</dt>
<dt>camel_folder_change_info_remove_uid, <a class="indexterm" href="camel-CamelFolder.html#camel-folder-change-info-remove-uid">camel_folder_change_info_remove_uid ()</a>
</dt>
<dt>CAMEL_FOLDER_CHILDREN, <a class="indexterm" href="camel-CamelStore.html#CAMEL-FOLDER-CHILDREN:CAPS">CAMEL_FOLDER_CHILDREN</a>
</dt>
<dt>camel_folder_construct, <a class="indexterm" href="camel-CamelFolder.html#camel-folder-construct">camel_folder_construct ()</a>
</dt>
<dt>camel_folder_delete, <a class="indexterm" href="camel-CamelFolder.html#camel-folder-delete">camel_folder_delete ()</a>
</dt>
<dt>camel_folder_delete_message, <a class="indexterm" href="camel-CamelFolder.html#camel-folder-delete-message">camel_folder_delete_message()</a>
</dt>
<dt>camel_folder_expunge, <a class="indexterm" href="camel-CamelFolder.html#camel-folder-expunge">camel_folder_expunge ()</a>
</dt>
<dt>CAMEL_FOLDER_FILTER_JUNK, <a class="indexterm" href="camel-CamelFolder.html#CAMEL-FOLDER-FILTER-JUNK:CAPS">CAMEL_FOLDER_FILTER_JUNK</a>
</dt>
<dt>CAMEL_FOLDER_FILTER_RECENT, <a class="indexterm" href="camel-CamelFolder.html#CAMEL-FOLDER-FILTER-RECENT:CAPS">CAMEL_FOLDER_FILTER_RECENT</a>
</dt>
<dt>camel_folder_freeze, <a class="indexterm" href="camel-CamelFolder.html#camel-folder-freeze">camel_folder_freeze ()</a>
</dt>
<dt>camel_folder_free_deep, <a class="indexterm" href="camel-CamelFolder.html#camel-folder-free-deep">camel_folder_free_deep ()</a>
</dt>
<dt>camel_folder_free_message_info, <a class="indexterm" href="camel-CamelFolder.html#camel-folder-free-message-info">camel_folder_free_message_info ()</a>
</dt>
<dt>camel_folder_free_nop, <a class="indexterm" href="camel-CamelFolder.html#camel-folder-free-nop">camel_folder_free_nop ()</a>
</dt>
<dt>camel_folder_free_shallow, <a class="indexterm" href="camel-CamelFolder.html#camel-folder-free-shallow">camel_folder_free_shallow ()</a>
</dt>
<dt>camel_folder_free_summary, <a class="indexterm" href="camel-CamelFolder.html#camel-folder-free-summary">camel_folder_free_summary ()</a>
</dt>
<dt>camel_folder_free_uids, <a class="indexterm" href="camel-CamelFolder.html#camel-folder-free-uids">camel_folder_free_uids ()</a>
</dt>
<dt>camel_folder_get_deleted_message_count, <a class="indexterm" href="camel-CamelFolder.html#camel-folder-get-deleted-message-count">camel_folder_get_deleted_message_count ()</a>
</dt>
<dt>camel_folder_get_full_name, <a class="indexterm" href="camel-CamelFolder.html#camel-folder-get-full-name">camel_folder_get_full_name ()</a>
</dt>
<dt>camel_folder_get_message, <a class="indexterm" href="camel-CamelFolder.html#camel-folder-get-message">camel_folder_get_message ()</a>
</dt>
<dt>camel_folder_get_message_count, <a class="indexterm" href="camel-CamelFolder.html#camel-folder-get-message-count">camel_folder_get_message_count ()</a>
</dt>
<dt>camel_folder_get_message_flags, <a class="indexterm" href="camel-CamelFolder.html#camel-folder-get-message-flags">camel_folder_get_message_flags ()</a>
</dt>
<dt>camel_folder_get_message_info, <a class="indexterm" href="camel-CamelFolder.html#camel-folder-get-message-info">camel_folder_get_message_info ()</a>
</dt>
<dt>camel_folder_get_message_user_flag, <a class="indexterm" href="camel-CamelFolder.html#camel-folder-get-message-user-flag">camel_folder_get_message_user_flag ()</a>
</dt>
<dt>camel_folder_get_message_user_tag, <a class="indexterm" href="camel-CamelFolder.html#camel-folder-get-message-user-tag">camel_folder_get_message_user_tag ()</a>
</dt>
<dt>camel_folder_get_name, <a class="indexterm" href="camel-CamelFolder.html#camel-folder-get-name">camel_folder_get_name ()</a>
</dt>
<dt>camel_folder_get_parent_store, <a class="indexterm" href="camel-CamelFolder.html#camel-folder-get-parent-store">camel_folder_get_parent_store ()</a>
</dt>
<dt>camel_folder_get_permanent_flags, <a class="indexterm" href="camel-CamelFolder.html#camel-folder-get-permanent-flags">camel_folder_get_permanent_flags ()</a>
</dt>
<dt>camel_folder_get_summary, <a class="indexterm" href="camel-CamelFolder.html#camel-folder-get-summary">camel_folder_get_summary ()</a>
</dt>
<dt>camel_folder_get_uids, <a class="indexterm" href="camel-CamelFolder.html#camel-folder-get-uids">camel_folder_get_uids ()</a>
</dt>
<dt>camel_folder_get_unread_message_count, <a class="indexterm" href="camel-CamelFolder.html#camel-folder-get-unread-message-count">camel_folder_get_unread_message_count ()</a>
</dt>
<dt>CAMEL_FOLDER_HAS_BEEN_DELETED, <a class="indexterm" href="camel-CamelFolder.html#CAMEL-FOLDER-HAS-BEEN-DELETED:CAPS">CAMEL_FOLDER_HAS_BEEN_DELETED</a>
</dt>
<dt>CAMEL_FOLDER_HAS_SEARCH_CAPABILITY, <a class="indexterm" href="camel-CamelFolder.html#CAMEL-FOLDER-HAS-SEARCH-CAPABILITY:CAPS">CAMEL_FOLDER_HAS_SEARCH_CAPABILITY</a>
</dt>
<dt>camel_folder_has_search_capability, <a class="indexterm" href="camel-CamelFolder.html#camel-folder-has-search-capability">camel_folder_has_search_capability ()</a>
</dt>
<dt>CAMEL_FOLDER_HAS_SUMMARY_CAPABILITY, <a class="indexterm" href="camel-CamelFolder.html#CAMEL-FOLDER-HAS-SUMMARY-CAPABILITY:CAPS">CAMEL_FOLDER_HAS_SUMMARY_CAPABILITY</a>
</dt>
<dt>camel_folder_has_summary_capability, <a class="indexterm" href="camel-CamelFolder.html#camel-folder-has-summary-capability">camel_folder_has_summary_capability ()</a>
</dt>
<dt>camel_folder_info_build, <a class="indexterm" href="camel-CamelStore.html#camel-folder-info-build">camel_folder_info_build ()</a>
</dt>
<dt>camel_folder_info_clone, <a class="indexterm" href="camel-CamelStore.html#camel-folder-info-clone">camel_folder_info_clone ()</a>
</dt>
<dt>camel_folder_info_free, <a class="indexterm" href="camel-CamelStore.html#camel-folder-info-free">camel_folder_info_free ()</a>
</dt>
<dt>camel_folder_info_new, <a class="indexterm" href="camel-CamelStore.html#camel-folder-info-new">camel_folder_info_new ()</a>
</dt>
<dt>camel_folder_is_frozen, <a class="indexterm" href="camel-CamelFolder.html#camel-folder-is-frozen">camel_folder_is_frozen ()</a>
</dt>
<dt>CAMEL_FOLDER_IS_JUNK, <a class="indexterm" href="camel-CamelFolder.html#CAMEL-FOLDER-IS-JUNK:CAPS">CAMEL_FOLDER_IS_JUNK</a>
</dt>
<dt>CAMEL_FOLDER_IS_TRASH, <a class="indexterm" href="camel-CamelFolder.html#CAMEL-FOLDER-IS-TRASH:CAPS">CAMEL_FOLDER_IS_TRASH</a>
</dt>
<dt>CAMEL_FOLDER_NOCHILDREN, <a class="indexterm" href="camel-CamelStore.html#CAMEL-FOLDER-NOCHILDREN:CAPS">CAMEL_FOLDER_NOCHILDREN</a>
</dt>
<dt>CAMEL_FOLDER_NOINFERIORS, <a class="indexterm" href="camel-CamelStore.html#CAMEL-FOLDER-NOINFERIORS:CAPS">CAMEL_FOLDER_NOINFERIORS</a>
</dt>
<dt>CAMEL_FOLDER_NOSELECT, <a class="indexterm" href="camel-CamelStore.html#CAMEL-FOLDER-NOSELECT:CAPS">CAMEL_FOLDER_NOSELECT</a>
</dt>
<dt>camel_folder_refresh_info, <a class="indexterm" href="camel-CamelFolder.html#camel-folder-refresh-info">camel_folder_refresh_info ()</a>
</dt>
<dt>camel_folder_ref_message_info, <a class="indexterm" href="camel-CamelFolder.html#camel-folder-ref-message-info">camel_folder_ref_message_info ()</a>
</dt>
<dt>camel_folder_rename, <a class="indexterm" href="camel-CamelFolder.html#camel-folder-rename">camel_folder_rename ()</a>
</dt>
<dt>camel_folder_search_by_expression, <a class="indexterm" href="camel-CamelFolder.html#camel-folder-search-by-expression">camel_folder_search_by_expression ()</a>
</dt>
<dt>camel_folder_search_by_uids, <a class="indexterm" href="camel-CamelFolder.html#camel-folder-search-by-uids">camel_folder_search_by_uids ()</a>
</dt>
<dt>camel_folder_search_free, <a class="indexterm" href="camel-CamelFolder.html#camel-folder-search-free">camel_folder_search_free ()</a>
</dt>
<dt>camel_folder_set_message_flags, <a class="indexterm" href="camel-CamelFolder.html#camel-folder-set-message-flags">camel_folder_set_message_flags ()</a>
</dt>
<dt>camel_folder_set_message_user_flag, <a class="indexterm" href="camel-CamelFolder.html#camel-folder-set-message-user-flag">camel_folder_set_message_user_flag ()</a>
</dt>
<dt>camel_folder_set_message_user_tag, <a class="indexterm" href="camel-CamelFolder.html#camel-folder-set-message-user-tag">camel_folder_set_message_user_tag ()</a>
</dt>
<dt>CAMEL_FOLDER_SHARED_BY_ME, <a class="indexterm" href="camel-CamelStore.html#CAMEL-FOLDER-SHARED-BY-ME:CAPS">CAMEL_FOLDER_SHARED_BY_ME</a>
</dt>
<dt>CAMEL_FOLDER_SHARED_TO_ME, <a class="indexterm" href="camel-CamelStore.html#CAMEL-FOLDER-SHARED-TO-ME:CAPS">CAMEL_FOLDER_SHARED_TO_ME</a>
</dt>
<dt>CAMEL_FOLDER_SUBSCRIBED, <a class="indexterm" href="camel-CamelStore.html#CAMEL-FOLDER-SUBSCRIBED:CAPS">CAMEL_FOLDER_SUBSCRIBED</a>
</dt>
<dt>camel_folder_summary_add, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-folder-summary-add">camel_folder_summary_add ()</a>
</dt>
<dt>camel_folder_summary_add_from_header, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-folder-summary-add-from-header">camel_folder_summary_add_from_header ()</a>
</dt>
<dt>camel_folder_summary_add_from_message, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-folder-summary-add-from-message">camel_folder_summary_add_from_message ()</a>
</dt>
<dt>camel_folder_summary_add_from_parser, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-folder-summary-add-from-parser">camel_folder_summary_add_from_parser ()</a>
</dt>
<dt>camel_folder_summary_array, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-folder-summary-array">camel_folder_summary_array ()</a>
</dt>
<dt>camel_folder_summary_array_free, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-folder-summary-array-free">camel_folder_summary_array_free ()</a>
</dt>
<dt>camel_folder_summary_clear, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-folder-summary-clear">camel_folder_summary_clear ()</a>
</dt>
<dt>camel_folder_summary_content_info_free, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-folder-summary-content-info-free">camel_folder_summary_content_info_free ()</a>
</dt>
<dt>camel_folder_summary_content_info_new, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-folder-summary-content-info-new">camel_folder_summary_content_info_new ()</a>
</dt>
<dt>camel_folder_summary_count, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-folder-summary-count">camel_folder_summary_count ()</a>
</dt>
<dt>camel_folder_summary_decode_token, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-folder-summary-decode-token">camel_folder_summary_decode_token ()</a>
</dt>
<dt>camel_folder_summary_encode_token, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-folder-summary-encode-token">camel_folder_summary_encode_token ()</a>
</dt>
<dt>camel_folder_summary_header_load, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-folder-summary-header-load">camel_folder_summary_header_load ()</a>
</dt>
<dt>camel_folder_summary_index, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-folder-summary-index">camel_folder_summary_index ()</a>
</dt>
<dt>camel_folder_summary_info_new_from_header, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-folder-summary-info-new-from-header">camel_folder_summary_info_new_from_header ()</a>
</dt>
<dt>camel_folder_summary_info_new_from_message, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-folder-summary-info-new-from-message">camel_folder_summary_info_new_from_message ()</a>
</dt>
<dt>camel_folder_summary_info_new_from_parser, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-folder-summary-info-new-from-parser">camel_folder_summary_info_new_from_parser ()</a>
</dt>
<dt>camel_folder_summary_load, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-folder-summary-load">camel_folder_summary_load ()</a>
</dt>
<dt>camel_folder_summary_new, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-folder-summary-new">camel_folder_summary_new ()</a>
</dt>
<dt>camel_folder_summary_next_uid, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-folder-summary-next-uid">camel_folder_summary_next_uid ()</a>
</dt>
<dt>camel_folder_summary_next_uid_string, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-folder-summary-next-uid-string">camel_folder_summary_next_uid_string ()</a>
</dt>
<dt>camel_folder_summary_remove, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-folder-summary-remove">camel_folder_summary_remove ()</a>
</dt>
<dt>camel_folder_summary_remove_index, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-folder-summary-remove-index">camel_folder_summary_remove_index ()</a>
</dt>
<dt>camel_folder_summary_remove_range, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-folder-summary-remove-range">camel_folder_summary_remove_range ()</a>
</dt>
<dt>camel_folder_summary_remove_uid, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-folder-summary-remove-uid">camel_folder_summary_remove_uid ()</a>
</dt>
<dt>camel_folder_summary_save, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-folder-summary-save">camel_folder_summary_save ()</a>
</dt>
<dt>camel_folder_summary_set_build_content, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-folder-summary-set-build-content">camel_folder_summary_set_build_content ()</a>
</dt>
<dt>camel_folder_summary_set_filename, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-folder-summary-set-filename">camel_folder_summary_set_filename ()</a>
</dt>
<dt>camel_folder_summary_set_index, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-folder-summary-set-index">camel_folder_summary_set_index ()</a>
</dt>
<dt>camel_folder_summary_set_uid, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-folder-summary-set-uid">camel_folder_summary_set_uid ()</a>
</dt>
<dt>camel_folder_summary_touch, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-folder-summary-touch">camel_folder_summary_touch ()</a>
</dt>
<dt>camel_folder_summary_uid, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-folder-summary-uid">camel_folder_summary_uid ()</a>
</dt>
<dt>camel_folder_sync, <a class="indexterm" href="camel-CamelFolder.html#camel-folder-sync">camel_folder_sync ()</a>
</dt>
<dt>CAMEL_FOLDER_SYSTEM, <a class="indexterm" href="camel-CamelStore.html#CAMEL-FOLDER-SYSTEM:CAPS">CAMEL_FOLDER_SYSTEM</a>
</dt>
<dt>camel_folder_thaw, <a class="indexterm" href="camel-CamelFolder.html#camel-folder-thaw">camel_folder_thaw ()</a>
</dt>
<dt>camel_folder_transfer_messages_to, <a class="indexterm" href="camel-CamelFolder.html#camel-folder-transfer-messages-to">camel_folder_transfer_messages_to ()</a>
</dt>
<dt>CAMEL_FOLDER_TYPE_BIT, <a class="indexterm" href="camel-CamelStore.html#CAMEL-FOLDER-TYPE-BIT:CAPS">CAMEL_FOLDER_TYPE_BIT</a>
</dt>
<dt>CAMEL_FOLDER_TYPE_INBOX, <a class="indexterm" href="camel-CamelStore.html#CAMEL-FOLDER-TYPE-INBOX:CAPS">CAMEL_FOLDER_TYPE_INBOX</a>
</dt>
<dt>CAMEL_FOLDER_TYPE_JUNK, <a class="indexterm" href="camel-CamelStore.html#CAMEL-FOLDER-TYPE-JUNK:CAPS">CAMEL_FOLDER_TYPE_JUNK</a>
</dt>
<dt>CAMEL_FOLDER_TYPE_MASK, <a class="indexterm" href="camel-CamelStore.html#CAMEL-FOLDER-TYPE-MASK:CAPS">CAMEL_FOLDER_TYPE_MASK</a>
</dt>
<dt>CAMEL_FOLDER_TYPE_NORMAL, <a class="indexterm" href="camel-CamelStore.html#CAMEL-FOLDER-TYPE-NORMAL:CAPS">CAMEL_FOLDER_TYPE_NORMAL</a>
</dt>
<dt>CAMEL_FOLDER_TYPE_OUTBOX, <a class="indexterm" href="camel-CamelStore.html#CAMEL-FOLDER-TYPE-OUTBOX:CAPS">CAMEL_FOLDER_TYPE_OUTBOX</a>
</dt>
<dt>CAMEL_FOLDER_TYPE_SENT, <a class="indexterm" href="camel-CamelStore.html#CAMEL-FOLDER-TYPE-SENT:CAPS">CAMEL_FOLDER_TYPE_SENT</a>
</dt>
<dt>CAMEL_FOLDER_TYPE_TRASH, <a class="indexterm" href="camel-CamelStore.html#CAMEL-FOLDER-TYPE-TRASH:CAPS">CAMEL_FOLDER_TYPE_TRASH</a>
</dt>
<dt>CAMEL_FOLDER_VIRTUAL, <a class="indexterm" href="camel-CamelStore.html#CAMEL-FOLDER-VIRTUAL:CAPS">CAMEL_FOLDER_VIRTUAL</a>
</dt>
<dt>CAMEL_FOLDER_VTRASH, <a class="indexterm" href="camel-CamelStore.html#CAMEL-FOLDER-VTRASH:CAPS">CAMEL_FOLDER_VTRASH</a>
</dt>
<dt>camel_gpg_context_new, <a class="indexterm" href="camel-CamelGpgContext.html#camel-gpg-context-new">camel_gpg_context_new ()</a>
</dt>
<dt>camel_gpg_context_set_always_trust, <a class="indexterm" href="camel-CamelGpgContext.html#camel-gpg-context-set-always-trust">camel_gpg_context_set_always_trust ()</a>
</dt>
<dt>camel_interface_cast, <a class="indexterm" href="camel-CamelObject.html#camel-interface-cast">camel_interface_cast ()</a>
</dt>
<dt>camel_interface_is, <a class="indexterm" href="camel-CamelObject.html#camel-interface-is">camel_interface_is ()</a>
</dt>
<dt>camel_interface_register, <a class="indexterm" href="camel-CamelObject.html#camel-interface-register">camel_interface_register ()</a>
</dt>
<dt>camel_interface_type, <a class="indexterm" href="camel-CamelObject.html#camel-interface-type">camel_interface_type</a>
</dt>
<dt>CAMEL_INTERFACE_TYPE, <a class="indexterm" href="camel-CamelObject.html#CAMEL-INTERFACE-TYPE:CAPS">CAMEL_INTERFACE_TYPE</a>
</dt>
<dt>camel_internet_address_add, <a class="indexterm" href="camel-CamelInternetAddress.html#camel-internet-address-add">camel_internet_address_add ()</a>
</dt>
<dt>camel_internet_address_encode_address, <a class="indexterm" href="camel-CamelInternetAddress.html#camel-internet-address-encode-address">camel_internet_address_encode_address ()</a>
</dt>
<dt>camel_internet_address_find_address, <a class="indexterm" href="camel-CamelInternetAddress.html#camel-internet-address-find-address">camel_internet_address_find_address ()</a>
</dt>
<dt>camel_internet_address_find_name, <a class="indexterm" href="camel-CamelInternetAddress.html#camel-internet-address-find-name">camel_internet_address_find_name ()</a>
</dt>
<dt>camel_internet_address_format_address, <a class="indexterm" href="camel-CamelInternetAddress.html#camel-internet-address-format-address">camel_internet_address_format_address ()</a>
</dt>
<dt>camel_internet_address_get, <a class="indexterm" href="camel-CamelInternetAddress.html#camel-internet-address-get">camel_internet_address_get ()</a>
</dt>
<dt>camel_internet_address_new, <a class="indexterm" href="camel-CamelInternetAddress.html#camel-internet-address-new">camel_internet_address_new ()</a>
</dt>
<dt>CAMEL_INVALID_TYPE, <a class="indexterm" href="camel-CamelObject.html#CAMEL-INVALID-TYPE:CAPS">CAMEL_INVALID_TYPE</a>
</dt>
<dt>camel_isubscribe_subscribe, <a class="indexterm" href="camel-CamelStore.html#camel-isubscribe-subscribe">camel_isubscribe_subscribe ()</a>
</dt>
<dt>camel_isubscribe_subscribed, <a class="indexterm" href="camel-CamelStore.html#camel-isubscribe-subscribed">camel_isubscribe_subscribed ()</a>
</dt>
<dt>camel_isubscribe_unsubscribe, <a class="indexterm" href="camel-CamelStore.html#camel-isubscribe-unsubscribe">camel_isubscribe_unsubscribe ()</a>
</dt>
<dt>camel_iterator_free, <a class="indexterm" href="camel-CamelObject.html#camel-iterator-free">camel_iterator_free ()</a>
</dt>
<dt>camel_iterator_length, <a class="indexterm" href="camel-CamelObject.html#camel-iterator-length">camel_iterator_length ()</a>
</dt>
<dt>camel_iterator_new, <a class="indexterm" href="camel-CamelObject.html#camel-iterator-new">camel_iterator_new ()</a>
</dt>
<dt>camel_iterator_next, <a class="indexterm" href="camel-CamelObject.html#camel-iterator-next">camel_iterator_next ()</a>
</dt>
<dt>camel_iterator_reset, <a class="indexterm" href="camel-CamelObject.html#camel-iterator-reset">camel_iterator_reset ()</a>
</dt>
<dt>CAMEL_MAKE_CLASS, <a class="indexterm" href="camel-CamelObject.html#CAMEL-MAKE-CLASS:CAPS">CAMEL_MAKE_CLASS()</a>
</dt>
<dt>camel_medium_add_header, <a class="indexterm" href="camel-CamelMedium.html#camel-medium-add-header">camel_medium_add_header ()</a>
</dt>
<dt>camel_medium_free_headers, <a class="indexterm" href="camel-CamelMedium.html#camel-medium-free-headers">camel_medium_free_headers ()</a>
</dt>
<dt>camel_medium_get_content_object, <a class="indexterm" href="camel-CamelMedium.html#camel-medium-get-content-object">camel_medium_get_content_object ()</a>
</dt>
<dt>camel_medium_get_header, <a class="indexterm" href="camel-CamelMedium.html#camel-medium-get-header">camel_medium_get_header ()</a>
</dt>
<dt>camel_medium_get_headers, <a class="indexterm" href="camel-CamelMedium.html#camel-medium-get-headers">camel_medium_get_headers ()</a>
</dt>
<dt>camel_medium_remove_header, <a class="indexterm" href="camel-CamelMedium.html#camel-medium-remove-header">camel_medium_remove_header ()</a>
</dt>
<dt>camel_medium_set_content_object, <a class="indexterm" href="camel-CamelMedium.html#camel-medium-set-content-object">camel_medium_set_content_object ()</a>
</dt>
<dt>camel_medium_set_header, <a class="indexterm" href="camel-CamelMedium.html#camel-medium-set-header">camel_medium_set_header ()</a>
</dt>
<dt>CAMEL_MESSAGE_DATE_CURRENT, <a class="indexterm" href="camel-CamelMimeMessage.html#CAMEL-MESSAGE-DATE-CURRENT:CAPS">CAMEL_MESSAGE_DATE_CURRENT</a>
</dt>
<dt>camel_message_info_cc, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-message-info-cc">camel_message_info_cc()</a>
</dt>
<dt>camel_message_info_clone, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-message-info-clone">camel_message_info_clone ()</a>
</dt>
<dt>camel_message_info_date_received, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-message-info-date-received">camel_message_info_date_received()</a>
</dt>
<dt>camel_message_info_date_sent, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-message-info-date-sent">camel_message_info_date_sent()</a>
</dt>
<dt>camel_message_info_dump, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-message-info-dump">camel_message_info_dump ()</a>
</dt>
<dt>camel_message_info_flags, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-message-info-flags">camel_message_info_flags()</a>
</dt>
<dt>camel_message_info_free, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-message-info-free">camel_message_info_free ()</a>
</dt>
<dt>camel_message_info_from, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-message-info-from">camel_message_info_from()</a>
</dt>
<dt>camel_message_info_message_id, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-message-info-message-id">camel_message_info_message_id()</a>
</dt>
<dt>camel_message_info_mlist, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-message-info-mlist">camel_message_info_mlist()</a>
</dt>
<dt>camel_message_info_new, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-message-info-new">camel_message_info_new ()</a>
</dt>
<dt>camel_message_info_new_from_header, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-message-info-new-from-header">camel_message_info_new_from_header ()</a>
</dt>
<dt>camel_message_info_ptr, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-message-info-ptr">camel_message_info_ptr ()</a>
</dt>
<dt>camel_message_info_ref, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-message-info-ref">camel_message_info_ref ()</a>
</dt>
<dt>camel_message_info_references, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-message-info-references">camel_message_info_references()</a>
</dt>
<dt>camel_message_info_set_flags, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-message-info-set-flags">camel_message_info_set_flags ()</a>
</dt>
<dt>camel_message_info_set_user_flag, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-message-info-set-user-flag">camel_message_info_set_user_flag ()</a>
</dt>
<dt>camel_message_info_set_user_tag, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-message-info-set-user-tag">camel_message_info_set_user_tag ()</a>
</dt>
<dt>camel_message_info_size, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-message-info-size">camel_message_info_size()</a>
</dt>
<dt>camel_message_info_subject, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-message-info-subject">camel_message_info_subject()</a>
</dt>
<dt>camel_message_info_time, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-message-info-time">camel_message_info_time ()</a>
</dt>
<dt>camel_message_info_to, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-message-info-to">camel_message_info_to()</a>
</dt>
<dt>camel_message_info_uid, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-message-info-uid">camel_message_info_uid()</a>
</dt>
<dt>camel_message_info_uint32, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-message-info-uint32">camel_message_info_uint32 ()</a>
</dt>
<dt>camel_message_info_user_flag, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-message-info-user-flag">camel_message_info_user_flag ()</a>
</dt>
<dt>camel_message_info_user_flags, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-message-info-user-flags">camel_message_info_user_flags()</a>
</dt>
<dt>camel_message_info_user_tag, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-message-info-user-tag">camel_message_info_user_tag ()</a>
</dt>
<dt>camel_message_info_user_tags, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-message-info-user-tags">camel_message_info_user_tags()</a>
</dt>
<dt>CAMEL_MESSAGE_SYSTEM_MASK, <a class="indexterm" href="camel-CamelFolderSummary.html#CAMEL-MESSAGE-SYSTEM-MASK:CAPS">CAMEL_MESSAGE_SYSTEM_MASK</a>
</dt>
<dt>camel_mime_filter_backup, <a class="indexterm" href="camel-CamelMimeFilter.html#camel-mime-filter-backup">camel_mime_filter_backup ()</a>
</dt>
<dt>camel_mime_filter_basic_new, <a class="indexterm" href="camel-CamelMimeFilterBasic.html#camel-mime-filter-basic-new">camel_mime_filter_basic_new ()</a>
</dt>
<dt>camel_mime_filter_basic_new_type, <a class="indexterm" href="camel-CamelMimeFilterBasic.html#camel-mime-filter-basic-new-type">camel_mime_filter_basic_new_type ()</a>
</dt>
<dt>camel_mime_filter_bestenc_get_best_charset, <a class="indexterm" href="camel-CamelMimeFilterBestenc.html#camel-mime-filter-bestenc-get-best-charset">camel_mime_filter_bestenc_get_best_charset ()</a>
</dt>
<dt>camel_mime_filter_bestenc_get_best_encoding, <a class="indexterm" href="camel-CamelMimeFilterBestenc.html#camel-mime-filter-bestenc-get-best-encoding">camel_mime_filter_bestenc_get_best_encoding ()</a>
</dt>
<dt>camel_mime_filter_bestenc_new, <a class="indexterm" href="camel-CamelMimeFilterBestenc.html#camel-mime-filter-bestenc-new">camel_mime_filter_bestenc_new ()</a>
</dt>
<dt>camel_mime_filter_bestenc_set_flags, <a class="indexterm" href="camel-CamelMimeFilterBestenc.html#camel-mime-filter-bestenc-set-flags">camel_mime_filter_bestenc_set_flags ()</a>
</dt>
<dt>camel_mime_filter_canon_new, <a class="indexterm" href="camel-CamelMimeFilterCanon.html#camel-mime-filter-canon-new">camel_mime_filter_canon_new ()</a>
</dt>
<dt>camel_mime_filter_charset_new, <a class="indexterm" href="camel-CamelMimeFilterCharset.html#camel-mime-filter-charset-new">camel_mime_filter_charset_new ()</a>
</dt>
<dt>camel_mime_filter_charset_new_convert, <a class="indexterm" href="camel-CamelMimeFilterCharset.html#camel-mime-filter-charset-new-convert">camel_mime_filter_charset_new_convert ()</a>
</dt>
<dt>camel_mime_filter_complete, <a class="indexterm" href="camel-CamelMimeFilter.html#camel-mime-filter-complete">camel_mime_filter_complete ()</a>
</dt>
<dt>camel_mime_filter_crlf_new, <a class="indexterm" href="camel-CamelMimeFilterCRLF.html#camel-mime-filter-crlf-new">camel_mime_filter_crlf_new ()</a>
</dt>
<dt>CAMEL_MIME_FILTER_ENRICHED_IS_RICHTEXT, <a class="indexterm" href="camel-CamelMimeFilterEnriched.html#CAMEL-MIME-FILTER-ENRICHED-IS-RICHTEXT:CAPS">CAMEL_MIME_FILTER_ENRICHED_IS_RICHTEXT</a>
</dt>
<dt>camel_mime_filter_enriched_new, <a class="indexterm" href="camel-CamelMimeFilterEnriched.html#camel-mime-filter-enriched-new">camel_mime_filter_enriched_new ()</a>
</dt>
<dt>camel_mime_filter_filter, <a class="indexterm" href="camel-CamelMimeFilter.html#camel-mime-filter-filter">camel_mime_filter_filter ()</a>
</dt>
<dt>camel_mime_filter_from_new, <a class="indexterm" href="camel-CamelMimeFilterFrom.html#camel-mime-filter-from-new">camel_mime_filter_from_new ()</a>
</dt>
<dt>camel_mime_filter_html_new, <a class="indexterm" href="camel-CamelMimeFilterHTML.html#camel-mime-filter-html-new">camel_mime_filter_html_new ()</a>
</dt>
<dt>camel_mime_filter_index_new, <a class="indexterm" href="camel-CamelMimeFilterIndex.html#camel-mime-filter-index-new">camel_mime_filter_index_new ()</a>
</dt>
<dt>camel_mime_filter_index_new_index, <a class="indexterm" href="camel-CamelMimeFilterIndex.html#camel-mime-filter-index-new-index">camel_mime_filter_index_new_index ()</a>
</dt>
<dt>camel_mime_filter_index_set_index, <a class="indexterm" href="camel-CamelMimeFilterIndex.html#camel-mime-filter-index-set-index">camel_mime_filter_index_set_index ()</a>
</dt>
<dt>camel_mime_filter_index_set_name, <a class="indexterm" href="camel-CamelMimeFilterIndex.html#camel-mime-filter-index-set-name">camel_mime_filter_index_set_name ()</a>
</dt>
<dt>camel_mime_filter_new, <a class="indexterm" href="camel-CamelMimeFilter.html#camel-mime-filter-new">camel_mime_filter_new ()</a>
</dt>
<dt>camel_mime_filter_pgp_new, <a class="indexterm" href="camel-CamelMimeFilterPgp.html#camel-mime-filter-pgp-new">camel_mime_filter_pgp_new ()</a>
</dt>
<dt>camel_mime_filter_reset, <a class="indexterm" href="camel-CamelMimeFilter.html#camel-mime-filter-reset">camel_mime_filter_reset ()</a>
</dt>
<dt>camel_mime_filter_save_new, <a class="indexterm" href="camel-CamelMimeFilterSave.html#camel-mime-filter-save-new">camel_mime_filter_save_new ()</a>
</dt>
<dt>camel_mime_filter_save_new_with_stream, <a class="indexterm" href="camel-CamelMimeFilterSave.html#camel-mime-filter-save-new-with-stream">camel_mime_filter_save_new_with_stream ()</a>
</dt>
<dt>camel_mime_filter_set_size, <a class="indexterm" href="camel-CamelMimeFilter.html#camel-mime-filter-set-size">camel_mime_filter_set_size ()</a>
</dt>
<dt>CAMEL_MIME_FILTER_TOHTML_CITE, <a class="indexterm" href="camel-CamelMimeFilterToHTML.html#CAMEL-MIME-FILTER-TOHTML-CITE:CAPS">CAMEL_MIME_FILTER_TOHTML_CITE</a>
</dt>
<dt>CAMEL_MIME_FILTER_TOHTML_CONVERT_ADDRESSES, <a class="indexterm" href="camel-CamelMimeFilterToHTML.html#CAMEL-MIME-FILTER-TOHTML-CONVERT-ADDRESSES:CAPS">CAMEL_MIME_FILTER_TOHTML_CONVERT_ADDRESSES</a>
</dt>
<dt>CAMEL_MIME_FILTER_TOHTML_CONVERT_NL, <a class="indexterm" href="camel-CamelMimeFilterToHTML.html#CAMEL-MIME-FILTER-TOHTML-CONVERT-NL:CAPS">CAMEL_MIME_FILTER_TOHTML_CONVERT_NL</a>
</dt>
<dt>CAMEL_MIME_FILTER_TOHTML_CONVERT_SPACES, <a class="indexterm" href="camel-CamelMimeFilterToHTML.html#CAMEL-MIME-FILTER-TOHTML-CONVERT-SPACES:CAPS">CAMEL_MIME_FILTER_TOHTML_CONVERT_SPACES</a>
</dt>
<dt>CAMEL_MIME_FILTER_TOHTML_CONVERT_URLS, <a class="indexterm" href="camel-CamelMimeFilterToHTML.html#CAMEL-MIME-FILTER-TOHTML-CONVERT-URLS:CAPS">CAMEL_MIME_FILTER_TOHTML_CONVERT_URLS</a>
</dt>
<dt>CAMEL_MIME_FILTER_TOHTML_ESCAPE_8BIT, <a class="indexterm" href="camel-CamelMimeFilterToHTML.html#CAMEL-MIME-FILTER-TOHTML-ESCAPE-8BIT:CAPS">CAMEL_MIME_FILTER_TOHTML_ESCAPE_8BIT</a>
</dt>
<dt>CAMEL_MIME_FILTER_TOHTML_FORMAT_FLOWED, <a class="indexterm" href="camel-CamelMimeFilterToHTML.html#CAMEL-MIME-FILTER-TOHTML-FORMAT-FLOWED:CAPS">CAMEL_MIME_FILTER_TOHTML_FORMAT_FLOWED</a>
</dt>
<dt>CAMEL_MIME_FILTER_TOHTML_MARK_CITATION, <a class="indexterm" href="camel-CamelMimeFilterToHTML.html#CAMEL-MIME-FILTER-TOHTML-MARK-CITATION:CAPS">CAMEL_MIME_FILTER_TOHTML_MARK_CITATION</a>
</dt>
<dt>camel_mime_filter_tohtml_new, <a class="indexterm" href="camel-CamelMimeFilterToHTML.html#camel-mime-filter-tohtml-new">camel_mime_filter_tohtml_new ()</a>
</dt>
<dt>CAMEL_MIME_FILTER_TOHTML_PRE, <a class="indexterm" href="camel-CamelMimeFilterToHTML.html#CAMEL-MIME-FILTER-TOHTML-PRE:CAPS">CAMEL_MIME_FILTER_TOHTML_PRE</a>
</dt>
<dt>CAMEL_MIME_FILTER_TOHTML_PRESERVE_8BIT, <a class="indexterm" href="camel-CamelMimeFilterToHTML.html#CAMEL-MIME-FILTER-TOHTML-PRESERVE-8BIT:CAPS">CAMEL_MIME_FILTER_TOHTML_PRESERVE_8BIT</a>
</dt>
<dt>camel_mime_filter_windows_is_windows_charset, <a class="indexterm" href="camel-CamelMimeFilterWindows.html#camel-mime-filter-windows-is-windows-charset">camel_mime_filter_windows_is_windows_charset ()</a>
</dt>
<dt>camel_mime_filter_windows_new, <a class="indexterm" href="camel-CamelMimeFilterWindows.html#camel-mime-filter-windows-new">camel_mime_filter_windows_new ()</a>
</dt>
<dt>camel_mime_filter_windows_real_charset, <a class="indexterm" href="camel-CamelMimeFilterWindows.html#camel-mime-filter-windows-real-charset">camel_mime_filter_windows_real_charset ()</a>
</dt>
<dt>camel_mime_filter_yenc_get_crc, <a class="indexterm" href="camel-CamelMimeFilterYenc.html#camel-mime-filter-yenc-get-crc">camel_mime_filter_yenc_get_crc ()</a>
</dt>
<dt>camel_mime_filter_yenc_get_pcrc, <a class="indexterm" href="camel-CamelMimeFilterYenc.html#camel-mime-filter-yenc-get-pcrc">camel_mime_filter_yenc_get_pcrc ()</a>
</dt>
<dt>camel_mime_filter_yenc_new, <a class="indexterm" href="camel-CamelMimeFilterYenc.html#camel-mime-filter-yenc-new">camel_mime_filter_yenc_new ()</a>
</dt>
<dt>camel_mime_filter_yenc_set_crc, <a class="indexterm" href="camel-CamelMimeFilterYenc.html#camel-mime-filter-yenc-set-crc">camel_mime_filter_yenc_set_crc ()</a>
</dt>
<dt>camel_mime_filter_yenc_set_state, <a class="indexterm" href="camel-CamelMimeFilterYenc.html#camel-mime-filter-yenc-set-state">camel_mime_filter_yenc_set_state ()</a>
</dt>
<dt>camel_mime_message_build_mbox_from, <a class="indexterm" href="camel-CamelMimeMessage.html#camel-mime-message-build-mbox-from">camel_mime_message_build_mbox_from ()</a>
</dt>
<dt>camel_mime_message_dump, <a class="indexterm" href="camel-CamelMimeMessage.html#camel-mime-message-dump">camel_mime_message_dump ()</a>
</dt>
<dt>camel_mime_message_encode_8bit_parts, <a class="indexterm" href="camel-CamelMimeMessage.html#camel-mime-message-encode-8bit-parts">camel_mime_message_encode_8bit_parts ()</a>
</dt>
<dt>camel_mime_message_get_date, <a class="indexterm" href="camel-CamelMimeMessage.html#camel-mime-message-get-date">camel_mime_message_get_date ()</a>
</dt>
<dt>camel_mime_message_get_date_received, <a class="indexterm" href="camel-CamelMimeMessage.html#camel-mime-message-get-date-received">camel_mime_message_get_date_received ()</a>
</dt>
<dt>camel_mime_message_get_from, <a class="indexterm" href="camel-CamelMimeMessage.html#camel-mime-message-get-from">camel_mime_message_get_from ()</a>
</dt>
<dt>camel_mime_message_get_message_id, <a class="indexterm" href="camel-CamelMimeMessage.html#camel-mime-message-get-message-id">camel_mime_message_get_message_id ()</a>
</dt>
<dt>camel_mime_message_get_part_by_content_id, <a class="indexterm" href="camel-CamelMimeMessage.html#camel-mime-message-get-part-by-content-id">camel_mime_message_get_part_by_content_id ()</a>
</dt>
<dt>camel_mime_message_get_recipients, <a class="indexterm" href="camel-CamelMimeMessage.html#camel-mime-message-get-recipients">camel_mime_message_get_recipients ()</a>
</dt>
<dt>camel_mime_message_get_reply_to, <a class="indexterm" href="camel-CamelMimeMessage.html#camel-mime-message-get-reply-to">camel_mime_message_get_reply_to ()</a>
</dt>
<dt>camel_mime_message_get_source, <a class="indexterm" href="camel-CamelMimeMessage.html#camel-mime-message-get-source">camel_mime_message_get_source ()</a>
</dt>
<dt>camel_mime_message_get_subject, <a class="indexterm" href="camel-CamelMimeMessage.html#camel-mime-message-get-subject">camel_mime_message_get_subject ()</a>
</dt>
<dt>camel_mime_message_has_8bit_parts, <a class="indexterm" href="camel-CamelMimeMessage.html#camel-mime-message-has-8bit-parts">camel_mime_message_has_8bit_parts ()</a>
</dt>
<dt>camel_mime_message_new, <a class="indexterm" href="camel-CamelMimeMessage.html#camel-mime-message-new">camel_mime_message_new ()</a>
</dt>
<dt>camel_mime_message_set_best_encoding, <a class="indexterm" href="camel-CamelMimeMessage.html#camel-mime-message-set-best-encoding">camel_mime_message_set_best_encoding ()</a>
</dt>
<dt>camel_mime_message_set_date, <a class="indexterm" href="camel-CamelMimeMessage.html#camel-mime-message-set-date">camel_mime_message_set_date ()</a>
</dt>
<dt>camel_mime_message_set_from, <a class="indexterm" href="camel-CamelMimeMessage.html#camel-mime-message-set-from">camel_mime_message_set_from ()</a>
</dt>
<dt>camel_mime_message_set_message_id, <a class="indexterm" href="camel-CamelMimeMessage.html#camel-mime-message-set-message-id">camel_mime_message_set_message_id ()</a>
</dt>
<dt>camel_mime_message_set_recipients, <a class="indexterm" href="camel-CamelMimeMessage.html#camel-mime-message-set-recipients">camel_mime_message_set_recipients ()</a>
</dt>
<dt>camel_mime_message_set_reply_to, <a class="indexterm" href="camel-CamelMimeMessage.html#camel-mime-message-set-reply-to">camel_mime_message_set_reply_to ()</a>
</dt>
<dt>camel_mime_message_set_source, <a class="indexterm" href="camel-CamelMimeMessage.html#camel-mime-message-set-source">camel_mime_message_set_source ()</a>
</dt>
<dt>camel_mime_message_set_subject, <a class="indexterm" href="camel-CamelMimeMessage.html#camel-mime-message-set-subject">camel_mime_message_set_subject ()</a>
</dt>
<dt>camel_mime_parser_content_type, <a class="indexterm" href="camel-CamelMimeParser.html#camel-mime-parser-content-type">camel_mime_parser_content_type ()</a>
</dt>
<dt>camel_mime_parser_drop_step, <a class="indexterm" href="camel-CamelMimeParser.html#camel-mime-parser-drop-step">camel_mime_parser_drop_step ()</a>
</dt>
<dt>camel_mime_parser_errno, <a class="indexterm" href="camel-CamelMimeParser.html#camel-mime-parser-errno">camel_mime_parser_errno ()</a>
</dt>
<dt>camel_mime_parser_fd, <a class="indexterm" href="camel-CamelMimeParser.html#camel-mime-parser-fd">camel_mime_parser_fd ()</a>
</dt>
<dt>camel_mime_parser_filter_add, <a class="indexterm" href="camel-CamelMimeParser.html#camel-mime-parser-filter-add">camel_mime_parser_filter_add ()</a>
</dt>
<dt>camel_mime_parser_filter_remove, <a class="indexterm" href="camel-CamelMimeParser.html#camel-mime-parser-filter-remove">camel_mime_parser_filter_remove ()</a>
</dt>
<dt>camel_mime_parser_from_line, <a class="indexterm" href="camel-CamelMimeParser.html#camel-mime-parser-from-line">camel_mime_parser_from_line ()</a>
</dt>
<dt>camel_mime_parser_header, <a class="indexterm" href="camel-CamelMimeParser.html#camel-mime-parser-header">camel_mime_parser_header ()</a>
</dt>
<dt>camel_mime_parser_headers_raw, <a class="indexterm" href="camel-CamelMimeParser.html#camel-mime-parser-headers-raw">camel_mime_parser_headers_raw ()</a>
</dt>
<dt>camel_mime_parser_init_with_fd, <a class="indexterm" href="camel-CamelMimeParser.html#camel-mime-parser-init-with-fd">camel_mime_parser_init_with_fd ()</a>
</dt>
<dt>camel_mime_parser_init_with_stream, <a class="indexterm" href="camel-CamelMimeParser.html#camel-mime-parser-init-with-stream">camel_mime_parser_init_with_stream ()</a>
</dt>
<dt>camel_mime_parser_new, <a class="indexterm" href="camel-CamelMimeParser.html#camel-mime-parser-new">camel_mime_parser_new ()</a>
</dt>
<dt>camel_mime_parser_postface, <a class="indexterm" href="camel-CamelMimeParser.html#camel-mime-parser-postface">camel_mime_parser_postface ()</a>
</dt>
<dt>camel_mime_parser_preface, <a class="indexterm" href="camel-CamelMimeParser.html#camel-mime-parser-preface">camel_mime_parser_preface ()</a>
</dt>
<dt>camel_mime_parser_push_state, <a class="indexterm" href="camel-CamelMimeParser.html#camel-mime-parser-push-state">camel_mime_parser_push_state ()</a>
</dt>
<dt>camel_mime_parser_read, <a class="indexterm" href="camel-CamelMimeParser.html#camel-mime-parser-read">camel_mime_parser_read ()</a>
</dt>
<dt>camel_mime_parser_scan_from, <a class="indexterm" href="camel-CamelMimeParser.html#camel-mime-parser-scan-from">camel_mime_parser_scan_from ()</a>
</dt>
<dt>camel_mime_parser_scan_pre_from, <a class="indexterm" href="camel-CamelMimeParser.html#camel-mime-parser-scan-pre-from">camel_mime_parser_scan_pre_from ()</a>
</dt>
<dt>camel_mime_parser_seek, <a class="indexterm" href="camel-CamelMimeParser.html#camel-mime-parser-seek">camel_mime_parser_seek ()</a>
</dt>
<dt>camel_mime_parser_set_header_regex, <a class="indexterm" href="camel-CamelMimeParser.html#camel-mime-parser-set-header-regex">camel_mime_parser_set_header_regex ()</a>
</dt>
<dt>camel_mime_parser_state, <a class="indexterm" href="camel-CamelMimeParser.html#camel-mime-parser-state">camel_mime_parser_state ()</a>
</dt>
<dt>camel_mime_parser_state_t, <a class="indexterm" href="camel-CamelMimeParser.html#camel-mime-parser-state-t">enum camel_mime_parser_state_t</a>
</dt>
<dt>camel_mime_parser_step, <a class="indexterm" href="camel-CamelMimeParser.html#camel-mime-parser-step">camel_mime_parser_step ()</a>
</dt>
<dt>camel_mime_parser_stream, <a class="indexterm" href="camel-CamelMimeParser.html#camel-mime-parser-stream">camel_mime_parser_stream ()</a>
</dt>
<dt>camel_mime_parser_tell, <a class="indexterm" href="camel-CamelMimeParser.html#camel-mime-parser-tell">camel_mime_parser_tell ()</a>
</dt>
<dt>camel_mime_parser_tell_start_boundary, <a class="indexterm" href="camel-CamelMimeParser.html#camel-mime-parser-tell-start-boundary">camel_mime_parser_tell_start_boundary ()</a>
</dt>
<dt>camel_mime_parser_tell_start_from, <a class="indexterm" href="camel-CamelMimeParser.html#camel-mime-parser-tell-start-from">camel_mime_parser_tell_start_from ()</a>
</dt>
<dt>camel_mime_parser_tell_start_headers, <a class="indexterm" href="camel-CamelMimeParser.html#camel-mime-parser-tell-start-headers">camel_mime_parser_tell_start_headers ()</a>
</dt>
<dt>camel_mime_parser_unstep, <a class="indexterm" href="camel-CamelMimeParser.html#camel-mime-parser-unstep">camel_mime_parser_unstep ()</a>
</dt>
<dt>camel_mime_part_construct_from_parser, <a class="indexterm" href="camel-CamelMimePart.html#camel-mime-part-construct-from-parser">camel_mime_part_construct_from_parser ()</a>
</dt>
<dt>camel_mime_part_get_content_id, <a class="indexterm" href="camel-CamelMimePart.html#camel-mime-part-get-content-id">camel_mime_part_get_content_id ()</a>
</dt>
<dt>camel_mime_part_get_content_languages, <a class="indexterm" href="camel-CamelMimePart.html#camel-mime-part-get-content-languages">camel_mime_part_get_content_languages ()</a>
</dt>
<dt>camel_mime_part_get_content_location, <a class="indexterm" href="camel-CamelMimePart.html#camel-mime-part-get-content-location">camel_mime_part_get_content_location ()</a>
</dt>
<dt>camel_mime_part_get_content_MD5, <a class="indexterm" href="camel-CamelMimePart.html#camel-mime-part-get-content-MD5">camel_mime_part_get_content_MD5 ()</a>
</dt>
<dt>camel_mime_part_get_content_size, <a class="indexterm" href="camel-CamelMimePart.html#camel-mime-part-get-content-size">camel_mime_part_get_content_size ()</a>
</dt>
<dt>camel_mime_part_get_content_type, <a class="indexterm" href="camel-CamelMimePart.html#camel-mime-part-get-content-type">camel_mime_part_get_content_type ()</a>
</dt>
<dt>camel_mime_part_get_description, <a class="indexterm" href="camel-CamelMimePart.html#camel-mime-part-get-description">camel_mime_part_get_description ()</a>
</dt>
<dt>camel_mime_part_get_disposition, <a class="indexterm" href="camel-CamelMimePart.html#camel-mime-part-get-disposition">camel_mime_part_get_disposition ()</a>
</dt>
<dt>camel_mime_part_get_encoding, <a class="indexterm" href="camel-CamelMimePart.html#camel-mime-part-get-encoding">camel_mime_part_get_encoding ()</a>
</dt>
<dt>camel_mime_part_get_filename, <a class="indexterm" href="camel-CamelMimePart.html#camel-mime-part-get-filename">camel_mime_part_get_filename ()</a>
</dt>
<dt>camel_mime_part_new, <a class="indexterm" href="camel-CamelMimePart.html#camel-mime-part-new">camel_mime_part_new ()</a>
</dt>
<dt>camel_mime_part_set_content, <a class="indexterm" href="camel-CamelMimePart.html#camel-mime-part-set-content">camel_mime_part_set_content ()</a>
</dt>
<dt>camel_mime_part_set_content_id, <a class="indexterm" href="camel-CamelMimePart.html#camel-mime-part-set-content-id">camel_mime_part_set_content_id ()</a>
</dt>
<dt>camel_mime_part_set_content_languages, <a class="indexterm" href="camel-CamelMimePart.html#camel-mime-part-set-content-languages">camel_mime_part_set_content_languages ()</a>
</dt>
<dt>camel_mime_part_set_content_location, <a class="indexterm" href="camel-CamelMimePart.html#camel-mime-part-set-content-location">camel_mime_part_set_content_location ()</a>
</dt>
<dt>camel_mime_part_set_content_MD5, <a class="indexterm" href="camel-CamelMimePart.html#camel-mime-part-set-content-MD5">camel_mime_part_set_content_MD5 ()</a>
</dt>
<dt>camel_mime_part_set_content_type, <a class="indexterm" href="camel-CamelMimePart.html#camel-mime-part-set-content-type">camel_mime_part_set_content_type ()</a>
</dt>
<dt>camel_mime_part_set_description, <a class="indexterm" href="camel-CamelMimePart.html#camel-mime-part-set-description">camel_mime_part_set_description ()</a>
</dt>
<dt>camel_mime_part_set_disposition, <a class="indexterm" href="camel-CamelMimePart.html#camel-mime-part-set-disposition">camel_mime_part_set_disposition ()</a>
</dt>
<dt>camel_mime_part_set_encoding, <a class="indexterm" href="camel-CamelMimePart.html#camel-mime-part-set-encoding">camel_mime_part_set_encoding ()</a>
</dt>
<dt>camel_mime_part_set_filename, <a class="indexterm" href="camel-CamelMimePart.html#camel-mime-part-set-filename">camel_mime_part_set_filename ()</a>
</dt>
<dt>CAMEL_MIME_YDECODE_STATE_BEGIN, <a class="indexterm" href="camel-CamelMimeFilterYenc.html#CAMEL-MIME-YDECODE-STATE-BEGIN:CAPS">CAMEL_MIME_YDECODE_STATE_BEGIN</a>
</dt>
<dt>CAMEL_MIME_YDECODE_STATE_DECODE, <a class="indexterm" href="camel-CamelMimeFilterYenc.html#CAMEL-MIME-YDECODE-STATE-DECODE:CAPS">CAMEL_MIME_YDECODE_STATE_DECODE</a>
</dt>
<dt>CAMEL_MIME_YDECODE_STATE_END, <a class="indexterm" href="camel-CamelMimeFilterYenc.html#CAMEL-MIME-YDECODE-STATE-END:CAPS">CAMEL_MIME_YDECODE_STATE_END</a>
</dt>
<dt>CAMEL_MIME_YDECODE_STATE_EOLN, <a class="indexterm" href="camel-CamelMimeFilterYenc.html#CAMEL-MIME-YDECODE-STATE-EOLN:CAPS">CAMEL_MIME_YDECODE_STATE_EOLN</a>
</dt>
<dt>CAMEL_MIME_YDECODE_STATE_ESCAPE, <a class="indexterm" href="camel-CamelMimeFilterYenc.html#CAMEL-MIME-YDECODE-STATE-ESCAPE:CAPS">CAMEL_MIME_YDECODE_STATE_ESCAPE</a>
</dt>
<dt>CAMEL_MIME_YDECODE_STATE_INIT, <a class="indexterm" href="camel-CamelMimeFilterYenc.html#CAMEL-MIME-YDECODE-STATE-INIT:CAPS">CAMEL_MIME_YDECODE_STATE_INIT</a>
</dt>
<dt>CAMEL_MIME_YDECODE_STATE_PART, <a class="indexterm" href="camel-CamelMimeFilterYenc.html#CAMEL-MIME-YDECODE-STATE-PART:CAPS">CAMEL_MIME_YDECODE_STATE_PART</a>
</dt>
<dt>CAMEL_MIME_YENCODE_CRC_FINAL, <a class="indexterm" href="camel-CamelMimeFilterYenc.html#CAMEL-MIME-YENCODE-CRC-FINAL:CAPS">CAMEL_MIME_YENCODE_CRC_FINAL()</a>
</dt>
<dt>CAMEL_MIME_YENCODE_CRC_INIT, <a class="indexterm" href="camel-CamelMimeFilterYenc.html#CAMEL-MIME-YENCODE-CRC-INIT:CAPS">CAMEL_MIME_YENCODE_CRC_INIT</a>
</dt>
<dt>CAMEL_MIME_YENCODE_STATE_INIT, <a class="indexterm" href="camel-CamelMimeFilterYenc.html#CAMEL-MIME-YENCODE-STATE-INIT:CAPS">CAMEL_MIME_YENCODE_STATE_INIT</a>
</dt>
<dt>camel_multipart_add_part, <a class="indexterm" href="camel-CamelMultipart.html#camel-multipart-add-part">camel_multipart_add_part ()</a>
</dt>
<dt>camel_multipart_add_part_at, <a class="indexterm" href="camel-CamelMultipart.html#camel-multipart-add-part-at">camel_multipart_add_part_at ()</a>
</dt>
<dt>camel_multipart_construct_from_parser, <a class="indexterm" href="camel-CamelMultipart.html#camel-multipart-construct-from-parser">camel_multipart_construct_from_parser ()</a>
</dt>
<dt>camel_multipart_encrypted_new, <a class="indexterm" href="camel-CamelMultipartEncrypted.html#camel-multipart-encrypted-new">camel_multipart_encrypted_new ()</a>
</dt>
<dt>camel_multipart_get_boundary, <a class="indexterm" href="camel-CamelMultipart.html#camel-multipart-get-boundary">camel_multipart_get_boundary ()</a>
</dt>
<dt>camel_multipart_get_number, <a class="indexterm" href="camel-CamelMultipart.html#camel-multipart-get-number">camel_multipart_get_number ()</a>
</dt>
<dt>camel_multipart_get_part, <a class="indexterm" href="camel-CamelMultipart.html#camel-multipart-get-part">camel_multipart_get_part ()</a>
</dt>
<dt>camel_multipart_new, <a class="indexterm" href="camel-CamelMultipart.html#camel-multipart-new">camel_multipart_new ()</a>
</dt>
<dt>camel_multipart_remove_part, <a class="indexterm" href="camel-CamelMultipart.html#camel-multipart-remove-part">camel_multipart_remove_part ()</a>
</dt>
<dt>camel_multipart_remove_part_at, <a class="indexterm" href="camel-CamelMultipart.html#camel-multipart-remove-part-at">camel_multipart_remove_part_at ()</a>
</dt>
<dt>camel_multipart_set_boundary, <a class="indexterm" href="camel-CamelMultipart.html#camel-multipart-set-boundary">camel_multipart_set_boundary ()</a>
</dt>
<dt>camel_multipart_set_postface, <a class="indexterm" href="camel-CamelMultipart.html#camel-multipart-set-postface">camel_multipart_set_postface ()</a>
</dt>
<dt>camel_multipart_set_preface, <a class="indexterm" href="camel-CamelMultipart.html#camel-multipart-set-preface">camel_multipart_set_preface ()</a>
</dt>
<dt>camel_multipart_signed_get_content_stream, <a class="indexterm" href="camel-CamelMultipartSigned.html#camel-multipart-signed-get-content-stream">camel_multipart_signed_get_content_stream ()</a>
</dt>
<dt>camel_multipart_signed_new, <a class="indexterm" href="camel-CamelMultipartSigned.html#camel-multipart-signed-new">camel_multipart_signed_new ()</a>
</dt>
<dt>camel_name_to_type, <a class="indexterm" href="camel-CamelObject.html#camel-name-to-type">camel_name_to_type ()</a>
</dt>
<dt>camel_object_bag_abort, <a class="indexterm" href="camel-CamelObject.html#camel-object-bag-abort">camel_object_bag_abort ()</a>
</dt>
<dt>camel_object_bag_add, <a class="indexterm" href="camel-CamelObject.html#camel-object-bag-add">camel_object_bag_add ()</a>
</dt>
<dt>camel_object_bag_destroy, <a class="indexterm" href="camel-CamelObject.html#camel-object-bag-destroy">camel_object_bag_destroy ()</a>
</dt>
<dt>camel_object_bag_get, <a class="indexterm" href="camel-CamelObject.html#camel-object-bag-get">camel_object_bag_get ()</a>
</dt>
<dt>camel_object_bag_list, <a class="indexterm" href="camel-CamelObject.html#camel-object-bag-list">camel_object_bag_list ()</a>
</dt>
<dt>camel_object_bag_new, <a class="indexterm" href="camel-CamelObject.html#camel-object-bag-new">camel_object_bag_new ()</a>
</dt>
<dt>camel_object_bag_peek, <a class="indexterm" href="camel-CamelObject.html#camel-object-bag-peek">camel_object_bag_peek ()</a>
</dt>
<dt>camel_object_bag_rekey, <a class="indexterm" href="camel-CamelObject.html#camel-object-bag-rekey">camel_object_bag_rekey ()</a>
</dt>
<dt>camel_object_bag_remove, <a class="indexterm" href="camel-CamelObject.html#camel-object-bag-remove">camel_object_bag_remove ()</a>
</dt>
<dt>camel_object_bag_reserve, <a class="indexterm" href="camel-CamelObject.html#camel-object-bag-reserve">camel_object_bag_reserve ()</a>
</dt>
<dt>camel_object_cast, <a class="indexterm" href="camel-CamelObject.html#camel-object-cast">camel_object_cast ()</a>
</dt>
<dt>camel_object_class_add_event, <a class="indexterm" href="camel-CamelObject.html#camel-object-class-add-event">camel_object_class_add_event ()</a>
</dt>
<dt>camel_object_class_add_interface, <a class="indexterm" href="camel-CamelObject.html#camel-object-class-add-interface">camel_object_class_add_interface ()</a>
</dt>
<dt>camel_object_class_cast, <a class="indexterm" href="camel-CamelObject.html#camel-object-class-cast">camel_object_class_cast ()</a>
</dt>
<dt>camel_object_class_dump_tree, <a class="indexterm" href="camel-CamelObject.html#camel-object-class-dump-tree">camel_object_class_dump_tree ()</a>
</dt>
<dt>camel_object_class_is, <a class="indexterm" href="camel-CamelObject.html#camel-object-class-is">camel_object_class_is ()</a>
</dt>
<dt>camel_object_free, <a class="indexterm" href="camel-CamelObject.html#camel-object-free">camel_object_free ()</a>
</dt>
<dt>camel_object_get, <a class="indexterm" href="camel-CamelObject.html#camel-object-get">camel_object_get ()</a>
</dt>
<dt>camel_object_getv, <a class="indexterm" href="camel-CamelObject.html#camel-object-getv">camel_object_getv ()</a>
</dt>
<dt>camel_object_get_int, <a class="indexterm" href="camel-CamelObject.html#camel-object-get-int">camel_object_get_int ()</a>
</dt>
<dt>camel_object_get_interface, <a class="indexterm" href="camel-CamelObject.html#camel-object-get-interface">camel_object_get_interface ()</a>
</dt>
<dt>camel_object_get_ptr, <a class="indexterm" href="camel-CamelObject.html#camel-object-get-ptr">camel_object_get_ptr ()</a>
</dt>
<dt>CAMEL_OBJECT_GET_TYPE, <a class="indexterm" href="camel-CamelObject.html#CAMEL-OBJECT-GET-TYPE:CAPS">CAMEL_OBJECT_GET_TYPE()</a>
</dt>
<dt>camel_object_hook_event, <a class="indexterm" href="camel-CamelObject.html#camel-object-hook-event">camel_object_hook_event ()</a>
</dt>
<dt>camel_object_is, <a class="indexterm" href="camel-CamelObject.html#camel-object-is">camel_object_is ()</a>
</dt>
<dt>camel_object_meta_get, <a class="indexterm" href="camel-CamelObject.html#camel-object-meta-get">camel_object_meta_get ()</a>
</dt>
<dt>camel_object_meta_set, <a class="indexterm" href="camel-CamelObject.html#camel-object-meta-set">camel_object_meta_set ()</a>
</dt>
<dt>camel_object_new, <a class="indexterm" href="camel-CamelObject.html#camel-object-new">camel_object_new ()</a>
</dt>
<dt>camel_object_new_name, <a class="indexterm" href="camel-CamelObject.html#camel-object-new-name">camel_object_new_name ()</a>
</dt>
<dt>camel_object_ref, <a class="indexterm" href="camel-CamelObject.html#camel-object-ref">camel_object_ref ()</a>
</dt>
<dt>camel_object_remove_event, <a class="indexterm" href="camel-CamelObject.html#camel-object-remove-event">camel_object_remove_event ()</a>
</dt>
<dt>camel_object_set, <a class="indexterm" href="camel-CamelObject.html#camel-object-set">camel_object_set ()</a>
</dt>
<dt>camel_object_setv, <a class="indexterm" href="camel-CamelObject.html#camel-object-setv">camel_object_setv ()</a>
</dt>
<dt>camel_object_state_read, <a class="indexterm" href="camel-CamelObject.html#camel-object-state-read">camel_object_state_read ()</a>
</dt>
<dt>camel_object_state_write, <a class="indexterm" href="camel-CamelObject.html#camel-object-state-write">camel_object_state_write ()</a>
</dt>
<dt>CAMEL_OBJECT_TRACK_INSTANCES, <a class="indexterm" href="camel-CamelObject.html#CAMEL-OBJECT-TRACK-INSTANCES:CAPS">CAMEL_OBJECT_TRACK_INSTANCES</a>
</dt>
<dt>camel_object_trigger_event, <a class="indexterm" href="camel-CamelObject.html#camel-object-trigger-event">camel_object_trigger_event ()</a>
</dt>
<dt>camel_object_type, <a class="indexterm" href="camel-CamelObject.html#camel-object-type">camel_object_type</a>
</dt>
<dt>CAMEL_OBJECT_TYPE, <a class="indexterm" href="camel-CamelObject.html#CAMEL-OBJECT-TYPE:CAPS">CAMEL_OBJECT_TYPE</a>
</dt>
<dt>camel_object_unhook_event, <a class="indexterm" href="camel-CamelObject.html#camel-object-unhook-event">camel_object_unhook_event ()</a>
</dt>
<dt>camel_object_unref, <a class="indexterm" href="camel-CamelObject.html#camel-object-unref">camel_object_unref ()</a>
</dt>
<dt>camel_offline_folder_downsync, <a class="indexterm" href="camel-CamelOfflineFolder.html#camel-offline-folder-downsync">camel_offline_folder_downsync ()</a>
</dt>
<dt>camel_offline_journal_construct, <a class="indexterm" href="camel-CamelOfflineJournal.html#camel-offline-journal-construct">camel_offline_journal_construct ()</a>
</dt>
<dt>camel_offline_journal_replay, <a class="indexterm" href="camel-CamelOfflineJournal.html#camel-offline-journal-replay">camel_offline_journal_replay ()</a>
</dt>
<dt>camel_offline_journal_set_filename, <a class="indexterm" href="camel-CamelOfflineJournal.html#camel-offline-journal-set-filename">camel_offline_journal_set_filename ()</a>
</dt>
<dt>camel_offline_journal_write, <a class="indexterm" href="camel-CamelOfflineJournal.html#camel-offline-journal-write">camel_offline_journal_write ()</a>
</dt>
<dt>camel_offline_store_prepare_for_offline, <a class="indexterm" href="camel-CamelOfflineStore.html#camel-offline-store-prepare-for-offline">camel_offline_store_prepare_for_offline ()</a>
</dt>
<dt>camel_offline_store_set_network_state, <a class="indexterm" href="camel-CamelOfflineStore.html#camel-offline-store-set-network-state">camel_offline_store_set_network_state ()</a>
</dt>
<dt>camel_operation_cancel, <a class="indexterm" href="camel-camel-operation.html#camel-operation-cancel">camel_operation_cancel ()</a>
</dt>
<dt>camel_operation_cancel_block, <a class="indexterm" href="camel-camel-operation.html#camel-operation-cancel-block">camel_operation_cancel_block ()</a>
</dt>
<dt>camel_operation_cancel_check, <a class="indexterm" href="camel-camel-operation.html#camel-operation-cancel-check">camel_operation_cancel_check ()</a>
</dt>
<dt>camel_operation_cancel_fd, <a class="indexterm" href="camel-camel-operation.html#camel-operation-cancel-fd">camel_operation_cancel_fd ()</a>
</dt>
<dt>camel_operation_cancel_prfd, <a class="indexterm" href="camel-camel-operation.html#camel-operation-cancel-prfd">camel_operation_cancel_prfd ()</a>
</dt>
<dt>camel_operation_cancel_unblock, <a class="indexterm" href="camel-camel-operation.html#camel-operation-cancel-unblock">camel_operation_cancel_unblock ()</a>
</dt>
<dt>camel_operation_end, <a class="indexterm" href="camel-camel-operation.html#camel-operation-end">camel_operation_end ()</a>
</dt>
<dt>camel_operation_mute, <a class="indexterm" href="camel-camel-operation.html#camel-operation-mute">camel_operation_mute ()</a>
</dt>
<dt>camel_operation_new, <a class="indexterm" href="camel-camel-operation.html#camel-operation-new">camel_operation_new ()</a>
</dt>
<dt>camel_operation_progress, <a class="indexterm" href="camel-camel-operation.html#camel-operation-progress">camel_operation_progress ()</a>
</dt>
<dt>camel_operation_progress_count, <a class="indexterm" href="camel-camel-operation.html#camel-operation-progress-count">camel_operation_progress_count ()</a>
</dt>
<dt>camel_operation_ref, <a class="indexterm" href="camel-camel-operation.html#camel-operation-ref">camel_operation_ref ()</a>
</dt>
<dt>camel_operation_register, <a class="indexterm" href="camel-camel-operation.html#camel-operation-register">camel_operation_register ()</a>
</dt>
<dt>camel_operation_registered, <a class="indexterm" href="camel-camel-operation.html#camel-operation-registered">camel_operation_registered ()</a>
</dt>
<dt>camel_operation_start, <a class="indexterm" href="camel-camel-operation.html#camel-operation-start">camel_operation_start ()</a>
</dt>
<dt>camel_operation_start_transient, <a class="indexterm" href="camel-camel-operation.html#camel-operation-start-transient">camel_operation_start_transient ()</a>
</dt>
<dt>camel_operation_status_t, <a class="indexterm" href="camel-camel-operation.html#camel-operation-status-t">enum camel_operation_status_t</a>
</dt>
<dt>camel_operation_uncancel, <a class="indexterm" href="camel-camel-operation.html#camel-operation-uncancel">camel_operation_uncancel ()</a>
</dt>
<dt>camel_operation_unref, <a class="indexterm" href="camel-camel-operation.html#camel-operation-unref">camel_operation_unref ()</a>
</dt>
<dt>camel_operation_unregister, <a class="indexterm" href="camel-camel-operation.html#camel-operation-unregister">camel_operation_unregister ()</a>
</dt>
<dt>CAMEL_PROVIDER_ALLOWS, <a class="indexterm" href="camel-camel-provider.html#CAMEL-PROVIDER-ALLOWS:CAPS">CAMEL_PROVIDER_ALLOWS()</a>
</dt>
<dt>camel_provider_auto_detect, <a class="indexterm" href="camel-camel-provider.html#camel-provider-auto-detect">camel_provider_auto_detect ()</a>
</dt>
<dt>CAMEL_PROVIDER_CONF_DEFAULT_HOSTNAME, <a class="indexterm" href="camel-camel-provider.html#CAMEL-PROVIDER-CONF-DEFAULT-HOSTNAME:CAPS">CAMEL_PROVIDER_CONF_DEFAULT_HOSTNAME</a>
</dt>
<dt>CAMEL_PROVIDER_CONF_DEFAULT_PATH, <a class="indexterm" href="camel-camel-provider.html#CAMEL-PROVIDER-CONF-DEFAULT-PATH:CAPS">CAMEL_PROVIDER_CONF_DEFAULT_PATH</a>
</dt>
<dt>CAMEL_PROVIDER_CONF_DEFAULT_USERNAME, <a class="indexterm" href="camel-camel-provider.html#CAMEL-PROVIDER-CONF-DEFAULT-USERNAME:CAPS">CAMEL_PROVIDER_CONF_DEFAULT_USERNAME</a>
</dt>
<dt>CAMEL_PROVIDER_DISABLE_SENT_FOLDER, <a class="indexterm" href="camel-camel-provider.html#CAMEL-PROVIDER-DISABLE-SENT-FOLDER:CAPS">CAMEL_PROVIDER_DISABLE_SENT_FOLDER</a>
</dt>
<dt>camel_provider_get, <a class="indexterm" href="camel-camel-provider.html#camel-provider-get">camel_provider_get ()</a>
</dt>
<dt>CAMEL_PROVIDER_HAS_LICENSE, <a class="indexterm" href="camel-camel-provider.html#CAMEL-PROVIDER-HAS-LICENSE:CAPS">CAMEL_PROVIDER_HAS_LICENSE</a>
</dt>
<dt>CAMEL_PROVIDER_HIDDEN, <a class="indexterm" href="camel-camel-provider.html#CAMEL-PROVIDER-HIDDEN:CAPS">CAMEL_PROVIDER_HIDDEN()</a>
</dt>
<dt>camel_provider_init, <a class="indexterm" href="camel-camel-provider.html#camel-provider-init">camel_provider_init ()</a>
</dt>
<dt>CAMEL_PROVIDER_IS_EXTERNAL, <a class="indexterm" href="camel-camel-provider.html#CAMEL-PROVIDER-IS-EXTERNAL:CAPS">CAMEL_PROVIDER_IS_EXTERNAL</a>
</dt>
<dt>CAMEL_PROVIDER_IS_LOCAL, <a class="indexterm" href="camel-camel-provider.html#CAMEL-PROVIDER-IS-LOCAL:CAPS">CAMEL_PROVIDER_IS_LOCAL</a>
</dt>
<dt>CAMEL_PROVIDER_IS_SOURCE, <a class="indexterm" href="camel-camel-provider.html#CAMEL-PROVIDER-IS-SOURCE:CAPS">CAMEL_PROVIDER_IS_SOURCE</a>
</dt>
<dt>CAMEL_PROVIDER_IS_STORAGE, <a class="indexterm" href="camel-camel-provider.html#CAMEL-PROVIDER-IS-STORAGE:CAPS">CAMEL_PROVIDER_IS_STORAGE</a>
</dt>
<dt>CAMEL_PROVIDER_IS_STORE_AND_TRANSPORT, <a class="indexterm" href="camel-camel-provider.html#CAMEL-PROVIDER-IS-STORE-AND-TRANSPORT:CAPS">CAMEL_PROVIDER_IS_STORE_AND_TRANSPORT()</a>
</dt>
<dt>camel_provider_list, <a class="indexterm" href="camel-camel-provider.html#camel-provider-list">camel_provider_list ()</a>
</dt>
<dt>camel_provider_load, <a class="indexterm" href="camel-camel-provider.html#camel-provider-load">camel_provider_load ()</a>
</dt>
<dt>camel_provider_module_init, <a class="indexterm" href="camel-camel-provider.html#camel-provider-module-init">camel_provider_module_init ()</a>
</dt>
<dt>CAMEL_PROVIDER_NEEDS, <a class="indexterm" href="camel-camel-provider.html#CAMEL-PROVIDER-NEEDS:CAPS">CAMEL_PROVIDER_NEEDS()</a>
</dt>
<dt>camel_provider_register, <a class="indexterm" href="camel-camel-provider.html#camel-provider-register">camel_provider_register ()</a>
</dt>
<dt>CAMEL_PROVIDER_SUPPORTS_SSL, <a class="indexterm" href="camel-camel-provider.html#CAMEL-PROVIDER-SUPPORTS-SSL:CAPS">CAMEL_PROVIDER_SUPPORTS_SSL</a>
</dt>
<dt>CAMEL_RECIPIENT_TYPE_BCC, <a class="indexterm" href="camel-CamelMimeMessage.html#CAMEL-RECIPIENT-TYPE-BCC:CAPS">CAMEL_RECIPIENT_TYPE_BCC</a>
</dt>
<dt>CAMEL_RECIPIENT_TYPE_CC, <a class="indexterm" href="camel-CamelMimeMessage.html#CAMEL-RECIPIENT-TYPE-CC:CAPS">CAMEL_RECIPIENT_TYPE_CC</a>
</dt>
<dt>CAMEL_RECIPIENT_TYPE_RESENT_BCC, <a class="indexterm" href="camel-CamelMimeMessage.html#CAMEL-RECIPIENT-TYPE-RESENT-BCC:CAPS">CAMEL_RECIPIENT_TYPE_RESENT_BCC</a>
</dt>
<dt>CAMEL_RECIPIENT_TYPE_RESENT_CC, <a class="indexterm" href="camel-CamelMimeMessage.html#CAMEL-RECIPIENT-TYPE-RESENT-CC:CAPS">CAMEL_RECIPIENT_TYPE_RESENT_CC</a>
</dt>
<dt>CAMEL_RECIPIENT_TYPE_RESENT_TO, <a class="indexterm" href="camel-CamelMimeMessage.html#CAMEL-RECIPIENT-TYPE-RESENT-TO:CAPS">CAMEL_RECIPIENT_TYPE_RESENT_TO</a>
</dt>
<dt>CAMEL_RECIPIENT_TYPE_TO, <a class="indexterm" href="camel-CamelMimeMessage.html#CAMEL-RECIPIENT-TYPE-TO:CAPS">CAMEL_RECIPIENT_TYPE_TO</a>
</dt>
<dt>camel_sasl_anonymous_authtype, <a class="indexterm" href="camel-CamelSaslAnonymous.html#camel-sasl-anonymous-authtype">camel_sasl_anonymous_authtype</a>
</dt>
<dt>camel_sasl_anonymous_new, <a class="indexterm" href="camel-CamelSaslAnonymous.html#camel-sasl-anonymous-new">camel_sasl_anonymous_new ()</a>
</dt>
<dt>camel_sasl_authenticated, <a class="indexterm" href="camel-CamelSasl.html#camel-sasl-authenticated">camel_sasl_authenticated ()</a>
</dt>
<dt>camel_sasl_authtype, <a class="indexterm" href="camel-CamelSasl.html#camel-sasl-authtype">camel_sasl_authtype ()</a>
</dt>
<dt>camel_sasl_authtype_list, <a class="indexterm" href="camel-CamelSasl.html#camel-sasl-authtype-list">camel_sasl_authtype_list ()</a>
</dt>
<dt>camel_sasl_challenge, <a class="indexterm" href="camel-CamelSasl.html#camel-sasl-challenge">camel_sasl_challenge ()</a>
</dt>
<dt>camel_sasl_challenge_base64, <a class="indexterm" href="camel-CamelSasl.html#camel-sasl-challenge-base64">camel_sasl_challenge_base64 ()</a>
</dt>
<dt>camel_sasl_cram_md5_authtype, <a class="indexterm" href="camel-CamelSaslCramMd5.html#camel-sasl-cram-md5-authtype">camel_sasl_cram_md5_authtype</a>
</dt>
<dt>camel_sasl_digest_md5_authtype, <a class="indexterm" href="camel-CamelSaslDigestMd5.html#camel-sasl-digest-md5-authtype">camel_sasl_digest_md5_authtype</a>
</dt>
<dt>camel_sasl_gssapi_authtype, <a class="indexterm" href="camel-CamelSaslGssapi.html#camel-sasl-gssapi-authtype">camel_sasl_gssapi_authtype</a>
</dt>
<dt>camel_sasl_kerberos4_authtype, <a class="indexterm" href="camel-CamelSaslKerberos4.html#camel-sasl-kerberos4-authtype">camel_sasl_kerberos4_authtype</a>
</dt>
<dt>camel_sasl_login_authtype, <a class="indexterm" href="camel-CamelSaslLogin.html#camel-sasl-login-authtype">camel_sasl_login_authtype</a>
</dt>
<dt>camel_sasl_new, <a class="indexterm" href="camel-CamelSasl.html#camel-sasl-new">camel_sasl_new ()</a>
</dt>
<dt>camel_sasl_ntlm_authtype, <a class="indexterm" href="camel-CamelSaslNTLM.html#camel-sasl-ntlm-authtype">camel_sasl_ntlm_authtype</a>
</dt>
<dt>camel_sasl_plain_authtype, <a class="indexterm" href="camel-CamelSaslPlain.html#camel-sasl-plain-authtype">camel_sasl_plain_authtype</a>
</dt>
<dt>camel_seekable_stream_seek, <a class="indexterm" href="camel-CamelSeekableStream.html#camel-seekable-stream-seek">camel_seekable_stream_seek ()</a>
</dt>
<dt>camel_seekable_stream_set_bounds, <a class="indexterm" href="camel-CamelSeekableStream.html#camel-seekable-stream-set-bounds">camel_seekable_stream_set_bounds ()</a>
</dt>
<dt>camel_seekable_stream_tell, <a class="indexterm" href="camel-CamelSeekableStream.html#camel-seekable-stream-tell">camel_seekable_stream_tell ()</a>
</dt>
<dt>camel_seekable_substream_new, <a class="indexterm" href="camel-CamelSeekableSubstream.html#camel-seekable-substream-new">camel_seekable_substream_new ()</a>
</dt>
<dt>CAMEL_SERVICE_AUTH, <a class="indexterm" href="camel-CamelService.html#CAMEL-SERVICE-AUTH:CAPS">CAMEL_SERVICE_AUTH</a>
</dt>
<dt>camel_service_cancel_connect, <a class="indexterm" href="camel-CamelService.html#camel-service-cancel-connect">camel_service_cancel_connect ()</a>
</dt>
<dt>camel_service_connect, <a class="indexterm" href="camel-CamelService.html#camel-service-connect">camel_service_connect ()</a>
</dt>
<dt>camel_service_construct, <a class="indexterm" href="camel-CamelService.html#camel-service-construct">camel_service_construct ()</a>
</dt>
<dt>camel_service_disconnect, <a class="indexterm" href="camel-CamelService.html#camel-service-disconnect">camel_service_disconnect ()</a>
</dt>
<dt>camel_service_get_name, <a class="indexterm" href="camel-CamelService.html#camel-service-get-name">camel_service_get_name ()</a>
</dt>
<dt>camel_service_get_path, <a class="indexterm" href="camel-CamelService.html#camel-service-get-path">camel_service_get_path ()</a>
</dt>
<dt>camel_service_get_provider, <a class="indexterm" href="camel-CamelService.html#camel-service-get-provider">camel_service_get_provider ()</a>
</dt>
<dt>camel_service_get_session, <a class="indexterm" href="camel-CamelService.html#camel-service-get-session">camel_service_get_session ()</a>
</dt>
<dt>camel_service_get_url, <a class="indexterm" href="camel-CamelService.html#camel-service-get-url">camel_service_get_url ()</a>
</dt>
<dt>CAMEL_SERVICE_HOSTNAME, <a class="indexterm" href="camel-CamelService.html#CAMEL-SERVICE-HOSTNAME:CAPS">CAMEL_SERVICE_HOSTNAME</a>
</dt>
<dt>CAMEL_SERVICE_PATH, <a class="indexterm" href="camel-CamelService.html#CAMEL-SERVICE-PATH:CAPS">CAMEL_SERVICE_PATH</a>
</dt>
<dt>CAMEL_SERVICE_PORT, <a class="indexterm" href="camel-CamelService.html#CAMEL-SERVICE-PORT:CAPS">CAMEL_SERVICE_PORT</a>
</dt>
<dt>camel_service_query_auth_types, <a class="indexterm" href="camel-CamelService.html#camel-service-query-auth-types">camel_service_query_auth_types ()</a>
</dt>
<dt>CAMEL_SERVICE_USERNAME, <a class="indexterm" href="camel-CamelService.html#CAMEL-SERVICE-USERNAME:CAPS">CAMEL_SERVICE_USERNAME</a>
</dt>
<dt>camel_session_alert_user, <a class="indexterm" href="camel-CamelSession.html#camel-session-alert-user">camel_session_alert_user ()</a>
</dt>
<dt>camel_session_build_password_prompt, <a class="indexterm" href="camel-CamelSession.html#camel-session-build-password-prompt">camel_session_build_password_prompt ()</a>
</dt>
<dt>camel_session_check_junk, <a class="indexterm" href="camel-CamelSession.html#camel-session-check-junk">camel_session_check_junk ()</a>
</dt>
<dt>camel_session_construct, <a class="indexterm" href="camel-CamelSession.html#camel-session-construct">camel_session_construct ()</a>
</dt>
<dt>camel_session_forget_password, <a class="indexterm" href="camel-CamelSession.html#camel-session-forget-password">camel_session_forget_password ()</a>
</dt>
<dt>camel_session_get_filter_driver, <a class="indexterm" href="camel-CamelSession.html#camel-session-get-filter-driver">camel_session_get_filter_driver ()</a>
</dt>
<dt>camel_session_get_junk_headers, <a class="indexterm" href="camel-CamelSession.html#camel-session-get-junk-headers">camel_session_get_junk_headers ()</a>
</dt>
<dt>camel_session_get_network_state, <a class="indexterm" href="camel-CamelSession.html#camel-session-get-network-state">camel_session_get_network_state ()</a>
</dt>
<dt>camel_session_get_password, <a class="indexterm" href="camel-CamelSession.html#camel-session-get-password">camel_session_get_password ()</a>
</dt>
<dt>camel_session_get_service, <a class="indexterm" href="camel-CamelSession.html#camel-session-get-service">camel_session_get_service ()</a>
</dt>
<dt>camel_session_get_service_connected, <a class="indexterm" href="camel-CamelSession.html#camel-session-get-service-connected">camel_session_get_service_connected ()</a>
</dt>
<dt>camel_session_get_storage_path, <a class="indexterm" href="camel-CamelSession.html#camel-session-get-storage-path">camel_session_get_storage_path ()</a>
</dt>
<dt>camel_session_get_store, <a class="indexterm" href="camel-CamelSession.html#camel-session-get-store">camel_session_get_store()</a>
</dt>
<dt>camel_session_get_transport, <a class="indexterm" href="camel-CamelSession.html#camel-session-get-transport">camel_session_get_transport()</a>
</dt>
<dt>camel_session_is_online, <a class="indexterm" href="camel-CamelSession.html#camel-session-is-online">camel_session_is_online ()</a>
</dt>
<dt>camel_session_lookup_addressbook, <a class="indexterm" href="camel-CamelSession.html#camel-session-lookup-addressbook">camel_session_lookup_addressbook ()</a>
</dt>
<dt>camel_session_set_check_junk, <a class="indexterm" href="camel-CamelSession.html#camel-session-set-check-junk">camel_session_set_check_junk ()</a>
</dt>
<dt>camel_session_set_junk_headers, <a class="indexterm" href="camel-CamelSession.html#camel-session-set-junk-headers">camel_session_set_junk_headers ()</a>
</dt>
<dt>camel_session_set_network_state, <a class="indexterm" href="camel-CamelSession.html#camel-session-set-network-state">camel_session_set_network_state ()</a>
</dt>
<dt>camel_session_set_online, <a class="indexterm" href="camel-CamelSession.html#camel-session-set-online">camel_session_set_online ()</a>
</dt>
<dt>camel_session_thread_msg_free, <a class="indexterm" href="camel-CamelSession.html#camel-session-thread-msg-free">camel_session_thread_msg_free ()</a>
</dt>
<dt>camel_session_thread_msg_new, <a class="indexterm" href="camel-CamelSession.html#camel-session-thread-msg-new">camel_session_thread_msg_new ()</a>
</dt>
<dt>camel_session_thread_queue, <a class="indexterm" href="camel-CamelSession.html#camel-session-thread-queue">camel_session_thread_queue ()</a>
</dt>
<dt>camel_session_thread_wait, <a class="indexterm" href="camel-CamelSession.html#camel-session-thread-wait">camel_session_thread_wait ()</a>
</dt>
<dt>camel_store_can_refresh_folder, <a class="indexterm" href="camel-CamelStore.html#camel-store-can-refresh-folder">camel_store_can_refresh_folder ()</a>
</dt>
<dt>camel_store_create_folder, <a class="indexterm" href="camel-CamelStore.html#camel-store-create-folder">camel_store_create_folder ()</a>
</dt>
<dt>camel_store_delete_folder, <a class="indexterm" href="camel-CamelStore.html#camel-store-delete-folder">camel_store_delete_folder ()</a>
</dt>
<dt>CAMEL_STORE_FILTER_INBOX, <a class="indexterm" href="camel-CamelStore.html#CAMEL-STORE-FILTER-INBOX:CAPS">CAMEL_STORE_FILTER_INBOX</a>
</dt>
<dt>CAMEL_STORE_FOLDER_BODY_INDEX, <a class="indexterm" href="camel-CamelStore.html#CAMEL-STORE-FOLDER-BODY-INDEX:CAPS">CAMEL_STORE_FOLDER_BODY_INDEX</a>
</dt>
<dt>CAMEL_STORE_FOLDER_CREATE, <a class="indexterm" href="camel-CamelStore.html#CAMEL-STORE-FOLDER-CREATE:CAPS">CAMEL_STORE_FOLDER_CREATE</a>
</dt>
<dt>CAMEL_STORE_FOLDER_CREATE_EXCL, <a class="indexterm" href="camel-CamelStore.html#CAMEL-STORE-FOLDER-CREATE-EXCL:CAPS">CAMEL_STORE_FOLDER_CREATE_EXCL</a>
</dt>
<dt>CAMEL_STORE_FOLDER_EXCL, <a class="indexterm" href="camel-CamelStore.html#CAMEL-STORE-FOLDER-EXCL:CAPS">CAMEL_STORE_FOLDER_EXCL</a>
</dt>
<dt>CAMEL_STORE_FOLDER_INFO_FAST, <a class="indexterm" href="camel-CamelStore.html#CAMEL-STORE-FOLDER-INFO-FAST:CAPS">CAMEL_STORE_FOLDER_INFO_FAST</a>
</dt>
<dt>CAMEL_STORE_FOLDER_INFO_NO_VIRTUAL, <a class="indexterm" href="camel-CamelStore.html#CAMEL-STORE-FOLDER-INFO-NO-VIRTUAL:CAPS">CAMEL_STORE_FOLDER_INFO_NO_VIRTUAL</a>
</dt>
<dt>CAMEL_STORE_FOLDER_INFO_RECURSIVE, <a class="indexterm" href="camel-CamelStore.html#CAMEL-STORE-FOLDER-INFO-RECURSIVE:CAPS">CAMEL_STORE_FOLDER_INFO_RECURSIVE</a>
</dt>
<dt>CAMEL_STORE_FOLDER_INFO_SUBSCRIBED, <a class="indexterm" href="camel-CamelStore.html#CAMEL-STORE-FOLDER-INFO-SUBSCRIBED:CAPS">CAMEL_STORE_FOLDER_INFO_SUBSCRIBED</a>
</dt>
<dt>CAMEL_STORE_FOLDER_PRIVATE, <a class="indexterm" href="camel-CamelStore.html#CAMEL-STORE-FOLDER-PRIVATE:CAPS">CAMEL_STORE_FOLDER_PRIVATE</a>
</dt>
<dt>camel_store_folder_subscribed, <a class="indexterm" href="camel-CamelStore.html#camel-store-folder-subscribed">camel_store_folder_subscribed ()</a>
</dt>
<dt>camel_store_folder_uri_equal, <a class="indexterm" href="camel-CamelStore.html#camel-store-folder-uri-equal">camel_store_folder_uri_equal ()</a>
</dt>
<dt>camel_store_free_folder_info, <a class="indexterm" href="camel-CamelStore.html#camel-store-free-folder-info">camel_store_free_folder_info ()</a>
</dt>
<dt>camel_store_free_folder_info_full, <a class="indexterm" href="camel-CamelStore.html#camel-store-free-folder-info-full">camel_store_free_folder_info_full ()</a>
</dt>
<dt>camel_store_free_folder_info_nop, <a class="indexterm" href="camel-CamelStore.html#camel-store-free-folder-info-nop">camel_store_free_folder_info_nop ()</a>
</dt>
<dt>camel_store_get_folder, <a class="indexterm" href="camel-CamelStore.html#camel-store-get-folder">camel_store_get_folder ()</a>
</dt>
<dt>camel_store_get_folder_info, <a class="indexterm" href="camel-CamelStore.html#camel-store-get-folder-info">camel_store_get_folder_info ()</a>
</dt>
<dt>camel_store_get_inbox, <a class="indexterm" href="camel-CamelStore.html#camel-store-get-inbox">camel_store_get_inbox ()</a>
</dt>
<dt>camel_store_get_junk, <a class="indexterm" href="camel-CamelStore.html#camel-store-get-junk">camel_store_get_junk ()</a>
</dt>
<dt>camel_store_get_trash, <a class="indexterm" href="camel-CamelStore.html#camel-store-get-trash">camel_store_get_trash ()</a>
</dt>
<dt>CAMEL_STORE_INFO_FOLDER_UNKNOWN, <a class="indexterm" href="camel-CamelStoreSummary.html#CAMEL-STORE-INFO-FOLDER-UNKNOWN:CAPS">CAMEL_STORE_INFO_FOLDER_UNKNOWN</a>
</dt>
<dt>camel_store_info_name, <a class="indexterm" href="camel-CamelStoreSummary.html#camel-store-info-name">camel_store_info_name()</a>
</dt>
<dt>camel_store_info_path, <a class="indexterm" href="camel-CamelStoreSummary.html#camel-store-info-path">camel_store_info_path()</a>
</dt>
<dt>camel_store_info_set_string, <a class="indexterm" href="camel-CamelStoreSummary.html#camel-store-info-set-string">camel_store_info_set_string ()</a>
</dt>
<dt>camel_store_info_string, <a class="indexterm" href="camel-CamelStoreSummary.html#camel-store-info-string">camel_store_info_string ()</a>
</dt>
<dt>camel_store_info_uri, <a class="indexterm" href="camel-CamelStoreSummary.html#camel-store-info-uri">camel_store_info_uri()</a>
</dt>
<dt>camel_store_noop, <a class="indexterm" href="camel-CamelStore.html#camel-store-noop">camel_store_noop ()</a>
</dt>
<dt>CAMEL_STORE_PROXY, <a class="indexterm" href="camel-CamelStore.html#CAMEL-STORE-PROXY:CAPS">CAMEL_STORE_PROXY</a>
</dt>
<dt>CAMEL_STORE_READ, <a class="indexterm" href="camel-CamelStore.html#CAMEL-STORE-READ:CAPS">CAMEL_STORE_READ</a>
</dt>
<dt>camel_store_rename_folder, <a class="indexterm" href="camel-CamelStore.html#camel-store-rename-folder">camel_store_rename_folder ()</a>
</dt>
<dt>camel_store_subscribe_folder, <a class="indexterm" href="camel-CamelStore.html#camel-store-subscribe-folder">camel_store_subscribe_folder ()</a>
</dt>
<dt>CAMEL_STORE_SUBSCRIPTIONS, <a class="indexterm" href="camel-CamelStore.html#CAMEL-STORE-SUBSCRIPTIONS:CAPS">CAMEL_STORE_SUBSCRIPTIONS</a>
</dt>
<dt>camel_store_summary_add, <a class="indexterm" href="camel-CamelStoreSummary.html#camel-store-summary-add">camel_store_summary_add ()</a>
</dt>
<dt>camel_store_summary_add_from_path, <a class="indexterm" href="camel-CamelStoreSummary.html#camel-store-summary-add-from-path">camel_store_summary_add_from_path ()</a>
</dt>
<dt>camel_store_summary_array, <a class="indexterm" href="camel-CamelStoreSummary.html#camel-store-summary-array">camel_store_summary_array ()</a>
</dt>
<dt>camel_store_summary_array_free, <a class="indexterm" href="camel-CamelStoreSummary.html#camel-store-summary-array-free">camel_store_summary_array_free ()</a>
</dt>
<dt>camel_store_summary_clear, <a class="indexterm" href="camel-CamelStoreSummary.html#camel-store-summary-clear">camel_store_summary_clear ()</a>
</dt>
<dt>camel_store_summary_count, <a class="indexterm" href="camel-CamelStoreSummary.html#camel-store-summary-count">camel_store_summary_count ()</a>
</dt>
<dt>camel_store_summary_header_load, <a class="indexterm" href="camel-CamelStoreSummary.html#camel-store-summary-header-load">camel_store_summary_header_load ()</a>
</dt>
<dt>camel_store_summary_index, <a class="indexterm" href="camel-CamelStoreSummary.html#camel-store-summary-index">camel_store_summary_index ()</a>
</dt>
<dt>camel_store_summary_info_free, <a class="indexterm" href="camel-CamelStoreSummary.html#camel-store-summary-info-free">camel_store_summary_info_free ()</a>
</dt>
<dt>camel_store_summary_info_new, <a class="indexterm" href="camel-CamelStoreSummary.html#camel-store-summary-info-new">camel_store_summary_info_new ()</a>
</dt>
<dt>camel_store_summary_info_new_from_path, <a class="indexterm" href="camel-CamelStoreSummary.html#camel-store-summary-info-new-from-path">camel_store_summary_info_new_from_path ()</a>
</dt>
<dt>camel_store_summary_info_ref, <a class="indexterm" href="camel-CamelStoreSummary.html#camel-store-summary-info-ref">camel_store_summary_info_ref ()</a>
</dt>
<dt>camel_store_summary_load, <a class="indexterm" href="camel-CamelStoreSummary.html#camel-store-summary-load">camel_store_summary_load ()</a>
</dt>
<dt>camel_store_summary_new, <a class="indexterm" href="camel-CamelStoreSummary.html#camel-store-summary-new">camel_store_summary_new ()</a>
</dt>
<dt>camel_store_summary_path, <a class="indexterm" href="camel-CamelStoreSummary.html#camel-store-summary-path">camel_store_summary_path ()</a>
</dt>
<dt>camel_store_summary_remove, <a class="indexterm" href="camel-CamelStoreSummary.html#camel-store-summary-remove">camel_store_summary_remove ()</a>
</dt>
<dt>camel_store_summary_remove_index, <a class="indexterm" href="camel-CamelStoreSummary.html#camel-store-summary-remove-index">camel_store_summary_remove_index ()</a>
</dt>
<dt>camel_store_summary_remove_path, <a class="indexterm" href="camel-CamelStoreSummary.html#camel-store-summary-remove-path">camel_store_summary_remove_path ()</a>
</dt>
<dt>camel_store_summary_save, <a class="indexterm" href="camel-CamelStoreSummary.html#camel-store-summary-save">camel_store_summary_save ()</a>
</dt>
<dt>camel_store_summary_set_filename, <a class="indexterm" href="camel-CamelStoreSummary.html#camel-store-summary-set-filename">camel_store_summary_set_filename ()</a>
</dt>
<dt>camel_store_summary_set_uri_base, <a class="indexterm" href="camel-CamelStoreSummary.html#camel-store-summary-set-uri-base">camel_store_summary_set_uri_base ()</a>
</dt>
<dt>camel_store_summary_touch, <a class="indexterm" href="camel-CamelStoreSummary.html#camel-store-summary-touch">camel_store_summary_touch ()</a>
</dt>
<dt>camel_store_supports_subscriptions, <a class="indexterm" href="camel-CamelStore.html#camel-store-supports-subscriptions">camel_store_supports_subscriptions ()</a>
</dt>
<dt>camel_store_sync, <a class="indexterm" href="camel-CamelStore.html#camel-store-sync">camel_store_sync ()</a>
</dt>
<dt>camel_store_unsubscribe_folder, <a class="indexterm" href="camel-CamelStore.html#camel-store-unsubscribe-folder">camel_store_unsubscribe_folder ()</a>
</dt>
<dt>CAMEL_STORE_VJUNK, <a class="indexterm" href="camel-CamelStore.html#CAMEL-STORE-VJUNK:CAPS">CAMEL_STORE_VJUNK</a>
</dt>
<dt>CAMEL_STORE_VTRASH, <a class="indexterm" href="camel-CamelStore.html#CAMEL-STORE-VTRASH:CAPS">CAMEL_STORE_VTRASH</a>
</dt>
<dt>CAMEL_STORE_WRITE, <a class="indexterm" href="camel-CamelStore.html#CAMEL-STORE-WRITE:CAPS">CAMEL_STORE_WRITE</a>
</dt>
<dt>camel_stream_buffer_gets, <a class="indexterm" href="camel-CamelStreamBuffer.html#camel-stream-buffer-gets">camel_stream_buffer_gets ()</a>
</dt>
<dt>camel_stream_buffer_new, <a class="indexterm" href="camel-CamelStreamBuffer.html#camel-stream-buffer-new">camel_stream_buffer_new ()</a>
</dt>
<dt>camel_stream_buffer_new_with_vbuf, <a class="indexterm" href="camel-CamelStreamBuffer.html#camel-stream-buffer-new-with-vbuf">camel_stream_buffer_new_with_vbuf ()</a>
</dt>
<dt>camel_stream_buffer_read_line, <a class="indexterm" href="camel-CamelStreamBuffer.html#camel-stream-buffer-read-line">camel_stream_buffer_read_line ()</a>
</dt>
<dt>camel_stream_close, <a class="indexterm" href="camel-CamelStream.html#camel-stream-close">camel_stream_close ()</a>
</dt>
<dt>camel_stream_eos, <a class="indexterm" href="camel-CamelStream.html#camel-stream-eos">camel_stream_eos ()</a>
</dt>
<dt>camel_stream_filter_add, <a class="indexterm" href="camel-CamelStreamFilter.html#camel-stream-filter-add">camel_stream_filter_add ()</a>
</dt>
<dt>camel_stream_filter_new_with_stream, <a class="indexterm" href="camel-CamelStreamFilter.html#camel-stream-filter-new-with-stream">camel_stream_filter_new_with_stream ()</a>
</dt>
<dt>camel_stream_filter_remove, <a class="indexterm" href="camel-CamelStreamFilter.html#camel-stream-filter-remove">camel_stream_filter_remove ()</a>
</dt>
<dt>camel_stream_flush, <a class="indexterm" href="camel-CamelStream.html#camel-stream-flush">camel_stream_flush ()</a>
</dt>
<dt>camel_stream_fs_new_with_fd, <a class="indexterm" href="camel-CamelStreamFs.html#camel-stream-fs-new-with-fd">camel_stream_fs_new_with_fd ()</a>
</dt>
<dt>camel_stream_fs_new_with_fd_and_bounds, <a class="indexterm" href="camel-CamelStreamFs.html#camel-stream-fs-new-with-fd-and-bounds">camel_stream_fs_new_with_fd_and_bounds ()</a>
</dt>
<dt>camel_stream_fs_new_with_name, <a class="indexterm" href="camel-CamelStreamFs.html#camel-stream-fs-new-with-name">camel_stream_fs_new_with_name ()</a>
</dt>
<dt>camel_stream_fs_new_with_name_and_bounds, <a class="indexterm" href="camel-CamelStreamFs.html#camel-stream-fs-new-with-name-and-bounds">camel_stream_fs_new_with_name_and_bounds ()</a>
</dt>
<dt>camel_stream_mem_new, <a class="indexterm" href="camel-CamelStreamMem.html#camel-stream-mem-new">camel_stream_mem_new ()</a>
</dt>
<dt>camel_stream_mem_new_with_buffer, <a class="indexterm" href="camel-CamelStreamMem.html#camel-stream-mem-new-with-buffer">camel_stream_mem_new_with_buffer ()</a>
</dt>
<dt>camel_stream_mem_new_with_byte_array, <a class="indexterm" href="camel-CamelStreamMem.html#camel-stream-mem-new-with-byte-array">camel_stream_mem_new_with_byte_array ()</a>
</dt>
<dt>camel_stream_mem_set_buffer, <a class="indexterm" href="camel-CamelStreamMem.html#camel-stream-mem-set-buffer">camel_stream_mem_set_buffer ()</a>
</dt>
<dt>camel_stream_mem_set_byte_array, <a class="indexterm" href="camel-CamelStreamMem.html#camel-stream-mem-set-byte-array">camel_stream_mem_set_byte_array ()</a>
</dt>
<dt>camel_stream_mem_set_secure, <a class="indexterm" href="camel-CamelStreamMem.html#camel-stream-mem-set-secure">camel_stream_mem_set_secure ()</a>
</dt>
<dt>camel_stream_null_new, <a class="indexterm" href="camel-CamelStreamNull.html#camel-stream-null-new">camel_stream_null_new ()</a>
</dt>
<dt>camel_stream_printf, <a class="indexterm" href="camel-CamelStream.html#camel-stream-printf">camel_stream_printf ()</a>
</dt>
<dt>camel_stream_read, <a class="indexterm" href="camel-CamelStream.html#camel-stream-read">camel_stream_read ()</a>
</dt>
<dt>camel_stream_reset, <a class="indexterm" href="camel-CamelStream.html#camel-stream-reset">camel_stream_reset ()</a>
</dt>
<dt>CAMEL_STREAM_UNBOUND, <a class="indexterm" href="camel-CamelSeekableStream.html#CAMEL-STREAM-UNBOUND:CAPS">CAMEL_STREAM_UNBOUND</a>
</dt>
<dt>camel_stream_vfs_new_with_handle, <a class="indexterm" href="camel-CamelStreamVFS.html#camel-stream-vfs-new-with-handle">camel_stream_vfs_new_with_handle ()</a>
</dt>
<dt>camel_stream_vfs_new_with_uri, <a class="indexterm" href="camel-CamelStreamVFS.html#camel-stream-vfs-new-with-uri">camel_stream_vfs_new_with_uri ()</a>
</dt>
<dt>camel_stream_vprintf, <a class="indexterm" href="camel-CamelStream.html#camel-stream-vprintf">camel_stream_vprintf ()</a>
</dt>
<dt>camel_stream_write, <a class="indexterm" href="camel-CamelStream.html#camel-stream-write">camel_stream_write ()</a>
</dt>
<dt>camel_stream_write_string, <a class="indexterm" href="camel-CamelStream.html#camel-stream-write-string">camel_stream_write_string ()</a>
</dt>
<dt>camel_stream_write_to_stream, <a class="indexterm" href="camel-CamelStream.html#camel-stream-write-to-stream">camel_stream_write_to_stream ()</a>
</dt>
<dt>camel_system_flag, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-system-flag">camel_system_flag ()</a>
</dt>
<dt>camel_system_flag_get, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-system-flag-get">camel_system_flag_get ()</a>
</dt>
<dt>camel_tag_get, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-tag-get">camel_tag_get ()</a>
</dt>
<dt>camel_tag_list_copy, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-tag-list-copy">camel_tag_list_copy ()</a>
</dt>
<dt>camel_tag_list_free, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-tag-list-free">camel_tag_list_free ()</a>
</dt>
<dt>camel_tag_list_size, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-tag-list-size">camel_tag_list_size ()</a>
</dt>
<dt>camel_tag_set, <a class="indexterm" href="camel-CamelFolderSummary.html#camel-tag-set">camel_tag_set ()</a>
</dt>
<dt>camel_tcp_stream_connect, <a class="indexterm" href="camel-CamelTcpStream.html#camel-tcp-stream-connect">camel_tcp_stream_connect ()</a>
</dt>
<dt>camel_tcp_stream_getsockopt, <a class="indexterm" href="camel-CamelTcpStream.html#camel-tcp-stream-getsockopt">camel_tcp_stream_getsockopt ()</a>
</dt>
<dt>camel_tcp_stream_get_local_address, <a class="indexterm" href="camel-CamelTcpStream.html#camel-tcp-stream-get-local-address">camel_tcp_stream_get_local_address ()</a>
</dt>
<dt>camel_tcp_stream_get_remote_address, <a class="indexterm" href="camel-CamelTcpStream.html#camel-tcp-stream-get-remote-address">camel_tcp_stream_get_remote_address ()</a>
</dt>
<dt>camel_tcp_stream_raw_new, <a class="indexterm" href="camel-CamelTcpStreamRaw.html#camel-tcp-stream-raw-new">camel_tcp_stream_raw_new ()</a>
</dt>
<dt>camel_tcp_stream_setsockopt, <a class="indexterm" href="camel-CamelTcpStream.html#camel-tcp-stream-setsockopt">camel_tcp_stream_setsockopt ()</a>
</dt>
<dt>camel_tcp_stream_ssl_enable_ssl, <a class="indexterm" href="camel-CamelTcpStreamSSL.html#camel-tcp-stream-ssl-enable-ssl">camel_tcp_stream_ssl_enable_ssl ()</a>
</dt>
<dt>CAMEL_TCP_STREAM_SSL_ENABLE_SSL2, <a class="indexterm" href="camel-CamelTcpStreamSSL.html#CAMEL-TCP-STREAM-SSL-ENABLE-SSL2:CAPS">CAMEL_TCP_STREAM_SSL_ENABLE_SSL2</a>
</dt>
<dt>CAMEL_TCP_STREAM_SSL_ENABLE_SSL3, <a class="indexterm" href="camel-CamelTcpStreamSSL.html#CAMEL-TCP-STREAM-SSL-ENABLE-SSL3:CAPS">CAMEL_TCP_STREAM_SSL_ENABLE_SSL3</a>
</dt>
<dt>CAMEL_TCP_STREAM_SSL_ENABLE_TLS, <a class="indexterm" href="camel-CamelTcpStreamSSL.html#CAMEL-TCP-STREAM-SSL-ENABLE-TLS:CAPS">CAMEL_TCP_STREAM_SSL_ENABLE_TLS</a>
</dt>
<dt>camel_tcp_stream_ssl_new, <a class="indexterm" href="camel-CamelTcpStreamSSL.html#camel-tcp-stream-ssl-new">camel_tcp_stream_ssl_new ()</a>
</dt>
<dt>camel_tcp_stream_ssl_new_raw, <a class="indexterm" href="camel-CamelTcpStreamSSL.html#camel-tcp-stream-ssl-new-raw">camel_tcp_stream_ssl_new_raw ()</a>
</dt>
<dt>camel_text_to_html, <a class="indexterm" href="camel-CamelMimeFilterToHTML.html#camel-text-to-html">camel_text_to_html ()</a>
</dt>
<dt>camel_transport_send_to, <a class="indexterm" href="camel-CamelTransport.html#camel-transport-send-to">camel_transport_send_to ()</a>
</dt>
<dt>camel_type_get_global_classfuncs, <a class="indexterm" href="camel-CamelObject.html#camel-type-get-global-classfuncs">camel_type_get_global_classfuncs()</a>
</dt>
<dt>camel_type_init, <a class="indexterm" href="camel-CamelObject.html#camel-type-init">camel_type_init ()</a>
</dt>
<dt>camel_type_register, <a class="indexterm" href="camel-CamelObject.html#camel-type-register">camel_type_register ()</a>
</dt>
<dt>camel_type_to_name, <a class="indexterm" href="camel-CamelObject.html#camel-type-to-name">camel_type_to_name ()</a>
</dt>
<dt>CAMEL_UNMATCHED_NAME, <a class="indexterm" href="camel-CamelVeeFolder.html#CAMEL-UNMATCHED-NAME:CAPS">CAMEL_UNMATCHED_NAME</a>
</dt>
<dt>CAMEL_URL_ALLOW_AUTH, <a class="indexterm" href="camel-camel-provider.html#CAMEL-URL-ALLOW-AUTH:CAPS">CAMEL_URL_ALLOW_AUTH</a>
</dt>
<dt>CAMEL_URL_ALLOW_HOST, <a class="indexterm" href="camel-camel-provider.html#CAMEL-URL-ALLOW-HOST:CAPS">CAMEL_URL_ALLOW_HOST</a>
</dt>
<dt>CAMEL_URL_ALLOW_PASSWORD, <a class="indexterm" href="camel-camel-provider.html#CAMEL-URL-ALLOW-PASSWORD:CAPS">CAMEL_URL_ALLOW_PASSWORD</a>
</dt>
<dt>CAMEL_URL_ALLOW_PATH, <a class="indexterm" href="camel-camel-provider.html#CAMEL-URL-ALLOW-PATH:CAPS">CAMEL_URL_ALLOW_PATH</a>
</dt>
<dt>CAMEL_URL_ALLOW_PORT, <a class="indexterm" href="camel-camel-provider.html#CAMEL-URL-ALLOW-PORT:CAPS">CAMEL_URL_ALLOW_PORT</a>
</dt>
<dt>CAMEL_URL_ALLOW_USER, <a class="indexterm" href="camel-camel-provider.html#CAMEL-URL-ALLOW-USER:CAPS">CAMEL_URL_ALLOW_USER</a>
</dt>
<dt>camel_url_copy, <a class="indexterm" href="camel-camel-url.html#camel-url-copy">camel_url_copy ()</a>
</dt>
<dt>camel_url_decode, <a class="indexterm" href="camel-camel-url.html#camel-url-decode">camel_url_decode ()</a>
</dt>
<dt>camel_url_decode_path, <a class="indexterm" href="camel-camel-url.html#camel-url-decode-path">camel_url_decode_path ()</a>
</dt>
<dt>camel_url_encode, <a class="indexterm" href="camel-camel-url.html#camel-url-encode">camel_url_encode ()</a>
</dt>
<dt>camel_url_equal, <a class="indexterm" href="camel-camel-url.html#camel-url-equal">camel_url_equal ()</a>
</dt>
<dt>CAMEL_URL_FRAGMENT_IS_PATH, <a class="indexterm" href="camel-camel-provider.html#CAMEL-URL-FRAGMENT-IS-PATH:CAPS">CAMEL_URL_FRAGMENT_IS_PATH</a>
</dt>
<dt>camel_url_free, <a class="indexterm" href="camel-camel-url.html#camel-url-free">camel_url_free ()</a>
</dt>
<dt>camel_url_get_param, <a class="indexterm" href="camel-camel-url.html#camel-url-get-param">camel_url_get_param ()</a>
</dt>
<dt>camel_url_hash, <a class="indexterm" href="camel-camel-url.html#camel-url-hash">camel_url_hash ()</a>
</dt>
<dt>CAMEL_URL_HIDDEN_AUTH, <a class="indexterm" href="camel-camel-provider.html#CAMEL-URL-HIDDEN-AUTH:CAPS">CAMEL_URL_HIDDEN_AUTH</a>
</dt>
<dt>CAMEL_URL_HIDDEN_HOST, <a class="indexterm" href="camel-camel-provider.html#CAMEL-URL-HIDDEN-HOST:CAPS">CAMEL_URL_HIDDEN_HOST</a>
</dt>
<dt>CAMEL_URL_HIDDEN_PASSWORD, <a class="indexterm" href="camel-camel-provider.html#CAMEL-URL-HIDDEN-PASSWORD:CAPS">CAMEL_URL_HIDDEN_PASSWORD</a>
</dt>
<dt>CAMEL_URL_HIDDEN_PATH, <a class="indexterm" href="camel-camel-provider.html#CAMEL-URL-HIDDEN-PATH:CAPS">CAMEL_URL_HIDDEN_PATH</a>
</dt>
<dt>CAMEL_URL_HIDDEN_PORT, <a class="indexterm" href="camel-camel-provider.html#CAMEL-URL-HIDDEN-PORT:CAPS">CAMEL_URL_HIDDEN_PORT</a>
</dt>
<dt>CAMEL_URL_HIDDEN_USER, <a class="indexterm" href="camel-camel-provider.html#CAMEL-URL-HIDDEN-USER:CAPS">CAMEL_URL_HIDDEN_USER</a>
</dt>
<dt>CAMEL_URL_HIDE_ALL, <a class="indexterm" href="camel-camel-url.html#CAMEL-URL-HIDE-ALL:CAPS">CAMEL_URL_HIDE_ALL</a>
</dt>
<dt>CAMEL_URL_HIDE_AUTH, <a class="indexterm" href="camel-camel-url.html#CAMEL-URL-HIDE-AUTH:CAPS">CAMEL_URL_HIDE_AUTH</a>
</dt>
<dt>CAMEL_URL_HIDE_PARAMS, <a class="indexterm" href="camel-camel-url.html#CAMEL-URL-HIDE-PARAMS:CAPS">CAMEL_URL_HIDE_PARAMS</a>
</dt>
<dt>CAMEL_URL_HIDE_PASSWORD, <a class="indexterm" href="camel-camel-url.html#CAMEL-URL-HIDE-PASSWORD:CAPS">CAMEL_URL_HIDE_PASSWORD</a>
</dt>
<dt>CAMEL_URL_NEED_AUTH, <a class="indexterm" href="camel-camel-provider.html#CAMEL-URL-NEED-AUTH:CAPS">CAMEL_URL_NEED_AUTH</a>
</dt>
<dt>CAMEL_URL_NEED_HOST, <a class="indexterm" href="camel-camel-provider.html#CAMEL-URL-NEED-HOST:CAPS">CAMEL_URL_NEED_HOST</a>
</dt>
<dt>CAMEL_URL_NEED_PASSWORD, <a class="indexterm" href="camel-camel-provider.html#CAMEL-URL-NEED-PASSWORD:CAPS">CAMEL_URL_NEED_PASSWORD</a>
</dt>
<dt>CAMEL_URL_NEED_PATH, <a class="indexterm" href="camel-camel-provider.html#CAMEL-URL-NEED-PATH:CAPS">CAMEL_URL_NEED_PATH</a>
</dt>
<dt>CAMEL_URL_NEED_PATH_DIR, <a class="indexterm" href="camel-camel-provider.html#CAMEL-URL-NEED-PATH-DIR:CAPS">CAMEL_URL_NEED_PATH_DIR</a>
</dt>
<dt>CAMEL_URL_NEED_PORT, <a class="indexterm" href="camel-camel-provider.html#CAMEL-URL-NEED-PORT:CAPS">CAMEL_URL_NEED_PORT</a>
</dt>
<dt>CAMEL_URL_NEED_USER, <a class="indexterm" href="camel-camel-provider.html#CAMEL-URL-NEED-USER:CAPS">CAMEL_URL_NEED_USER</a>
</dt>
<dt>camel_url_new, <a class="indexterm" href="camel-camel-url.html#camel-url-new">camel_url_new ()</a>
</dt>
<dt>camel_url_new_with_base, <a class="indexterm" href="camel-camel-url.html#camel-url-new-with-base">camel_url_new_with_base ()</a>
</dt>
<dt>CAMEL_URL_PART_AUTH, <a class="indexterm" href="camel-camel-provider.html#CAMEL-URL-PART-AUTH:CAPS">CAMEL_URL_PART_AUTH</a>
</dt>
<dt>CAMEL_URL_PART_HIDDEN, <a class="indexterm" href="camel-camel-provider.html#CAMEL-URL-PART-HIDDEN:CAPS">CAMEL_URL_PART_HIDDEN</a>
</dt>
<dt>CAMEL_URL_PART_HOST, <a class="indexterm" href="camel-camel-provider.html#CAMEL-URL-PART-HOST:CAPS">CAMEL_URL_PART_HOST</a>
</dt>
<dt>CAMEL_URL_PART_NEED, <a class="indexterm" href="camel-camel-provider.html#CAMEL-URL-PART-NEED:CAPS">CAMEL_URL_PART_NEED</a>
</dt>
<dt>CAMEL_URL_PART_PASSWORD, <a class="indexterm" href="camel-camel-provider.html#CAMEL-URL-PART-PASSWORD:CAPS">CAMEL_URL_PART_PASSWORD</a>
</dt>
<dt>CAMEL_URL_PART_PATH, <a class="indexterm" href="camel-camel-provider.html#CAMEL-URL-PART-PATH:CAPS">CAMEL_URL_PART_PATH</a>
</dt>
<dt>CAMEL_URL_PART_PATH_DIR, <a class="indexterm" href="camel-camel-provider.html#CAMEL-URL-PART-PATH-DIR:CAPS">CAMEL_URL_PART_PATH_DIR</a>
</dt>
<dt>CAMEL_URL_PART_PORT, <a class="indexterm" href="camel-camel-provider.html#CAMEL-URL-PART-PORT:CAPS">CAMEL_URL_PART_PORT</a>
</dt>
<dt>CAMEL_URL_PART_USER, <a class="indexterm" href="camel-camel-provider.html#CAMEL-URL-PART-USER:CAPS">CAMEL_URL_PART_USER</a>
</dt>
<dt>CAMEL_URL_PATH_IS_ABSOLUTE, <a class="indexterm" href="camel-camel-provider.html#CAMEL-URL-PATH-IS-ABSOLUTE:CAPS">CAMEL_URL_PATH_IS_ABSOLUTE</a>
</dt>
<dt>camel_url_set_authmech, <a class="indexterm" href="camel-camel-url.html#camel-url-set-authmech">camel_url_set_authmech ()</a>
</dt>
<dt>camel_url_set_fragment, <a class="indexterm" href="camel-camel-url.html#camel-url-set-fragment">camel_url_set_fragment ()</a>
</dt>
<dt>camel_url_set_host, <a class="indexterm" href="camel-camel-url.html#camel-url-set-host">camel_url_set_host ()</a>
</dt>
<dt>camel_url_set_param, <a class="indexterm" href="camel-camel-url.html#camel-url-set-param">camel_url_set_param ()</a>
</dt>
<dt>camel_url_set_passwd, <a class="indexterm" href="camel-camel-url.html#camel-url-set-passwd">camel_url_set_passwd ()</a>
</dt>
<dt>camel_url_set_path, <a class="indexterm" href="camel-camel-url.html#camel-url-set-path">camel_url_set_path ()</a>
</dt>
<dt>camel_url_set_port, <a class="indexterm" href="camel-camel-url.html#camel-url-set-port">camel_url_set_port ()</a>
</dt>
<dt>camel_url_set_protocol, <a class="indexterm" href="camel-camel-url.html#camel-url-set-protocol">camel_url_set_protocol ()</a>
</dt>
<dt>camel_url_set_query, <a class="indexterm" href="camel-camel-url.html#camel-url-set-query">camel_url_set_query ()</a>
</dt>
<dt>camel_url_set_user, <a class="indexterm" href="camel-camel-url.html#camel-url-set-user">camel_url_set_user ()</a>
</dt>
<dt>camel_url_to_string, <a class="indexterm" href="camel-camel-url.html#camel-url-to-string">camel_url_to_string ()</a>
</dt>
<dt>camel_vee_folder_add_folder, <a class="indexterm" href="camel-CamelVeeFolder.html#camel-vee-folder-add-folder">camel_vee_folder_add_folder ()</a>
</dt>
<dt>camel_vee_folder_construct, <a class="indexterm" href="camel-CamelVeeFolder.html#camel-vee-folder-construct">camel_vee_folder_construct ()</a>
</dt>
<dt>camel_vee_folder_get_location, <a class="indexterm" href="camel-CamelVeeFolder.html#camel-vee-folder-get-location">camel_vee_folder_get_location ()</a>
</dt>
<dt>camel_vee_folder_hash_folder, <a class="indexterm" href="camel-CamelVeeFolder.html#camel-vee-folder-hash-folder">camel_vee_folder_hash_folder ()</a>
</dt>
<dt>camel_vee_folder_new, <a class="indexterm" href="camel-CamelVeeFolder.html#camel-vee-folder-new">camel_vee_folder_new ()</a>
</dt>
<dt>camel_vee_folder_rebuild_folder, <a class="indexterm" href="camel-CamelVeeFolder.html#camel-vee-folder-rebuild-folder">camel_vee_folder_rebuild_folder ()</a>
</dt>
<dt>camel_vee_folder_remove_folder, <a class="indexterm" href="camel-CamelVeeFolder.html#camel-vee-folder-remove-folder">camel_vee_folder_remove_folder ()</a>
</dt>
<dt>camel_vee_folder_set_expression, <a class="indexterm" href="camel-CamelVeeFolder.html#camel-vee-folder-set-expression">camel_vee_folder_set_expression ()</a>
</dt>
<dt>camel_vee_folder_set_folders, <a class="indexterm" href="camel-CamelVeeFolder.html#camel-vee-folder-set-folders">camel_vee_folder_set_folders ()</a>
</dt>
<dt>CAMEL_VJUNK_NAME, <a class="indexterm" href="camel-CamelVTrashFolder.html#CAMEL-VJUNK-NAME:CAPS">CAMEL_VJUNK_NAME</a>
</dt>
<dt>camel_vtrash_folder_new, <a class="indexterm" href="camel-CamelVTrashFolder.html#camel-vtrash-folder-new">camel_vtrash_folder_new ()</a>
</dt>
<dt>camel_vtrash_folder_t, <a class="indexterm" href="camel-CamelVTrashFolder.html#camel-vtrash-folder-t">enum camel_vtrash_folder_t</a>
</dt>
<dt>CAMEL_VTRASH_NAME, <a class="indexterm" href="camel-CamelVTrashFolder.html#CAMEL-VTRASH-NAME:CAPS">CAMEL_VTRASH_NAME</a>
</dt>
<dt>camel_ydecode_step, <a class="indexterm" href="camel-CamelMimeFilterYenc.html#camel-ydecode-step">camel_ydecode_step ()</a>
</dt>
<dt>camel_yencode_close, <a class="indexterm" href="camel-CamelMimeFilterYenc.html#camel-yencode-close">camel_yencode_close ()</a>
</dt>
<dt>camel_yencode_step, <a class="indexterm" href="camel-CamelMimeFilterYenc.html#camel-yencode-step">camel_yencode_step ()</a>
</dt>
</dl>
</div>
<div class="indexdiv">
<h3>E</h3>
<dl><dt>ExceptionId, <a class="indexterm" href="camel-camel-exception.html#ExceptionId">enum ExceptionId</a>
</dt></dl>
</div>
</div>
</div>
<div class="footer">
<hr>
          Generated by GTK-Doc V1.11</div>
</body>
</html>