aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test1.c
blob: c21cfd371b6df65df11e0d161d126288c5cdb363 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */

#include <stdio.h>

#include "camel-mime-message.h"
#include "camel-multipart.h"
#include "camel-stream.h"
#include "camel-stream-fs.h"
#include "camel-data-wrapper.h"
#include "camel.h"

int
main (int argc, char**argv)
{
    CamelMimeMessage *message;
    CamelMultipart *multipart;
    CamelMimePart *body_part;
    CamelMimePart *attachment_part;
    CamelStream *attachment_stream;
    CamelStream *stream;
    CamelException *ex = camel_exception_new ();

    gtk_init (&argc, &argv);
    camel_init ();

    if (argc < 2) {
        attachment_stream = NULL;
    } else {
        if (argc == 2) {
            attachment_stream = camel_stream_fs_new_with_name (argv[1], O_RDONLY, 0, ex);
            if (attachment_stream == NULL) {
                fprintf (stderr, "Cannot open `%s': %s\n",
                     argv[1],
                     camel_exception_get_description (ex));
                return 1;
            }
        } else {
            fprintf (stderr, "Usage: %s [<attachment>]\n",
                 argv[0]);
            return 1;
        }
    }

    message = camel_mime_message_new ();

    camel_mime_part_set_description (CAMEL_MIME_PART (message), "a test");

    camel_medium_add_header (CAMEL_MEDIUM (message), "X-test1", "the value of a test");
    camel_medium_add_header (CAMEL_MEDIUM (message), "X-test2", "the value of another test");
    /*camel_mime_part_add_content_language (CAMEL_MIME_PART (message), g_string_new ("es-ca"));*/

    camel_mime_message_set_date (message, CAMEL_MESSAGE_DATE_CURRENT, 0);
    camel_mime_message_set_subject (message, g_strdup ("A test message"));
    camel_mime_message_set_reply_to (message, g_strdup ("toto@toto.com"));
    camel_mime_message_set_from (message, g_strdup ("Bertrand.Guiheneuf@aful.org"));

    camel_mime_message_add_recipient (message, CAMEL_RECIPIENT_TYPE_TO, 
                      "Franck DeChamps", "franck.dechamps@alseve.fr");
    camel_mime_message_add_recipient (message, CAMEL_RECIPIENT_TYPE_TO, 
                      NULL, "mc@alseve.fr");
    camel_mime_message_add_recipient (message, CAMEL_RECIPIENT_TYPE_TO, 
                      "Richo", "richard.lengagne@inria.fr");
    camel_mime_message_add_recipient (message, CAMEL_RECIPIENT_TYPE_CC, 
                      "Frank", "Francois.fleuret@inria.fr");
    camel_mime_message_add_recipient (message, CAMEL_RECIPIENT_TYPE_CC, 
                      NULL, "maury@justmagic.com");
    camel_mime_message_add_recipient (message, CAMEL_RECIPIENT_TYPE_BCC, 
                      "Bertie", "Bertrand.Guiheneuf@aful.org");

    multipart = camel_multipart_new ();
    body_part = camel_mime_part_new ();
    camel_mime_part_set_content (CAMEL_MIME_PART (body_part), "This is a test.\nThis is only a test.\n",
                     strlen("This is a test.\nThis is only a test.\n"), "text/plain");
    camel_multipart_add_part (multipart, body_part);

    if (attachment_stream == NULL) {
        attachment_part = NULL;
    } else {
        CamelDataWrapper *attachment_wrapper;
        
        /*CamelDataWrapper *stream_wrapper;

        stream_wrapper = camel_stream_data_wrapper_new
                                               (attachment_stream);

        attachment_part = camel_mime_body_part_new ();
        camel_mime_part_set_encoding (CAMEL_MIME_PART (attachment_part),
                          CAMEL_MIME_PART_ENCODING_BASE64);
        camel_medium_set_content_object (CAMEL_MEDIUM (attachment_part),
                         stream_wrapper);
        camel_multipart_add_part (multipart, attachment_part);

        gtk_object_unref (GTK_OBJECT (stream_wrapper));*/
        
        attachment_wrapper = camel_data_wrapper_new ();
        camel_data_wrapper_construct_from_stream (attachment_wrapper, 
                              attachment_stream);
        
        attachment_part = camel_mime_part_new ();
        camel_mime_part_set_encoding (CAMEL_MIME_PART (attachment_part),
                          CAMEL_MIME_PART_ENCODING_BASE64);
        camel_medium_set_content_object (CAMEL_MEDIUM (attachment_part),
                         attachment_wrapper);
        camel_multipart_add_part (multipart, attachment_part);
    }
    
    camel_medium_set_content_object (CAMEL_MEDIUM (message), CAMEL_DATA_WRAPPER (multipart));

    stream = camel_stream_fs_new_with_name ("mail1.test", O_WRONLY|O_TRUNC|O_CREAT, 0600, ex);
    if (!stream)  {
        printf ("Could not open output file: %s\n",
            camel_exception_get_description (ex));
        exit(2);
    }
               
    camel_data_wrapper_write_to_stream (CAMEL_DATA_WRAPPER (message),
                        stream, ex);
    camel_stream_flush (stream, ex);
    gtk_object_unref (GTK_OBJECT (stream));
    if (camel_exception_is_set (ex)) {
        printf ("Oops. Failed. %s\n",
            camel_exception_get_description (ex));
        exit (1);
    }

    gtk_object_unref (GTK_OBJECT (message));
    gtk_object_unref (GTK_OBJECT (multipart));
    gtk_object_unref (GTK_OBJECT (body_part));

    if (attachment_part != NULL)
        gtk_object_unref (GTK_OBJECT (attachment_part));
    
    printf ("Test1 finished\n");
    return 1;
}