[Evolution-hackers] French translation for Evo 1.2

2002-11-26 Thread Jerome Warnier
I used Evo 1.2 on Debian (version 1.2.0-1) for a couple of days, and
used Evo 1.0 before.

I'm concerned about the lack of completeness in the French translation.
How can I help?
Who am I supposed to contact to cooperate?

Thanks



___
evolution-hackers maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/evolution-hackers



Re: [Evolution-hackers] French translation for Evo 1.2

2002-11-26 Thread Frederic Crozat
Le mar 26/11/2002 à 13:00, Jerome Warnier a écrit :
 I used Evo 1.2 on Debian (version 1.2.0-1) for a couple of days, and
 used Evo 1.0 before.
 
 I'm concerned about the lack of completeness in the French translation.
 How can I help?
 Who am I supposed to contact to cooperate?

You should contact one of the member of GNOME french translation team at
[EMAIL PROTECTED]

-- 
Frederic Crozat [EMAIL PROTECTED]
MandrakeSoft


___
evolution-hackers maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/evolution-hackers



[Evolution-hackers] Re: [evolution-patches] [PATCH] Calendar Leaks

2002-11-26 Thread Dan Winship
 I have a similar case in GTK 1.2's GtkInvisible widget, which refs and
 sinks itself on creation - it's reported as a leak, although it's being
 destroyed in Evo.

The code should be unreffing it, not destroying it. Destroy doesn't
explicitly unref the widget, it's just that normally destroying a widget
will cause its parent to unref it. Since the invisible doesn't have a
parent, it still has a refcount of 1 after being destroyed, so it
doesn't get finalized, causing the leak.

-- Dan


___
evolution-hackers maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/evolution-hackers



[Evolution-hackers] Re: [evolution-patches] [PATCH] Calendar Leaks

2002-11-26 Thread Hans Petter Jansson
On Tue, 2002-11-26 at 08:35, Dan Winship wrote:
 The code should be unreffing it, not destroying it. Destroy doesn't
 explicitly unref the widget, it's just that normally destroying a widget
 will cause its parent to unref it. Since the invisible doesn't have a
 parent, it still has a refcount of 1 after being destroyed, so it
 doesn't get finalized, causing the leak.

Ok, the code is destroying it and catching the destroy signal. It didn't
unref it, however, so I updated the patch to do that. Works. Thanks.

-- 
Hans Petter

? autom4te.cache
? evolution-1.2-libical-setter-leak.patch
? patch
? help/C/evolution
? help/C/index.html
? help/C/omf_timestamp
? libical/autom4te.cache
Index: calendar/gui/e-calendar-table.c
===
RCS file: /cvs/gnome/evolution/calendar/gui/e-calendar-table.c,v
retrieving revision 1.78
diff -u -r1.78 e-calendar-table.c
--- calendar/gui/e-calendar-table.c 3 Oct 2002 10:57:21 -   1.78
+++ calendar/gui/e-calendar-table.c 26 Nov 2002 22:08:45 -
@@ -1210,6 +1210,7 @@
 static void
 invisible_destroyed (GtkWidget *invisible, ECalendarTable *cal_table)
 {
+   gtk_object_unref (GTK_OBJECT (cal_table-invisible));
cal_table-invisible = NULL;
 }
 
Index: calendar/gui/e-day-view.c
===
RCS file: /cvs/gnome/evolution/calendar/gui/e-day-view.c,v
retrieving revision 1.163
diff -u -r1.163 e-day-view.c
--- calendar/gui/e-day-view.c   8 Oct 2002 17:02:07 -   1.163
+++ calendar/gui/e-day-view.c   26 Nov 2002 22:08:48 -
@@ -7515,6 +7515,7 @@
 static void
 invisible_destroyed (GtkWidget *invisible, EDayView *day_view)
 {
+   gtk_object_unref (GTK_OBJECT (day_view-invisible));
day_view-invisible = NULL;
 }
 
Index: calendar/gui/e-meeting-model.c
===
RCS file: /cvs/gnome/evolution/calendar/gui/e-meeting-model.c,v
retrieving revision 1.29
diff -u -r1.29 e-meeting-model.c
--- calendar/gui/e-meeting-model.c  26 Sep 2002 16:14:44 -  1.29
+++ calendar/gui/e-meeting-model.c  26 Nov 2002 22:08:49 -
@@ -409,6 +409,7 @@
e_meeting_attendee_set_language (ia, g_strdup (e_table_model_value_at (source, 
E_MEETING_MODEL_LANGUAGE_COL, row)));
 
e_meeting_model_add_attendee (E_MEETING_MODEL (etm), ia);
+   gtk_object_unref (GTK_OBJECT (ia));
 }
 
 static void *
@@ -1821,6 +1822,8 @@
process_section (im, destv, roles[i]);
e_destination_freev (destv);
}   
+
+   g_free (string);
}
 }
 
Index: calendar/gui/e-week-view.c
===
RCS file: /cvs/gnome/evolution/calendar/gui/e-week-view.c,v
retrieving revision 1.136
diff -u -r1.136 e-week-view.c
--- calendar/gui/e-week-view.c  8 Oct 2002 17:02:07 -   1.136
+++ calendar/gui/e-week-view.c  26 Nov 2002 22:08:51 -
@@ -4168,6 +4168,7 @@
 static void
 invisible_destroyed (GtkWidget *invisible, EWeekView *week_view)
 {
+   gtk_object_unref (GTK_OBJECT (week_view-invisible));
week_view-invisible = NULL;
 }
 
Index: calendar/gui/itip-utils.c
===
RCS file: /cvs/gnome/evolution/calendar/gui/itip-utils.c,v
retrieving revision 1.59
diff -u -r1.59 itip-utils.c
--- calendar/gui/itip-utils.c   24 Oct 2002 14:25:53 -  1.59
+++ calendar/gui/itip-utils.c   26 Nov 2002 22:08:51 -
@@ -575,12 +575,15 @@
 return CORBA_string_dup (U_(Journal information));
 case CAL_COMPONENT_FREEBUSY:
 cal_component_get_dtstart (comp, dt);
-if (dt.value) {
+if (dt.value)
 start = get_label (dt.value);
-cal_component_get_dtend (comp, dt);
-if (dt.value)
-end = get_label (dt.value);
-}
+   cal_component_free_datetime (dt);
+
+   cal_component_get_dtend (comp, dt);
+   if (dt.value)
+   end = get_label (dt.value);
+   cal_component_free_datetime (dt);
+
 if (start != NULL  end != NULL) {
 char *tmp, *tmp_utf;
 tmp = g_strdup_printf (_(Free/Busy information (%s to %s)), 
start, end);
@@ -1054,8 +1057,10 @@
CORBA_free (filename);
if (description != NULL)
CORBA_free (description);
-   if (attach_data != NULL)
+   if (attach_data != NULL) {
+   CORBA_free (attach_data-_buffer);
CORBA_free (attach_data);
+   }
 
return retval;
 }
Index: calendar/gui/dialogs/comp-editor-util.c
===
RCS file: 

[Evolution] Spell checker, how?

2002-11-26 Thread Carlos M. Buj Ribas




Hi all,



could anybody eplain me how to use the spell checker with Evolution 1.2?. It looks like in the one evolution version I am using this module is not installed or it's not working... how can I install this module then?.



Thanks



-- 
http://www.geocities.com/karlosbuj








Re: [Evolution] Cannot hear the Bell

2002-11-26 Thread Nicolas ROBAUX
Hi from France ! I'm 30, new to the list, and I'm using Evo every day,
at my office.


Le lun 25/11/2002 à 22:37, [EMAIL PROTECTED] a écrit :

 What other setting needs to be made?  I am also not getting sound
 notification.
 
 I am using GNOME under RH 8.0.
 

I'm using Mdk 8.2, and Evo with Window Maker. I'm getting the computer
beep, but no wave sound.
When running the sound settings in Gnomecc, I can play the wav file with
the Play button. But when I click Accept, it doesn't accept my settings.
I think there is a problem with the Esound daemon...

N.


___
evolution maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/evolution



Re: [Evolution] No language in spelling checking

2002-11-26 Thread Frederic Crozat
Le mar 26/11/2002 à 05:03, Steven J. Maddocks a écrit :
 Hello all,
 
 I am running Evolution  1.2 under Mandrake 8.2 with gnome-spell-0.5-1mdk
 installed. I find that the spelling checking doesn't appear to be
 working and when I check Tools-Settings-Composer Preferences-Spell
 Checking, I see no languages listed.

You are doing exactly what you should NOT do : install cooker packages
(at least gnome-spell-0.5-1mdk and probably more) on a stable distro
(moreover an old stable distro)..

Either completely upgrade your system to cooker or use Ximian packages
for Evolution..

Thanks..

-- 
Frederic Crozat [EMAIL PROTECTED]
MandrakeSoft


___
evolution maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/evolution



Re: [Evolution] Comments on Evolution 1.2

2002-11-26 Thread Aristotle
I agree with you although now I believe you are behaving like a Linux
Bigot.  Of course MS Draw is rubbish - do you think commercial
developers would appreciate MS encroaching on their turf?  The
developers for commercial graphics software (the big name ones) are
probably in bed with M$ anyway.

On Mon, 2002-11-25 at 07:34, Arthur S. Alexion wrote:
 On Tuesday 19 November 2002 10:51 pm, Russell Stuart wrote:
  Evolution 1.2 is very, very good.  IMHO
  it is the first piece of open source office software that is on a par
  with Microsoft's equivalent offering - better in some ways, in fact.
   An extraordinary achievement, considering the resources Microsoft
  has to throw at the problem.
 
 Gee, I always thought Postgre and MySQL were better than MS SQL Server 
 and that the GIMP blows away every graphics offering from MS, including 
 MS Draw.  I could go on
 -- 
 
 ___
 Art Alexion
 Arthur S. Alexion LLC
 mailto:[EMAIL PROTECTED]
 http://www.alexion.com
 
 ___
 evolution maillist  -  [EMAIL PROTECTED]
 http://lists.ximian.com/mailman/listinfo/evolution
-- 
--
Adelaide, South Australia
AIM demosthenes aus Gabber demosthenes
Yahoo IM demosthenes_down_under
ICQ 175117479 PGP(GPG) key ID D408E804
Unreal Tournament 2003 demosthenes
(internode.on.net game servers)
--


___
evolution maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/evolution



SV: [Evolution] When is Evolution 1.4 due out?

2002-11-26 Thread Mårten Woxberg
 On Fri, 2002-11-22 at 21:48, Aristotle wrote:
  But there is no indication of when it is due out?
 
 When its finished and stable :)

So it'll come out around 2005 with Star Wars Episode 3 then...
I mean evolution 1.2 is supposed to be stable right??
It crashes like hell if I'm not on a system that you precompiled
it for...
 
 Snapshots should be out in a week or so hopefully, so you can 
 track the stability as it changes.

It would be great if you twice a month could do a source snapshot too..
so that we sorry bastards who compile ourselves can try it out without
subscribing
to the CVS?

/Mårten



___
evolution maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/evolution



Re: SV: [Evolution] When is Evolution 1.4 due out?

2002-11-26 Thread Aristotle
If you can code, which I sure as hell can't - I am sure your
contribution to stability will be welcome

On Tue, 2002-11-26 at 18:48, Mårten Woxberg wrote:
  On Fri, 2002-11-22 at 21:48, Aristotle wrote:
   But there is no indication of when it is due out?
  
  When its finished and stable :)
 
 So it'll come out around 2005 with Star Wars Episode 3 then...
 I mean evolution 1.2 is supposed to be stable right??
 It crashes like hell if I'm not on a system that you precompiled
 it for...
  
  Snapshots should be out in a week or so hopefully, so you can 
  track the stability as it changes.
 
 It would be great if you twice a month could do a source snapshot too..
 so that we sorry bastards who compile ourselves can try it out without
 subscribing
 to the CVS?
 
 /Mårten
 
 
 
 ___
 evolution maillist  -  [EMAIL PROTECTED]
 http://lists.ximian.com/mailman/listinfo/evolution
-- 
--
Adelaide, South Australia
AIM demosthenes aus Gabber demosthenes
Yahoo IM demosthenes_down_under
ICQ 175117479 PGP(GPG) key ID D408E804
Unreal Tournament 2003 demosthenes
(internode.on.net game servers)
--


___
evolution maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/evolution



Re: [Evolution] twaeking Preferences manually

2002-11-26 Thread Ville Skyttä
On Tue, 2002-11-26 at 05:34, Not Zed wrote:

Is ist possible, to view in Thread mode as default?
   Hmm, that might need source modifications at the moment.
  
  Would be a considerable modification, I think. The Thread view is very
  helpful, should be configurable in the Views.
 
 No its probably a 1 line change

I think the thread setting is already saved when saving a custom view.

By the way, I've seen Evolution 1.2.0 hang totally when saving a custom
view.  The view is saved, but Evo takes 100% CPU after it and never
returns.  killev and a restart helps.  Anyone else see this?  This was
on RH8.

Oh, and instead of (or in addition to) making the thread setting
default, it should be possible to make a (custom) view the default...

-\/ille


___
evolution maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/evolution



[Evolution] syncing with IrDA

2002-11-26 Thread Curtis C. Hovey
I'm unable to sync my Visor using gnome-pilot and IrDA.

I can sync using serial and USB, and I can sync using IrDA and
pilot-link.  The PDA and computer see each other when I prepare to sync.
I've tried manually starting gpilotd before, and after, I start the
PDA's sync.  The PDA's connection times out, and pilotd doesn't do
anything.  gpilotd says it's watching my ports (/dev/visor, /dev/ttyS0,
/dev/ircomm0).  I also tried telling gnome-pilot that /dev/ircomm0 was a
serial connection, but that failed too.

Does any one have any ideas of how I can sync using IrDA?

-- 
__C U R T I S  C.  H O V E Y
[EMAIL PROTECTED]
Guilty of stealing everything I am.

---
[This E-mail scanned for viruses by Declude Virus]


___
evolution maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/evolution



Re: [Evolution] Spell checker, how?

2002-11-26 Thread Dave Barton
On Tue, 2002-11-26 at 19:29, Carlos M. Buj Ribas wrote:
 Hi all, 
 
 could anybody eplain me how to use the spell checker with Evolution
 1.2?. It looks like in the one evolution version I am using this
 module is not installed or it's not working... how can I install this
 module then?. 
 
 Thanks

Do you have gnome-spell-0.5-1.ximian.3 installed ? If not, then download
and install it with red-carpet or ftp from Ximian site.
Then go through the Evolution menus:

Tools-Settings-Composer Preferences-Spell Checking

HTH

Dave
-- 
Registered Linux User #288562 http://counter.li.org



___
evolution maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/evolution



[Evolution] Saving e-mail attachments

2002-11-26 Thread Dave Barton
When I save an e-mail attachment the save dialogue shows the attachment
name in the file name box, but if I change the directory the file name
disappears.

Is this an Ximian or a gtk bug ?

Dave
-- 
Registered Linux User #288562 http://counter.li.org


___
evolution maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/evolution



Re: [Evolution] Evolution changed my login

2002-11-26 Thread Arthur S. Alexion
On Monday 25 November 2002 11:31 pm, Mark Gordon wrote:
 OK, confirmed, it's a bug.
 http://bugzilla.ximian.com/show_bug.cgi?id=34606

Thanks, Mark.  I really appreciate the candor.  At least it gave me an 
opportunity to learn how /etc/inittab, prefdm and  
/etc/sysconfig/desktop interact and work.  It is bad, though, because 
it diminishes trust in the installer.  

Think about it.  We run Linux in user mode because we don't trust 
ourselves to not make mistakes occasionally in super user mode.  But 
when we run the installer, we put blind trust in the installer and the 
package provider, who are total strangers.  Its like strong encryption 
-- it doesn't matter how strong it is if you give your password out.


  My system now has Red Carpet installed in addition to Evolution.

 That's on purpose, so you can easily install updates to Evolution
 and/or its dependencies.

That's fine, but I wish that it hadn't replaced so many other things.  
You guys pride yourselves on delivering a product that is familiar to 
MS Windows/Office users, and I think you have succeeded with a fine 
product.  One Windows thing I wish you did not emulate, though, is DLL 
hell -- where install programs replace shared libraries with versions 
that are incompatible with other software that the user depends on.

-- 

___
Art Alexion
Arthur S. Alexion LLC
mailto:[EMAIL PROTECTED]
http://www.alexion.com

___
evolution maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/evolution



Re: [Evolution] Evolution changed my login

2002-11-26 Thread Arthur S. Alexion
On Monday 25 November 2002 07:43 pm, guenther wrote:
 I may be wrong, but that sounds like the Ximian (Desktop) Installer
 rather than Red Carpet. lynx only is mentioned for downloading the
 Installer.

 The Evolution only rather than the Ximian Desktop implies the same.
 If you only downloaded Red Carpet, you have to subscribe to the
 Evolution Channel, and theres no other Gnome stuff in there.

 At http://ximian.com/products/evolution/download.html you followed
 the link to the main download page, right?

Thanks, Guenther.  Mark Gordon confirms your suspicion that I used the 
Installer.

I think you are wrong about there not being any Gnome stuff in the 
Evolution Channel.  Evolution seems to depend on a lot of 
original_name.ximian versions of some standard Gnome libraries, and 
replaces them without asking for confirmation.

Additionally Mark confirms that the Installer replaced the settings for 
my Display Manager, even though it didn't need to.  The bug is 
explained at http://bugzilla.ximian.com/show_bug.cgi?id=34606
-- 

___
Art Alexion
Arthur S. Alexion LLC
mailto:[EMAIL PROTECTED]
http://www.alexion.com

___
evolution maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/evolution



[Evolution] Palm sync inbox

2002-11-26 Thread Steve Sykes
My palm m515 syncs fine except for mail.  The mail stays on the palm and
doesn't seem to get the mail from Evolution.  The conduit shows sendmail
active but I must be missing something.  Any ideas?

-- 
Regards,

Steve Sykes
Field Engineer, Harris Corporation
Abu Dhabi, UAE
Red Hat 8.0
Registered Linux User #94482 http://counter.li.org


___
evolution maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/evolution



Re: [Evolution] Saving e-mail attachments

2002-11-26 Thread fejj
On Tue, Nov 26, 2002 at 11:46:53PM +1100, Dave Barton wrote:
 When I save an e-mail attachment the save dialogue shows the attachment
 name in the file name box, but if I change the directory the file name
 disappears.
 
 Is this an Ximian or a gtk bug ?

it's a gtk bug, but it is fixed in the Ximian gtk+ packages.

Jeff

 
 Dave
 -- 
 Registered Linux User #288562 http://counter.li.org
 
 
 ___
 evolution maillist  -  [EMAIL PROTECTED]
 http://lists.ximian.com/mailman/listinfo/evolution
 

___
evolution maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/evolution



[Evolution] How can I use new dictionaries?

2002-11-26 Thread Carlos M. Buj Ribas

Hi all again,

ok, now I can use the spell checker but just the English language. How can I 
incorporate new languages?

Thanks for your help,

bye!!

___
evolution maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/evolution



Re: [Evolution] Evolution changed my login

2002-11-26 Thread Mark Gordon
On Tue, 2002-11-26 at 08:35, Arthur S. Alexion wrote:

   My system now has Red Carpet installed in addition to Evolution.
 
  That's on purpose, so you can easily install updates to Evolution
  and/or its dependencies.
 
 That's fine, but I wish that it hadn't replaced so many other things.  

Clarification: it was the installer that clobbered
/etc/sysconfig/desktop, not Red Carpet.  Red Carpet is blameless in this
regard; they're two different pieces of software.  They share some
common code, but this bug is only in the installer.

-- 
Mark Gordon [EMAIL PROTECTED]


___
evolution maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/evolution



Re: [Evolution] Evolution changed my login

2002-11-26 Thread Mark Gordon
On Tue, 2002-11-26 at 08:43, Arthur S. Alexion wrote:

 I think you are wrong about there not being any Gnome stuff in the 
 Evolution Channel.  Evolution seems to depend on a lot of 
 original_name.ximian versions of some standard Gnome libraries, and 
 replaces them without asking for confirmation.

Evolution is one of the most complex GNOME applications, and it has a
way of exposing bugs in underlying components and libraries.  The best
solution in those cases is to install updated versions of that software
which has the necessary fixes to allow Evolution to be stable.

Recent example: gnome-print 0.35 (which shipped with Red Hat 8.0) often
crashes when trying to print messages from Evolution.  The fix: we ship
gnome-print 0.37 for Red Hat 8.0.

The installer lets you know which packages are going to be installed and
will not proceed until you confirm.

-- 
Mark Gordon [EMAIL PROTECTED]


___
evolution maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/evolution



[Evolution] Go to next unread message : sometimes the message list doesn'tjump to the message

2002-11-26 Thread Etienne Tourigny
Hi,

sometimes when using the ] key for Go to next unread message the
message list doesn't jump to the selected message.  Although, the
message displays in the preview pane (lower right).  It's very weird,
and I think it happens if the new message is below or lower the current
one.

Anyone having this intermittent (~1/10) issue?

Etienne 


___
evolution maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/evolution



Re: [Evolution] Remaining Image in 1.2

2002-11-26 Thread Etienne Tourigny
I have seen that also.  Emptying the trash doesn't work, although
Expunge works.  Has anyone filed a bug report before I do?

Etienne

On Sun, 2002-11-24 at 13:32, Dennis Tuchler wrote:
 Often (not always), when I have deleted the last entry on the list of
 messages, the image of that last message remains in the preview screen
 -- even after new messages are loaded with a later click on
 Send/Receive.
 
 It is annoying.  Is there any way I can prevent this continuation of a
 message in the preview screen?
 
 thanks


___
evolution maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/evolution



Re: [Evolution] Go to next unread message : sometimes themessage list doesn't jump to the message

2002-11-26 Thread Enver ALTIN
On Tue, 2002-11-26 at 17:49, Etienne Tourigny wrote:
 Hi,

Hi,

 sometimes when using the ] key for Go to next unread message the
 message list doesn't jump to the selected message.  Although, the
 message displays in the preview pane (lower right).  It's very weird,
 and I think it happens if the new message is below or lower the current
 one.

Same here. Actually the message list jumps to the message; and it gets
selected; but doesn't get focused (selection is not visible) though, if
I scroll down and find the selected message I see it focused but the
view of widget doesn't scroll there.

It's the same for all other dialogs using the same widget. It was
bothering me for a while.
--
Enver ALTIN (a.k.a. skyblue)   - Software developer, generic solvent
http://enver.casdb.com/- mailto: ealtin at casdb dot com
http://enver.casdb.com/CV.html - Just me, myself and I.

Amnesia used to be my favorite word, but then I forgot it.

___
evolution maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/evolution



Re: [Evolution] Go to next unread message : sometimes themessage list doesn't jump to the message

2002-11-26 Thread Etienne Tourigny
On Tue, 2002-11-26 at 11:10, Enver ALTIN wrote:
 On Tue, 2002-11-26 at 17:49, Etienne Tourigny wrote:
  Hi,
 
 Hi,
 
  sometimes when using the ] key for Go to next unread message the
  message list doesn't jump to the selected message.  Although, the
  message displays in the preview pane (lower right).  It's very weird,
  and I think it happens if the new message is below or lower the current
  one.
 
 Same here. Actually the message list jumps to the message; and it gets
 selected; but doesn't get focused (selection is not visible) though, if
 I scroll down and find the selected message I see it focused but the
 view of widget doesn't scroll there.
 

Sorry, that's what I meant.  The message gets selected but the view
doesn't move to that message.

Is it intermittent like me?

 It's the same for all other dialogs using the same widget. It was
 bothering me for a while.
 --
 Enver ALTIN (a.k.a. skyblue)   - Software developer, generic solvent
 http://enver.casdb.com/- mailto: ealtin at casdb dot com
 http://enver.casdb.com/CV.html - Just me, myself and I.
 
 Amnesia used to be my favorite word, but then I forgot it.
 
 ___
 evolution maillist  -  [EMAIL PROTECTED]
 http://lists.ximian.com/mailman/listinfo/evolution
 


___
evolution maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/evolution



[Evolution] Naming Evolution?

2002-11-26 Thread Dennis Tuchler
How did the name, Evolution, get put on a scheduling/email type program?

Thanks
-- 
Dennis Tuchler [EMAIL PROTECTED]


___
evolution maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/evolution



Re: [Evolution] Evolution changed my login

2002-11-26 Thread guenther
cheers();

 Thanks, Guenther.  Mark Gordon confirms your suspicion that I used the 
 Installer.
 
 I think you are wrong about there not being any Gnome stuff in the 
 Evolution Channel.  Evolution seems to depend on a lot of 
 original_name.ximian versions of some standard Gnome libraries, and 
 replaces them without asking for confirmation.

Sure, there are dependencies in the Evolution channel. With gnome stuff
i meant not related stuff, like gdm.

Red Carpet IMHO always asks for confirmation, before upgrading, removing
or installing addidional stuff.

...guenther


-- 
char *t=\10pse\0r\0dtu\0.@ghno\x4e\xc8\x79\xf4\xab\x51\x8a\x10\xf4\xf4\xc4;
main(){ char h,m=h=*t++,*x=t+2*h,c,i,l=*x,s=0; for (i=0;il;i++){ i%8? c=1:
(c=*++x); c128  (s+=h); if (!(h=1)||!t[s+h]){ putchar(t[s]);h=m;s=0; }}}


___
evolution maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/evolution



[Evolution] Arrow icons gone?

2002-11-26 Thread Chris Boyce
I apologize if this has been covered already; I just joined this list.

I upgraded to Evolution 1.2 (running Ximian Gnome on RedHat 7.3).
Suddenly, the arrow icons (to move forward and backward through
messages) have disappeared from the message window.  They are present in
the main window, but I must use the preview pane in order to use them.

I don't typically use the preview pane, and like to open a message in a
new window and then step through my other unread messages using the
arrows.

Has anyone else seen this?  Is it intentional?

thanks for your help.

-- 
Chris Boyce
Berbee
5520 Research Park Drive, Madison, WI  53711
608.298.1286
608.219.8017 cell  608.288.3007 fax
[EMAIL PROTECTED]

Berbee...putting the E in business


___
evolution maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/evolution



RE: [Evolution] Comments on Evolution 1.2

2002-11-26 Thread Patrick Nelson
Aristotle wrote:
-
I agree with you although now I believe you are behaving like a Linux
Bigot.  Of course MS Draw is rubbish - do you think commercial
developers would appreciate MS encroaching on their turf?  The
developers for commercial graphics software (the big name ones) are
probably in bed with M$ anyway.
-

Linux Bigot?  IYAGSGTSDSN

___
evolution maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/evolution



[Evolution] zaurus sync

2002-11-26 Thread Ryan Leduc
Hello,
 
Does anyone know if there is an easy way to get evolution to sync with a sharp
 zaurus? (question is actually for a buddy of mine who just bought one).
 
 Ryan

-- 

  Dr. Ryan Leduc
  Assistant ProfessorEmail: [EMAIL PROTECTED]
  Dept. of  Computing and Software   Tel: 905-525-9140 Ext. 27962
  Faculty of Engineering Fax: 905-524-0340
  McMaster University,   Office: ITB/162
  Hamilton, Ontario  Canada L8S 4K1 
http://www.cas.mcmaster.ca/~leduc

  Most of the time in our world, truth is just opinion. - M.
Ondaatje 


___
evolution maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/evolution



[Evolution] pilot alarms

2002-11-26 Thread Ryan Leduc
Hello,

I'd like  to avoid having an alarm go off on my palm pilot (which I
 sync with) as well as evolution on my screen.  Does anyone know which
 option (display message or play a sound) will not generate an equivalent
 alarm on my pilot?

Ryan

-- 

  Dr. Ryan Leduc
  Assistant ProfessorEmail: [EMAIL PROTECTED]
  Dept. of  Computing and Software   Tel: 905-525-9140 Ext. 27962
  Faculty of Engineering Fax: 905-524-0340
  McMaster University,   Office: ITB/162
  Hamilton, Ontario  Canada L8S 4K1 
http://www.cas.mcmaster.ca/~leduc

  Most of the time in our world, truth is just opinion. - M.
Ondaatje 


___
evolution maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/evolution



Re: [Evolution] No language in spelling checking

2002-11-26 Thread Ing. Vladimir M. Kerka
I have the same problem in debian distro and there is no cooker
packages. When I had gnome-spell package installed, there was a bug.
What am I to do?
Vlada
On Tue, 2002-11-26 at 09:35, Frederic Crozat wrote:
 Le mar 26/11/2002 à 05:03, Steven J. Maddocks a écrit :
  Hello all,
  
  I am running Evolution  1.2 under Mandrake 8.2 with gnome-spell-0.5-1mdk
  installed. I find that the spelling checking doesn't appear to be
  working and when I check Tools-Settings-Composer Preferences-Spell
  Checking, I see no languages listed.
 
 You are doing exactly what you should NOT do : install cooker packages
 (at least gnome-spell-0.5-1mdk and probably more) on a stable distro
 (moreover an old stable distro)..
 
 Either completely upgrade your system to cooker or use Ximian packages
 for Evolution..
 
 Thanks..
-- 
Ing. Vladimir M. Kerka [EMAIL PROTECTED]


___
evolution maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/evolution



Re: [Evolution] twaeking Preferences manually

2002-11-26 Thread guenther
cheers();

   Only in the source.
  k, I will have a look, thx.
  Is it documented or even readable? Or have I to trace a parser? ;)
 not really much of either.

um, forgot to ask: In which files should I start to look at?

...guenther


-- 
char *t=\10pse\0r\0dtu\0.@ghno\x4e\xc8\x79\xf4\xab\x51\x8a\x10\xf4\xf4\xc4;
main(){ char h,m=h=*t++,*x=t+2*h,c,i,l=*x,s=0; for (i=0;il;i++){ i%8? c=1:
(c=*++x); c128  (s+=h); if (!(h=1)||!t[s+h]){ putchar(t[s]);h=m;s=0; }}}


___
evolution maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/evolution



Re: [Evolution] twaeking Preferences manually

2002-11-26 Thread guenther
cheers();

 I think the thread setting is already saved when saving a custom view.

Not for me, just tested it: I Saved a custom view (with Threat) as
Messages and created a new Folder. View Messages but no Threat.


 By the way, I've seen Evolution 1.2.0 hang totally when saving a custom
 view.  The view is saved, but Evo takes 100% CPU after it and never
 returns.  killev and a restart helps.  Anyone else see this?  This was
 on RH8.

Ack. I use Mandrake 9.0.

Saving a View ends up in evolution-mail using every CPU Cycle it can get
and even eating up all my Memory and Swap. You can wath this...

Only killev helps -- but needs some time, after evolution-mail got 70%
of my Memory...

...guenther


-- 
char *t=\10pse\0r\0dtu\0.@ghno\x4e\xc8\x79\xf4\xab\x51\x8a\x10\xf4\xf4\xc4;
main(){ char h,m=h=*t++,*x=t+2*h,c,i,l=*x,s=0; for (i=0;il;i++){ i%8? c=1:
(c=*++x); c128  (s+=h); if (!(h=1)||!t[s+h]){ putchar(t[s]);h=m;s=0; }}}


___
evolution maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/evolution



[Evolution] New Appointment : selecting finish time moves start time one dayback

2002-11-26 Thread Etienne Tourigny
Hi,

when I create a new appointment and I want to change the end time, the
start time moves one day back at 23:00.  

For example, if I double-click 13:00 today, it opens up a new
appointment at 13:00 on the 26th.  When I click on the end time, the
start time becomes 23:00 on the 25th.  

It's really annoying because I have to set the end time and then the
start time (and start day) once again.

Any one else see this?

Is there a work-around aside from reselecting the start time?

I know I can just use the day or week view and drag the bottom edge of
the appointment to the desired end time, but still...

Thanks,

Etienne


___
evolution maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/evolution



Re: [Evolution] ldap protocol problems

2002-11-26 Thread Jason 'vanRijn' Kasper
The server is openldap-1.2.9-5 (an old RH 6.2 box).  And I'm using TLS =
never.  So, it sounds like I'm pretty much out of luck with this version
of openldap?  And did this change between evo 1.0.8 and 1.2.0?

On Mon, 2002-11-25 at 23:29, Chris Toshok wrote:
 At present evolution sets the connection to v3 when it initializes it,
 and there's no setting to drop the protocol to v2.  Which server are you
 running?
 
 The setting is mostly there because of the TLS stuff, so potentially it
 could be done only in the case where use_tls != never.
 
 Chris
 
 On Mon, 2002-11-25 at 06:46, Jason 'vanRijn' Kasper wrote:
  I'm running debian sid and using evolution 1.2.0 with the below LDAP
  versions installed.  Evolution version 1.0.8 used to work just fine and
  dandy with the LDAP server at my work, but 1.2.0 now reports We were
  unable to open this addressbook. This either means you have entered an
  incorrect URI, or the LDAP server is unreachable.  
  
  Mind you, none of my settings for this LDAP server have changed between
  version 1.0.8 (where it was working), and 1.2.0 (where it's not).  
  
  I've played with the command-line ldapsearch utility and it looks to
  me like my LDAP server isn't able to handle protocol version 3, but if I
  force it to use protocol version 2 (by using -P 2), ldapsearch is able
  to talk to the server.  
  
  So, my question...  Is it possible to force evolution to use a specific
  LDAP protocol version for its lookups?  Or, is there a proper way to get
  evolution to talk to my LDAP server again?  =:)
  
  TIA!!
  
  ii  ldap-utils 2.0.23-14  OpenLDAP utilities.
  ii  libldap2   2.0.23-14  OpenLDAP libraries (without TLS support).
  ii  libldap2-dev   2.0.23-14  OpenLDAP development libraries.
-- 

,-//
| Jason 'vanRijn' Kasper ::  Numbers 6:22-26 
 `
 | All brontosauruses are thin at one end, much MUCH thicker 
 | in the middle, and then thin again at the far end.  That is 
 | the theory that I have and which is mine, and what it is too.  
 ,
| bash$ :(){ :|:};:
`--//

___
evolution maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/evolution



Re: [Evolution] Evolution + connector new messages not retrieved

2002-11-26 Thread Christine McLellan




Brian - By any chance do you have any Exchange server side rules (previously created with Outlook) set up on that account that moves or somehow manipulates the messages coming into or going out of the Inbox? 


On Wed, 2002-11-20 at 15:45, Brian Rectanus wrote:

Hello,
  I am using evolution and connector (and all other deps for those two)
rpms.  I wanted to see if any one else has this issue before filing a
bug...

+ Evolution 1.2 w/connector against exchange server
+ Select Inbox and mark any new messages as read (remain in Inbox)
+ Send another message to the account (from another mailer, etc)
+ When evolution checks for new messages the next time or if you
  hit S/R, the new message count goes up for Inbox, but the message
  is not displayed in the list.
+ Setting the get new messages to N minutes or turning it
  off seems to have no effect as clicking S/R manually does 
  the same thing.
+ Moving out of Inbox and back then shows the message in the list.

Also I am not getting consistent result on these issues...

+ Occasionally, marking new messages as read will not update the
  new message count until you hit S/R or the next auto get new
  messages from server is reached.

+ Occasionally, a folder will show a new message count, and when
  displaying that folder, the new message count doubles.  Marking
  the new messages as read halves the new message count.  Then
  doing a S/R clears the new message count.

Can anyone duplicate any of these?

-Brian





[Evolution] Saving the custom print command

2002-11-26 Thread Cormac Long




Folks,
 I asked this a long time ago when Evo was an infant.. but here's another go.. 

is it possible to save the print command so that next time, when you start evo, it does not default back to lpr?

My reasonings:
I use a custom script which wraps rlpr to do the printing.. this is because rlpr, unlike lpr, can pass details via the class field which can be used to instruct the destination HP laser printer to print landscape, 2up 4-up simplex/duplex etc.

Typically in Evo, my printer command appears as follows:

cat /tmp/evo.ps; glpr.sh /tmp/evo.ps

where glpr.sh is my custom rlpr wrapper

I find it real annoying to have to type this in again everytime I start Evolution... Mozilla saves the printer command for me.. so why can't Evo?




Regards,
 Cormac











This email has been scanned for all viruses by the MessageLabs SkyScan
service. For more information on a proactive anti-virus service working
around the clock, around the globe, visit http://www.messagelabs.com




Re: [Evolution] Remaining Image in 1.2

2002-11-26 Thread Etienne Tourigny
On Tue, 2002-11-26 at 20:34, Not Zed wrote:
 On Wed, 2002-11-27 at 02:32, Etienne Tourigny wrote:
  I have seen that also.  Emptying the trash doesn't work, although
  Expunge works.  Has anyone filed a bug report before I do?
 
 yes it is in the bug system.
 
  On Sun, 2002-11-24 at 13:32, Dennis Tuchler wrote:
   Often (not always), when I have deleted the last entry on the list of
   messages, the image of that last message remains in the preview screen
   -- even after new messages are loaded with a later click on
   Send/Receive.
   
   It is annoying.  Is there any way I can prevent this continuation of a
   message in the preview screen?
   

 Hide the message pane.

HAHAHAHAHAHA

another answer could have been use another mailer...

no offense, really,

Etienne


___
evolution maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/evolution



[Evolution] Certificates?

2002-11-26 Thread Bradley Alexander
Similar to Damian's PGP inline vs PGP/MIME question, now that we have
reached the 1.2 milestone, is there any chance of handling certificates
in the near future? Since I work for Verisign, all of the windows people
use their certs to sign/encrypt emails, and it confuses my poor evo
session, and most times I wind up having to download it rather than
reading it in the mailer.

I originally asked this when 1.0 was released, and was given the
projected date of some day... Are we any closer?

Thanks,
-- 
--Brad

Bradley M. Alexander|
Debian Developer, Security Engineer |   storm [at] tux.org
Debian/GNU Linux Developer  |   storm [at] debian.org

Key fingerprints:
DSA 0x54434E65: 37F6 BCA6 621D 920C E02E  E3C8 73B2 C019 5443 4E65
RSA 0xC3BCBA91: 3F 0E 26 C1 90 14 AD 0A  C8 9C F0 93 75 A0 01 34

If Clinton is the answer, it must have been a stupid question.


___
evolution maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/evolution



Re: [Evolution] Palm sync inbox

2002-11-26 Thread Not Zed
On Wed, 2002-11-27 at 09:36, Lonnie Borntreger wrote:
 On Tue, 2002-11-26 at 07:46, Steve Sykes wrote:
  My palm m515 syncs fine except for mail.  The mail stays on the palm
  and doesn't seem to get the mail from Evolution.  The conduit shows
  sendmail active but I must be missing something.  Any ideas?
 
 The sendmail conduit will send any mail you've written on the palm
 through sendmail and out to its recipient.  It does not sync the INBOX. 
 That does not exist AFAIK.

This is correct, we dont support mailbox syncing.



___
evolution maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/evolution



Re: [Evolution] Remaining Image in 1.2

2002-11-26 Thread Not Zed
On Wed, 2002-11-27 at 02:32, Etienne Tourigny wrote:
 I have seen that also.  Emptying the trash doesn't work, although
 Expunge works.  Has anyone filed a bug report before I do?

yes it is in the bug system.

 On Sun, 2002-11-24 at 13:32, Dennis Tuchler wrote:
  Often (not always), when I have deleted the last entry on the list of
  messages, the image of that last message remains in the preview screen
  -- even after new messages are loaded with a later click on
  Send/Receive.
  
  It is annoying.  Is there any way I can prevent this continuation of a
  message in the preview screen?
  
Hide the message pane.



___
evolution maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/evolution



Re: [Evolution] Ximian Connector and Evolution Architecture

2002-11-26 Thread lance lim
Hi ,
is there any where I can get more information about
this, without actually reading the code itself?

Thanks,

lance
--- Not Zed [EMAIL PROTECTED] wrote:
 You should be able to change stuff that doesn't
 involve changing the
 corba idl files, or just about any of the camel
 object definitions.
 
 On Fri, 2002-11-22 at 16:09, lance lim wrote:
  Hi All,
  
  I am a newbie at both Ximian Connector and
 Evolution
  and was wondering how these two components
 actually
  work togther. 
  
  I wanted to customise the Evolution code, however,
 i
  need the Ximian Connector. Since the source code
 for
  Ximian Connector is not available, i am quite
 worried
  that any changes i did will affect the Ximian
  Connector functionality. 
  
  Please advise,
  
  Thanks.
  
  Lance
  
  __
  Do you Yahoo!?
  Yahoo! Mail Plus  Powerful. Affordable. Sign up
 now.
  http://mailplus.yahoo.com
  
  ___
  evolution maillist  -  [EMAIL PROTECTED]
  http://lists.ximian.com/mailman/listinfo/evolution
 


__
Do you Yahoo!?
Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
http://mailplus.yahoo.com

___
evolution maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/evolution