Re: [Evolution-hackers] What do I do about missing data in the message summary?

2005-11-28 Thread Parthasarathi Susarla
On Mon, 2005-11-28 at 10:20 -0500, Jeffrey Stedfast wrote: > actually, that's not true. date_sent is gotten from the MIME message > headers (Date: header, fwiw). > But isnt that the Date received or the date created and not the date send per se?? (RFC 822) Cheers, partha

Re: [Evolution-hackers] About evolution-data-server/libedataser and evolution/e-utils

2005-11-28 Thread Ross Burton
On Mon, 2005-11-28 at 12:23 -0500, Jeffrey Stedfast wrote: > what uses them? >From a very rough grep: ./calendar/libedata-cal/e-cal-backend-util.c ./servers/exchange/storage/exchange-account.c Ross -- Ross Burton mail: [EMAIL PROTECTED]

Re: [Evolution-hackers] About evolution-data-server/libedataser and evolution/e-utils

2005-11-28 Thread Jeffrey Stedfast
what uses them? On Mon, 2005-11-28 at 16:30 +, Ross Burton wrote: > On Mon, 2005-11-28 at 11:23 -0500, Jeffrey Stedfast wrote: > > EAccount and EAccountList are private to Evolution app and should not be > > used inside e-d-s > > Would it be best to rename the e-account and e-account-list > f

Re: [Evolution-hackers] camel_header_unfold()

2005-11-28 Thread Jeffrey Stedfast
On Mon, 2005-11-28 at 15:10 +0100, Jules Colding wrote: > Hi, > > Consider the camel_header_unfold() function: > > char * > camel_header_unfold(const char *in) > { > char *out = g_malloc(strlen(in)+1); > const char *inptr = in; > char c, *o = out; > > o = out; > whi

[Evolution-hackers] Status of bug #255303 (was bug #55303)

2005-11-28 Thread Lee Revell
This bug is really driving me nuts: http://bugzilla.gnome.org/show_bug.cgi?id=255303 The Changelog (grep for bug 55303 not 255303) implies that it's fixed or at least worked around. But I can definitely confirm that it's not - switching folders always causes the scroll position to be reset to th

Re: [Evolution-hackers] I am confused about CamelMessageInfoBase.message_id

2005-11-28 Thread Jeffrey Stedfast
I believe it's the first 8 bytes of a 16-byte MD5 hash of the Message-Id (or it might be the second 8 bytes) You can check the code in camel-folder-summary.c to find out how to calculate it. Jeff On Fri, 2005-11-25 at 13:38 +0100, Jules Colding wrote: > Hi, > > How do I populate this field? I c

Re: [Evolution-hackers] About evolution-data-server/libedataser and evolution/e-utils

2005-11-28 Thread Ross Burton
On Mon, 2005-11-28 at 11:23 -0500, Jeffrey Stedfast wrote: > EAccount and EAccountList are private to Evolution app and should not be > used inside e-d-s Would it be best to rename the e-account and e-account-list files/functions in e-d-s then, as they are used and there is obviously potential for

Re: [Evolution-hackers] About evolution-data-server/libedataser and evolution/e-utils

2005-11-28 Thread Jeffrey Stedfast
EAccount and EAccountList are private to Evolution app and should not be used inside e-d-s Jeff On Thu, 2005-11-24 at 10:43 +, Ross Burton wrote: > On Thu, 2005-11-24 at 18:36 +0800, Irene wrote: > > Md5-utils.ch are not the only files that are duplicated. Most of the > > files in evoluti

Re: [Evolution-hackers] What do I do about missing data in the message summary?

2005-11-28 Thread Jeffrey Stedfast
actually, that's not true. date_sent is gotten from the MIME message headers (Date: header, fwiw). Jeff On Tue, 2005-11-22 at 14:56 +0100, Jules Colding wrote: > On Tue, 2005-11-22 at 18:44 +0530, Parthasarathi Susarla wrote: > > On Tue, 2005-11-22 at 13:55 +0100, Jules Colding wrote: > > > Hi, >

Re: [Evolution-hackers] camel_header_unfold()

2005-11-28 Thread Jules Colding
On Mon, 2005-11-28 at 15:10 +0100, Jules Colding wrote: > *dst = *rfc822_header; > if (!dst) > break; That should be: *dst = *rfc822_header; if ('\0' == *dst) break; -- jules

[Evolution-hackers] camel_header_unfold()

2005-11-28 Thread Jules Colding
Hi, Consider the camel_header_unfold() function: char * camel_header_unfold(const char *in) { char *out = g_malloc(strlen(in)+1); const char *inptr = in; char c, *o = out; o = out; while ((c = *inptr++)) { if (c == '\n') {

[Evolution-hackers] Re: [Apologies] Can camel-mime-utils.[ch] be made public please?

2005-11-28 Thread Jules Colding
On Mon, 2005-11-28 at 13:59 +0100, Jules Colding wrote: > Hi, > > "camel-mime-utils.[ch]" contains a *lot* of extremely useful utility > functions for Camel providers but those functions are inaccessible for > provider backends being developed outside the main tree. > > Other utility functions, s

[Evolution-hackers] Can camel-mime-utils.[ch] be made public please?

2005-11-28 Thread Jules Colding
Hi, "camel-mime-utils.[ch]" contains a *lot* of extremely useful utility functions for Camel providers but those functions are inaccessible for provider backends being developed outside the main tree. Other utility functions, such as those in "camel-file-utils.h", are already installed so why not

[Evolution-hackers] Constructing "struct _camel_header_raw" ?

2005-11-28 Thread Jules Colding
Hi, Is there any Camel utility function to construct a "struct _camel_header_raw" from a string containing all the rfc822 message header fields? Thanks, jules ___ Evolution-hackers mailing list Evolution-hackers@gnome.org http://mail.gnome.org/mailm

Re: [Evolution-hackers] Re: [Fwd: Re: Community Service]

2005-11-28 Thread Shreyas Sriniavasan
On Mon, 2005-11-28 at 09:53 +0700, Ross Golder wrote: > On ศ., 2005-10-28 at 16:45 +0200, Dave Neary wrote: > > Hi all, > > > > I have been talking to Andrew Case about his community service, and he's > > come up with a couple of ideas for projects he would be interested in > > taking on. > > >

Re: [Evolution-hackers] I am confused about CamelMessageInfoBase.message_id

2005-11-28 Thread Parthasarathi Susarla
On Fri, 2005-11-25 at 13:38 +0100, Jules Colding wrote: > Hi, > > How do I populate this field? I can see in camel-nntp-utils.c:l196 that > it is a strdup() of the "Message-ID" message header filed, but > CamelSummaryMessageID is only 8 bytes big, so how can it fit in there? > > This can't be rig