2000-02-14 Miguel de Icaza <miguel@gnu.org> * camel/providers/mbox/Makefile.am (libcamelmbox_la_LIBADD): Add the unicode libraries as well. * camel/camel-provider.c (camel_provider_register_as_module): Add error reporting here. Desire to use Solaris increases. Hair loss in the last two hours: 5,400. * camel/providers/mbox/camel-mbox-provider.c (camel_mbox_get_provider): Renamed function. * camel/camel.h: All include files use camel/ now here. * camel/providers/mbox/Makefile.am: Drop all the dynamism from Camel, and make this a standard library. * configure.in: set the UNICODE_LIBS variable here. 2000-02-14 Miguel de Icaza <miguel@gnu.org> * folder-browser.c (folder_browser_load_folder): New routine, loads a camel folder. (folder_browser_set_uri): redo. * session.c: new file. Implements SessionStores to keep track of a Session/Store tuple. svn path=/trunk/; revision=1783
90 lines
1.9 KiB
C
90 lines
1.9 KiB
C
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
|
|
|
|
/*
|
|
Test search api
|
|
*/
|
|
|
|
|
|
#include "camel.h"
|
|
#include "camel-mbox-folder.h"
|
|
#include "camel-mbox-parser.h"
|
|
#include "camel-mbox-utils.h"
|
|
#include "camel-mbox-summary.h"
|
|
#include "camel-log.h"
|
|
#include "camel-exception.h"
|
|
#include "camel-folder-summary.h"
|
|
#include "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>
|
|
|
|
int
|
|
main (int argc, char**argv)
|
|
{
|
|
CamelSession *session;
|
|
CamelException *ex;
|
|
CamelStore *store;
|
|
gchar *store_url = "mbox:///tmp/evmail";
|
|
CamelFolder *folder;
|
|
CamelMimeMessage *message;
|
|
GList *uid_list;
|
|
int camel_debug_level = 10;
|
|
GList *matches;
|
|
|
|
gtk_init (&argc, &argv);
|
|
camel_init ();
|
|
ex = camel_exception_new ();
|
|
camel_provider_register_as_module ("./libcamelmbox.so.0");
|
|
|
|
session = camel_session_new ();
|
|
store = camel_session_get_store (session, store_url);
|
|
|
|
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("Search for messages\n");
|
|
|
|
matches = camel_folder_search_by_expression (folder, "(match-all (and (header-contains \"subject\" \"terminal\") (header-contains \"subject\" \"patch\")))", ex);
|
|
|
|
if (matches) {
|
|
GList *n;
|
|
printf("search found matches:\n");
|
|
n = matches;
|
|
while (n) {
|
|
printf("uid: %s\n", n->data);
|
|
n = g_list_next(n);
|
|
}
|
|
|
|
} else {
|
|
printf("no matches?\n");
|
|
}
|
|
|
|
camel_folder_close (folder, FALSE, ex);
|
|
|
|
return 0;
|
|
}
|
|
|
|
|
|
|
|
|