aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test11.c
blob: 1323a5f90b0335e6e4808b8b26848258f9ff3143 (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 -*- */

/*
  Test search api
  */


#include <camel/camel.h>
#include <camel/camel-exception.h>
#include <camel/camel-folder.h>
#include <camel/md5-utils.h>
#include <sys/types.h>
#include <unistd.h>
#include <errno.h>
#include <string.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <glib.h>

static char *
auth_callback(char *prompt, gboolean secret,
          CamelService *service, char *item,
          CamelException *ex)
{
    printf ("auth_callback called: %s\n", prompt);
    return NULL;
}

int
main (int argc, char**argv)
{
    CamelSession *session;
    CamelException *ex;
    CamelStore *store;
    gchar *store_url = "mbox:///tmp/evmail";
    CamelFolder *folder, *outbox;
    GList *n, *matches;

    gtk_init (&argc, &argv);
    camel_init ();      
    ex = camel_exception_new ();

    session = camel_session_new (auth_callback);

    camel_provider_load (session, "../camel/providers/mbox/.libs/libcamelmbox.so.0", ex);
    if (camel_exception_get_id (ex)) {
        printf ("Exceptions suck: %s\n", camel_exception_get_description (ex));
        return 1;
    }

    store = camel_session_get_store (session, store_url, ex);
    if (camel_exception_get_id (ex)) {
        printf ("Exception caught in camel_session_get_store\n"
            "Full description : %s\n", camel_exception_get_description (ex));
        return -1;
    }

    printf("get folder\n"); 

    folder = camel_store_get_folder (store, "Inbox", ex);
    if (camel_exception_get_id (ex)) {
        printf ("Exception caught in camel_store_get_folder\n"
            "Full description : %s\n", camel_exception_get_description (ex));
        return -1;
    }
    
    printf("open folder\n");

    camel_folder_open (folder, FOLDER_OPEN_READ, ex);
    if (camel_exception_get_id (ex)) {
        printf ("Exception caught when trying to open the folder\n"
            "Full description : %s\n", camel_exception_get_description (ex));
        return -1;
    }

    printf("create output folder ...\n");
    outbox = camel_store_get_folder (store, "Gnome", ex);
    if (!camel_folder_exists(outbox, ex)) {
        camel_folder_create(outbox, ex);
    }
    
    camel_folder_open (outbox, FOLDER_OPEN_WRITE, ex);

    printf("Search for messages\n");

    matches = camel_folder_search_by_expression  (folder,
/*                            "(match-all (header-contains \"subject\" \"gnome\"))",*/
                              "(body-contains \"gnome\")",
                              ex);

    printf("search found matches:\n");
    n = matches;
    while (n) {
        CamelMimeMessage *m;
        
        printf("uid: %s\n", (char *) n->data);
        m = camel_folder_get_message_by_uid(folder, n->data, ex);

        if (camel_exception_get_id (ex)) {
            printf ("Cannot get message\n"
                "Full description : %s\n", camel_exception_get_description (ex));
            camel_exception_init(ex);
        } else {

#if 1
        
            camel_folder_append_message(outbox, m, ex);
            
            if (camel_exception_get_id (ex)) {
                printf ("Cannot save message\n"
                    "Full description : %s\n", camel_exception_get_description (ex));
            }

            printf("Removing matching message from source folder?\n");
            camel_mime_message_set_flags(m, CAMEL_MESSAGE_DELETED, CAMEL_MESSAGE_DELETED);
/*          camel_mime_message_set_flags(m, CAMEL_MESSAGE_ANSWERED, CAMEL_MESSAGE_ANSWERED);*/
#endif

        }
        if (m)
            gtk_object_unref(m);
        n = g_list_next(n);
    }

    camel_folder_close (outbox, TRUE, ex);
    camel_folder_close (folder, TRUE, ex);

    gtk_object_unref((GtkObject *)outbox);
    gtk_object_unref((GtkObject *)folder);

    return 0;
}