Re: [Evolution-hackers] Plugin to move message to the corresponding folder according to the date of the message

2009-06-03 Thread Julien
Le mercredi 03 juin 2009 à 08:01 -0400, Reid Thompson a écrit :
 On Wed, 2009-06-03 at 11:15 +0200, Julien wrote:
  Hello, 
  
  I want to sort mail and put them in a hierarchy of directory. One
  directory per year, then one sub-directory for each mounth and one
  sub-directory per day. 
  
  I'm searching for a evolution plugin that can move selected messages to
  the right place. Is anyone have a moving plugin example ? 
  
  How can I start my plugin ? How can I access to the date of the
  message ?
  
 download the evolution source ( git ), cd into evolution/plugins and
 look at the code for the current plugins.
 also 
 
 http://www.google.com/search?q=evolution+pluginie=utf-8oe=utf-8aq=trls=org.gentoo:en-US:officialclient=firefox-a

Thanks you !

Julien 

___
Evolution-hackers mailing list
Evolution-hackers@gnome.org
http://mail.gnome.org/mailman/listinfo/evolution-hackers


Re: [Evolution-hackers] [openchange][devel] [ANN] Evolution-mapi moved to new SVN repository

2008-11-19 Thread Julien Kerihuel
On Wed, 2008-11-19 at 09:21 +0100, Julien Kerihuel wrote:
 In the meanwhile, I have written a patch for EXCHANGE-MAPI
 evolution-data-server yesterday which make evolution work with
 libmapi-0.8 latest trunk revision. I'll move my patch from
 EXCHANGE-MAPI-EXCHANGE (local copy) to evolution-mapi new repository
 asap. 

FYI, using libmapi-0.8 gives you - among other features:
- freebusy support almost completed:
- get freebusy data
- find conflicts
- setting freebusy data to be implemented soon
- multiple Exchange accounts support
- open another user mailbox (within the same session)
- robust/complete implementation for GAL browsing using NSPI
- event recurrence support
- better Public Folders support
- events monitoring (newmail notification, folder changes etc)

Mix some of these features with the set/get MAPI permissions API and you
have -IMHO - a nice playground for forthcoming evolution releases.

Cheers,
Julien.

-- 
Julien Kerihuel
[EMAIL PROTECTED]
OpenChange Project Manager

GPG Fingerprint: 0B55 783D A781 6329 108A  B609 7EF6 FE11 A35F 1F79



signature.asc
Description: This is a digitally signed message part
___
Evolution-hackers mailing list
Evolution-hackers@gnome.org
http://mail.gnome.org/mailman/listinfo/evolution-hackers


Re: [Evolution-hackers] e_contact_get_const api doesn't work anymore since a few weeks on debian/unstable

2007-05-21 Thread Julien Puydt
Srinivasa Ragavan a écrit :
 On Tue, 2007-05-01 at 20:35 +0200, Julien Puydt wrote:
  TEL;TYPE=Home:sip:[EMAIL PROTECTED]
  TEL;TYPE=Home;TYPE=VOICE:sip:[EMAIL PROTECTED]
  TEL;TYPE=CELL:123.123.123.123\n
 
 See it works now.

Ok, reported to the contacts developers, since it was using their 
program that I got the dysfunctional vCard :
http://bugzilla.o-hand.com/show_bug.cgi?id=298

Thanks,

Snark
___
Evolution-hackers mailing list
Evolution-hackers@gnome.org
http://mail.gnome.org/mailman/listinfo/evolution-hackers


[Evolution-hackers] e_contact_get_const api doesn't work anymore since a few weeks on debian/unstable

2007-05-03 Thread Julien Puydt
Hi,

I had wonderful code (of course) working wonderfully (of course) since 
long. Hélas! This week, I recompiled and ran it to discover it doesn't 
work anymore: the e_contact_get_const api seems to return NULL whatever 
the contact.

On #evolution, evaSDK could reproduce the problem, and told me to report 
to this list.

Snark

PS: I do have a minimalist example, which should help :
#include libebook/e-book.h

/* gcc -Wextra test.c -o test `pkg-config --cflags --libs libebook-1.2`
  */

int
main (int argc,
   char *argv [])
{
   const gchar *vcard =
 BEGIN:VCARD\n
 VERSION:3.0\n
 FN:Test\n
 TEL;TYPE=Video:sip:[EMAIL PROTECTED]
 UID:pas-id-463224CE\n
 REV:2007-04-30T19:15:39Z\n
 CATEGORIES:Test,Group\n
 TEL;TYPE=Home:sip:[EMAIL PROTECTED]
 END:VCARD;
   EContact *econtact = NULL;

   g_type_init ();

   econtact = e_contact_new_from_vcard (vcard1);

   g_print (Home phone: %s\n, e_contact_get_const (econtact,
E_CONTACT_PHONE_HOME));

   g_object_unref (econtact);

   return 0;
}
___
Evolution-hackers mailing list
Evolution-hackers@gnome.org
http://mail.gnome.org/mailman/listinfo/evolution-hackers