David Clack, Ocean Shores, WA Netbooks Plus Java

Sunday Sep 06, 2009

Hi All,

 For anyone who has built Evolution 2.27.90+ , you may have found that the signatures don't stick to email account through restarts.

They have just posted a patch in bugzilla

Bug 593872 - Evolution forgets which signatures are assigned to which accounts

 I've patched my system and it works.

diff --git a/e-util/e-signature.c b/e-util/e-signature.c
index 1b22dba..2d8da48 100644
--- a/e-util/e-signature.c
+++ b/e-util/e-signature.c
@@ -445,8 +445,13 @@ e_signature_set_from_xml (ESignature *signature, const gchar *xml)
 		return FALSE;
 	}
 
-	if (!signature->priv->uid)
-		xml_set_prop (node, "uid", &signature->priv->uid);
+	buf = NULL;
+	xml_set_prop (node, "uid", &buf);
+
+	if (buf && *buf) {
+		g_free (signature->priv->uid);
+		signature->priv->uid = buf;
+	}
 
 	changed |= xml_set_prop (node, "name", &signature->priv->name);
 	changed |= xml_set_bool (node, "auto", &signature->priv->autogenerated);
Comments:

Post a Comment:
  • HTML Syntax: NOT allowed