From d376761edb3f147d55a7a9d7fa57c1d1e85ce357 Mon Sep 17 00:00:00 2001 From: Thelonius Kort Date: Mon, 19 Jan 2026 12:12:36 +0100 Subject: [PATCH] Add --addheader option to make sure drafts are synced --- imapsync.nu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imapsync.nu b/imapsync.nu index a398f1b..e9e189f 100755 --- a/imapsync.nu +++ b/imapsync.nu @@ -44,7 +44,7 @@ def "main synchronize" [conffile] { print $" host1: ($u.host1), user1: ($u.user1)," print $" host2: ($u.host2), user2: ($u.user2)\n" - imapsync --syncinternaldates --host1 $u.host1 --user1 $u.user1 --password1 $u.password1 --host2 $u.host2 --user2 $u.user2 --password2 $u.password2 | print + imapsync --syncinternaldates --addheader --host1 $u.host1 --user1 $u.user1 --password1 $u.password1 --host2 $u.host2 --user2 $u.user2 --password2 $u.password2 | print } ) ""