Skip to content

Commit 6746a5d

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 a45f924 commit 6746a5d

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
@@ -1596,7 +1596,8 @@ static int append_msgs_to_imap(struct imap_server_conf *server,
15961596
}
15971597
ctx->name = server->folder;
15981598

1599-
fprintf(stderr, "Sending %d message%s\n", total, (total != 1) ? "s" : "");
1599+
fprintf(stderr, "Sending %d message%s to %s folder...\n",
1600+
total, (total != 1) ? "s" : "", server->folder);
16001601
while (1) {
16011602
unsigned percent = n * 100 / total;
16021603

@@ -1704,7 +1705,8 @@ static int curl_append_msgs_to_imap(struct imap_server_conf *server,
17041705
curl = setup_curl(server, &cred);
17051706
curl_easy_setopt(curl, CURLOPT_READDATA, &msgbuf);
17061707

1707-
fprintf(stderr, "Sending %d message%s\n", total, (total != 1) ? "s" : "");
1708+
fprintf(stderr, "Sending %d message%s to %s folder...\n",
1709+
total, (total != 1) ? "s" : "", server->folder);
17081710
while (1) {
17091711
unsigned percent = n * 100 / total;
17101712
int prev_len;

0 commit comments

Comments
 (0)