Skip to content

Commit a5c44fd

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 c974275 commit a5c44fd

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
@@ -1557,7 +1557,8 @@ static int append_msgs_to_imap(struct imap_server_conf *server,
15571557
}
15581558
ctx->name = server->folder;
15591559

1560-
fprintf(stderr, "Sending %d message%s\n", total, (total != 1) ? "s" : "");
1560+
fprintf(stderr, "Sending %d message%s to %s folder...\n",
1561+
total, (total != 1) ? "s" : "", server->folder);
15611562
while (1) {
15621563
unsigned percent = n * 100 / total;
15631564

@@ -1671,7 +1672,8 @@ static int curl_append_msgs_to_imap(struct imap_server_conf *server,
16711672
curl = setup_curl(server, &cred);
16721673
curl_easy_setopt(curl, CURLOPT_READDATA, &msgbuf);
16731674

1674-
fprintf(stderr, "Sending %d message%s\n", total, (total != 1) ? "s" : "");
1675+
fprintf(stderr, "Sending %d message%s to %s folder...\n",
1676+
total, (total != 1) ? "s" : "", server->folder);
16751677
while (1) {
16761678
unsigned percent = n * 100 / total;
16771679
int prev_len;

0 commit comments

Comments
 (0)