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
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/* tests mime message file parsing */
#include "gmime-utils.h"
#include "stdio.h"
#include "camel-log.h"
#include "camel-mime-message.h"
#include "camel-mime-part.h"
void print_header_pair (gpointer key, gpointer value, gpointer user_data)
{
GString *header_name = (GString *)key;
GString *header_value = (GString *)value;
CamelMimeMessage *message = (CamelMimeMessage *) user_data;
printf("\n--------- New Header ----------\n");
if ((header_name) && (header_name->str))
printf("header name :%s\n", header_name->str);
if ((header_value) && (header_value->str))
printf("header value :%s\n", header_value->str);
camel_mime_part_add_header ( CAMEL_MIME_PART (message), header_name, header_value);
printf("--------- End -----------------\n");
}
void
main (int argc, char**argv)
{
FILE *input_file;
FILE *output_file;
GHashTable *header_table;
CamelMimeMessage *message;
GnomeStream *stream;
gtk_init (&argc, &argv);
camel_debug_level = FULL_DEBUG;
message = camel_mime_message_new_with_session( (CamelSession *)NULL);
input_file = fopen ("mail.test", "r");
stream = gnome_stream_fs_open (NULL, "/tmp/a.png", GNOME_Storage_READ);
if (!input_file) {
perror("could not open input file");
exit(2);
}
header_table = get_header_table_from_file (input_file);
if (header_table) g_hash_table_foreach (header_table, print_header_pair, (gpointer)message);
else printf("header is empty, no header line present\n");
fclose (input_file);
output_file = fopen ("mail2.test", "w");
if (!output_file) {
perror("could not open output file");
exit(2);
}
camel_data_wrapper_write_to_file (CAMEL_DATA_WRAPPER (message), output_file);
fclose (output_file);
}
|