Re: [Evolution-hackers] Sending a CamelMimeMessage

2004-08-09 Thread ERDI Gergo
On Mon, 9 Aug 2004, Not Zed wrote: I think you're confused about what the outbox is for. It is only a spool for outgoing emails. Yes, I got confused and said 'outbox' when I meant 'sent items'. They might go into sent automatically, but i don't see that as a major issue. OK. I'm sending a first

[Evolution-hackers] problem with ebook in Evo 1.4.6

2004-08-09 Thread Hubert Figuiere
Hi, I'm trying trying, from my shell component for Evo 1.4, to read the local AddressBook content with e-book APIs, but each time I get the cursor, it is empty (length == 0). I know that I have 2 cards in it. Attached is a sample code extracted from my code, that ressemble much to what Evo

Re: [Evolution-hackers] problem with ebook in Evo 1.4.6

2004-08-09 Thread Chris Toshok
On Mon, 2004-08-09 at 11:04 -0400, Hubert Figuiere wrote: static void import_ebook_opened_cb(EBook *book, EBookStatus status, gpointer data) { if (status != E_BOOK_STATUS_SUCCESS) { g_message(failed to open ebook\n);

Re: [Evolution-hackers] problem with ebook in Evo 1.4.6

2004-08-09 Thread Hubert Figuiere
On Mon, 2004-08-09 at 16:33 -0700, Chris Toshok wrote: e_book_get_cursor(book, , merge_get_cursor_cb, NULL); This is your problem. That's an invalid query. If you're interested in getting all cards in the book, pass the following: (contains x-evolution-any-field ) Thanks a