[Commits] [SCM] claws branch, master, updated. 3.18.0-36-g45c006c4c

jonathan at claws-mail.org jonathan at claws-mail.org
Wed Aug 18 18:34:05 UTC 2021


The branch, master has been updated
       via  45c006c4c5b21c05426ad76f5474a338b717beb7 (commit)
       via  7d32a0740130b774e2cce129ca36c63c2f99a3ec (commit)
      from  3f50806b1cf12379e673b3510a60c41303fc8f8f (commit)

Summary of changes:
 src/messageview.c                      | 6 ++++--
 src/plugins/litehtml_viewer/lh_prefs.c | 1 +
 2 files changed, 5 insertions(+), 2 deletions(-)


- Log -----------------------------------------------------------------
commit 45c006c4c5b21c05426ad76f5474a338b717beb7
Author: Jonathan Boeing <jonathan at claws-mail.org>
Date:   Wed Aug 18 09:48:37 2021 -0700

    Fix return receipts from accounts without a name
    
    Use the chosen account's address for the return receipt if the account
    name isn't set

diff --git a/src/messageview.c b/src/messageview.c
index 3a6184f98..01024f9ff 100644
--- a/src/messageview.c
+++ b/src/messageview.c
@@ -964,8 +964,10 @@ static gint disposition_notification_send(MsgInfo *msginfo)
 		}
 		g_free(buf);
 		buf = NULL;
-	} else
-		goto FILE_ERROR;
+	} else {
+		if (fprintf(fp, "From: %s\n", account->address) < 0)
+			goto FILE_ERROR;
+	}
 
 	if (fprintf(fp, "To: %s\n", to) < 0)
 		goto FILE_ERROR;

commit 7d32a0740130b774e2cce129ca36c63c2f99a3ec
Author: Jonathan Boeing <jonathan at claws-mail.org>
Date:   Tue Aug 17 12:22:57 2021 -0700

    Make litehtml image cache size preference visible

diff --git a/src/plugins/litehtml_viewer/lh_prefs.c b/src/plugins/litehtml_viewer/lh_prefs.c
index c43abbd7b..1d9ee5939 100644
--- a/src/plugins/litehtml_viewer/lh_prefs.c
+++ b/src/plugins/litehtml_viewer/lh_prefs.c
@@ -140,6 +140,7 @@ static void create_lh_prefs_page(PrefsPage *page, GtkWindow *window,
 	gtk_spin_button_set_value(GTK_SPIN_BUTTON(image_cache_size),
 			lh_prefs.image_cache_size);
 	gtk_box_pack_start(GTK_BOX(hbox), image_cache_size, FALSE, FALSE, 0);
+	gtk_widget_show_all(hbox);
 
 	/* Font */
 	hbox = gtk_hbox_new(FALSE, 8);

-----------------------------------------------------------------------


hooks/post-receive
-- 
Claws Mail


More information about the Commits mailing list