balsa r7928 - in trunk: . libbalsa



Author: pawels
Date: Sat May 31 13:06:22 2008
New Revision: 7928
URL: http://svn.gnome.org/viewvc/balsa?rev=7928&view=rev

Log:
* configure.in, NEWS: release 2.3.24.

Modified:
   trunk/ChangeLog
   trunk/NEWS
   trunk/configure.in
   trunk/libbalsa/address-book-ldap.c
   trunk/libbalsa/mailbox_imap.c

Modified: trunk/NEWS
==============================================================================
--- trunk/NEWS	(original)
+++ trunk/NEWS	Sat May 31 13:06:22 2008
@@ -1,3 +1,10 @@
+* Balsa-2.3.24 release. Release date 2008-05-31
+
+- Support for accessing files over gnome-vfs (smb, ssh mounts, etc.)
+- maildir tree scanning fixes.
+- Rudimentary support for sending text/html messages.
+- UIDPLUS IMAP extension support.
+
 * Balsa-2.3.23 release. Release date 2008-03-20
 
 - Suppport for IMAP MULTIAPPEND extension for faster uploading of

Modified: trunk/configure.in
==============================================================================
--- trunk/configure.in	(original)
+++ trunk/configure.in	Sat May 31 13:06:22 2008
@@ -12,7 +12,7 @@
 SCROLLKEEPER_REQUIRED=0.1.4
 BALSA_MAJOR=2
 BALSA_REVISION=3
-BALSA_PATCHLEVEL=23
+BALSA_PATCHLEVEL=24
 BALSA_VERSION="$BALSA_MAJOR.$BALSA_REVISION.${BALSA_PATCHLEVEL}"
 
 AC_SUBST(BALSA_MAJOR)

Modified: trunk/libbalsa/address-book-ldap.c
==============================================================================
--- trunk/libbalsa/address-book-ldap.c	(original)
+++ trunk/libbalsa/address-book-ldap.c	Sat May 31 13:06:22 2008
@@ -604,6 +604,12 @@
 	    return LBABERR_CANNOT_CONNECT;
     }
 
+    if(ldap_ab->priv_book_dn == NULL) {
+        libbalsa_address_book_set_status
+            (ab, _("Undefined location of user address book"));
+        return LBABERR_CANNOT_WRITE;
+    }                                    
+
     dn = g_strdup_printf("mail=%s,%s",
                          (char*)address->address_list->data,
                          ldap_ab->priv_book_dn);

Modified: trunk/libbalsa/mailbox_imap.c
==============================================================================
--- trunk/libbalsa/mailbox_imap.c	(original)
+++ trunk/libbalsa/mailbox_imap.c	Sat May 31 13:06:22 2008
@@ -2757,9 +2757,9 @@
 {
     gchar *fname = libbalsa_urlencode(name);
     gchar *dst = g_build_filename(cache_dir, fname, NULL);
-    if(link(src, dst) == 0) {
-	printf("Cache %s linked.\n", fname);
-    } else {
+    if(link(src, dst) != 0) {
+	/* Link failed possibly because the two caches reside on
+	   different file systems. We attempt to copy the cache instead. */
 	FILE *in  = fopen(src, "r");
 
 	if(in) {
@@ -2778,7 +2778,6 @@
 	    }
 	    fclose(in);
 	}
-	printf("Cache %s copied to.\n", fname);
     }
     g_free(fname);
     g_free(dst);



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