From: Jörg Thalheim <joerg@xxxxxxxxxxx> The error message 'no imap store specified' is misleading because it refers to 'store' when the actual missing configuration is 'imap.folder'. Update the message to use the correct terminology that matches the configuration variable name. This reduces confusion for users who might otherwise look for non-existent 'imap.store' configuration when they see this error. Signed-off-by: Jörg Thalheim <joerg@xxxxxxxxxxx> --- imap-send.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imap-send.c b/imap-send.c index ed4c34dadd..33690cd66a 100644 --- a/imap-send.c +++ b/imap-send.c @@ -1831,7 +1831,7 @@ int cmd_main(int argc, const char **argv) } if (!server.folder) { - fprintf(stderr, "no IMAP store specified\n"); + fprintf(stderr, "no IMAP folder specified\n"); ret = 1; goto out; } -- 2.49.0