Skip to content

Commit 9f078f6

Browse files
AdityaGarg8gitster
authored andcommitted
imap-send: display the destination mailbox when sending a message
Whenever we sent a message using the `imap-send` command, it would display a log showing the number of messages which are to be sent. For example: sending 1 message 100% (1/1) done This had been made more informative by adding the name of the destination folder as well: Sending 1 message to Drafts folder... 100% (1/1) done Signed-off-by: Aditya Garg <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent c4cd979 commit 9f078f6

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

imap-send.c

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1563,7 +1563,8 @@ static int append_msgs_to_imap(struct imap_server_conf *server,
15631563
}
15641564
ctx->name = server->folder;
15651565

1566-
fprintf(stderr, "sending %d message%s\n", total, (total != 1) ? "s" : "");
1566+
fprintf(stderr, "Sending %d message%s to %s folder...\n",
1567+
total, (total != 1) ? "s" : "", server->folder);
15671568
while (1) {
15681569
unsigned percent = n * 100 / total;
15691570

@@ -1699,7 +1700,8 @@ static int curl_append_msgs_to_imap(struct imap_server_conf *server,
16991700

17001701
curl_easy_setopt(curl, CURLOPT_READDATA, &msgbuf);
17011702

1702-
fprintf(stderr, "sending %d message%s\n", total, (total != 1) ? "s" : "");
1703+
fprintf(stderr, "Sending %d message%s to %s folder...\n",
1704+
total, (total != 1) ? "s" : "", server->folder);
17031705
while (1) {
17041706
unsigned percent = n * 100 / total;
17051707
int prev_len;

0 commit comments

Comments
 (0)