Hi all,

I tried the GMime3 branch, but failed to compile it due to an error.  The 
attached patch /seems/ to fix the issue.

However, the code still seems to be broken; I cannot send messages, and all 
signed messages report a broken signature, even if the master branch reports 
them as sane…  Looks like a *huge* amount of work to fix everything! 😕️

Cheers,
Albrecht.
diff --git a/libbalsa/imap/imap-handle.c b/libbalsa/imap/imap-handle.c
index 343b8eb17..b51e53f2d 100644
--- a/libbalsa/imap/imap-handle.c
+++ b/libbalsa/imap/imap-handle.c
@@ -3077,7 +3077,15 @@ ir_envelope(NetClientSioBuf *sio, ImapEnvelope *env)
 
   date = imap_get_nstring(sio);
   if(date) {
-    if(env) env->date = g_mime_utils_header_decode_date(date, NULL);
+    if (env != NULL) {
+      GDateTime *header_date;
+
+      header_date = g_mime_utils_header_decode_date(date);
+      if (header_date != NULL) {
+        env->date = (time_t) g_date_time_to_unix(header_date);
+        g_date_time_unref(header_date);
+      }
+    }
     g_free(date);
   }
   if( (c=sio_getc(sio)) != ' ') return IMR_PROTOCOL;

Attachment: pgpOHm0fXTFng.pgp
Description: PGP signature

_______________________________________________
balsa-list mailing list
[email protected]
https://mail.gnome.org/mailman/listinfo/balsa-list

Reply via email to