Skip to content

Commit 1d304ce

Browse files
Mic92gitster
authored andcommitted
imap-send: fix confusing 'store' terminology in error message
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 <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 0ed16dc commit 1d304ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

imap-send.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1824,7 +1824,7 @@ int cmd_main(int argc, const char **argv)
18241824
}
18251825

18261826
if (!server.folder) {
1827-
fprintf(stderr, "no IMAP store specified\n");
1827+
fprintf(stderr, "no IMAP folder specified\n");
18281828
ret = 1;
18291829
goto out;
18301830
}

0 commit comments

Comments
 (0)