/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ /* Test search api */ #include #include #include #include #include #include #include #include #include #include #include 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; } lue='dependabot/npm_and_yarn/devel/electron6/files/ini-1.3.8'>dependabot/npm_and_yarn/devel/electron6/files/ini-1.3.8 FreeBSD GNOME current development ports (https://github.com/freebsd/freebsd-ports-gnome)
aboutsummaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* MASTER_SITES cleanup.mat2015-05-141-1/+1
* Change INSTALL_DATA to install with mode 644antoine2014-09-052-10/+4
* Convert a bunch of USE_BZIP2 to USES=tar:bzip2adamw2014-07-301-2/+1
* Remove all space characters from Makefile assignments.olgeni2014-06-091-7/+7
* Show correct installation prefix in pkg-messagepawel2014-03-071-4/+4
* - Add CRAMMD5 option [1]pawel2014-02-023-33/+29
* Add NO_STAGE all over the place in preparation for the staging support (cat: ...bapt2013-09-211-0/+1
* - Remove wrong OPTIONS_DEFINEsunpoet2013-08-301-1/+0