bugs + fixes in balsa



Hi all,

I noticed a few small bugs in balsa

1) when configuring libmutt, the test for the path of sendmail was failing
because configure.in was replacing the :'s in $PATH with spaces, which is
not what autoconf expects (according the the info file, and my
experiments).

2) when removing the first item from the list of POP3 servers in the Mail
Servers tab of the preferences the list would be filled with garbage.

I've attached a patch small patch to fix these two problems....

Ta,
Ian

Index: libmutt/configure.in
===================================================================
RCS file: /cvs/gnome/balsa/libmutt/configure.in,v
retrieving revision 1.14
diff -u -r1.14 configure.in
--- configure.in	1998/09/06 18:38:01	1.14
+++ configure.in	1999/01/11 19:35:49
@@ -37,7 +37,7 @@
 	;;
 esac
 
-AC_PATH_PROG(SENDMAIL, sendmail, no, `echo $PATH | sed "s/:/ /"` /usr/sbin /usr/lib)
+AC_PATH_PROG(SENDMAIL, sendmail, no, $PATH:/usr/sbin:/usr/lib)
 AC_DEFINE_UNQUOTED(SENDMAIL, "$ac_cv_path_SENDMAIL")
 
 AC_PATH_PROG(ISPELL, ispell, no)
Index: src/mailbox-conf.c
===================================================================
RCS file: /cvs/gnome/balsa/src/mailbox-conf.c,v
retrieving revision 1.38
diff -u -r1.38 mailbox-conf.c
--- mailbox-conf.c	1998/12/16 04:04:16	1.38
+++ mailbox-conf.c	1999/01/11 19:35:50
@@ -183,7 +183,7 @@
   /* Don't forget to remove the node from balsa's mailbox list */
   if (mailbox->type == MAILBOX_POP3)
     {
-      g_list_remove (balsa_app.inbox_input, mailbox);
+      balsa_app.inbox_input = g_list_remove (balsa_app.inbox_input, mailbox);
     }
   else
     {


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