[evolution-patches] sending email problem



Dear Rogrigo,
   I found a problem on the email delivery. Would you please help me to
check it?

   When I create a new appointment and make a email alarm for it, the
sending message doesn't deliver to the server backend.
   Stepping into the source code, I found a problem in file
gui/dialogs/alarm-options.c(malarm_widgets_to_alarm). When filling the
mail alarm data with the values from the widgets, we get the description
message from dialog->dalarm_description instead of
dialog->malarm_description.
   I think this maybe the problem, so I give a patch for it.

Thanks a lot.

Best regards.
Alfred Peng
Index: gui/dialogs/alarm-options.c
===================================================================
RCS file: /cvs/gnome/evolution/calendar/gui/dialogs/alarm-options.c,v
retrieving revision 1.22
diff -u -r1.22 alarm-options.c
--- gui/dialogs/alarm-options.c	1 Dec 2003 22:14:25 -0000	1.22
+++ gui/dialogs/alarm-options.c	22 Mar 2004 07:39:29 -0000
@@ -649,7 +649,7 @@
 	eab_destination_freev (destv);	
 
 	/* Description */
-	text_buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (dialog->dalarm_description));
+	text_buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (dialog->malarm_description));
 	gtk_text_buffer_get_start_iter (text_buffer, &text_iter_start);
 	gtk_text_buffer_get_end_iter   (text_buffer, &text_iter_end);
 	str = gtk_text_buffer_get_text (text_buffer, &text_iter_start, &text_iter_end, FALSE);


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]