Skip to content

Commit 067a91b

Browse files
AdityaGarg8gitster
authored andcommitted
imap-send: add ability to list the available folders
Various IMAP servers have different ways to name common folders. For example, the folder where all deleted messages are stored is often named "[Gmail]/Trash" on Gmail servers, and "Deleted" on Outlook. Similarly, the Drafts folder is simply named "Drafts" on Outlook, but on Gmail it is named "[Gmail]/Drafts". This commit adds a `--list` command to the `imap-send` tool that lists the available folders on the IMAP server, allowing users to see which folders are available and how they are named. A sample output looks like this when run against a Gmail server: Fetching the list of available folders... * LIST (\HasNoChildren) "/" "INBOX" * LIST (\HasChildren \Noselect) "/" "[Gmail]" * LIST (\All \HasNoChildren) "/" "[Gmail]/All Mail" * LIST (\Drafts \HasNoChildren) "/" "[Gmail]/Drafts" * LIST (\HasNoChildren \Important) "/" "[Gmail]/Important" * LIST (\HasNoChildren \Sent) "/" "[Gmail]/Sent Mail" * LIST (\HasNoChildren \Junk) "/" "[Gmail]/Spam" * LIST (\Flagged \HasNoChildren) "/" "[Gmail]/Starred" * LIST (\HasNoChildren \Trash) "/" "[Gmail]/Trash" For OpenSSL, this is achived by running the 'IMAP LIST' command and parsing the response. This command is specified in RFC6154: https://datatracker.ietf.org/doc/html/rfc6154#section-5.1 For libcurl, the example code published in the libcurl documentation is used to implement this functionality: https://curl.se/libcurl/c/imap-list.html Signed-off-by: Aditya Garg <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 3168514 commit 067a91b

File tree

2 files changed

+87
-17
lines changed

2 files changed

+87
-17
lines changed

Documentation/git-imap-send.adoc

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ SYNOPSIS
1010
--------
1111
[verse]
1212
'git imap-send' [-v] [-q] [--[no-]curl] [(--folder|-f) <folder>]
13+
'git imap-send' --list
1314

1415

1516
DESCRIPTION
@@ -54,6 +55,8 @@ OPTIONS
5455
using libcurl. Ignored if Git was built with the NO_OPENSSL option
5556
set.
5657

58+
--list::
59+
Run the IMAP LIST command to output a list of all the folders present.
5760

5861
CONFIGURATION
5962
-------------
@@ -123,7 +126,8 @@ it. Alternatively, use OAuth2.0 authentication as described below.
123126

124127
[NOTE]
125128
You might need to instead use: `folder = "[Google Mail]/Drafts"` if you get an error
126-
that the "Folder doesn't exist".
129+
that the "Folder doesn't exist". You can also run `git imap-send --list` to get a
130+
list of available folders.
127131

128132
[NOTE]
129133
If your Gmail account is set to another language than English, the name of the "Drafts"

imap-send.c

Lines changed: 82 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,21 @@
4545
#endif
4646

4747
static int verbosity;
48+
static int list_folders;
4849
static int use_curl = USE_CURL_DEFAULT;
4950
static char *opt_folder;
5051

51-
static const char * const imap_send_usage[] = { "git imap-send [-v] [-q] [--[no-]curl] [(--folder|-f) <folder>] < <mbox>", NULL };
52+
static char const * const imap_send_usage[] = {
53+
N_("git imap-send [-v] [-q] [--[no-]curl] [(--folder|-f) <folder>] < <mbox>"),
54+
"git imap-send --list",
55+
NULL
56+
};
5257

5358
static struct option imap_send_options[] = {
5459
OPT__VERBOSITY(&verbosity),
5560
OPT_BOOL(0, "curl", &use_curl, "use libcurl to communicate with the IMAP server"),
5661
OPT_STRING('f', "folder", &opt_folder, "folder", "specify the IMAP folder"),
62+
OPT_BOOL(0, "list", &list_folders, "list all folders on the IMAP server"),
5763
OPT_END()
5864
};
5965

@@ -429,7 +435,7 @@ static int buffer_gets(struct imap_buffer *b, char **s)
429435
if (b->buf[b->offset + 1] == '\n') {
430436
b->buf[b->offset] = 0; /* terminate the string */
431437
b->offset += 2; /* next line */
432-
if (0 < verbosity)
438+
if ((0 < verbosity) || (list_folders && strstr(*s, "* LIST")))
433439
puts(*s);
434440
return 0;
435441
}
@@ -1572,6 +1578,26 @@ static int append_msgs_to_imap(struct imap_server_conf *server,
15721578
return 0;
15731579
}
15741580

1581+
static int list_imap_folders(struct imap_server_conf *server)
1582+
{
1583+
struct imap_store *ctx = imap_open_store(server, "INBOX");
1584+
if (!ctx) {
1585+
fprintf(stderr, "failed to connect to IMAP server\n");
1586+
return 1;
1587+
}
1588+
1589+
fprintf(stderr, "Fetching the list of available folders...\n");
1590+
/* Issue the LIST command and print the results */
1591+
if (imap_exec(ctx, NULL, "LIST \"\" \"*\"") != RESP_OK) {
1592+
fprintf(stderr, "failed to list folders\n");
1593+
imap_close_store(ctx);
1594+
return 1;
1595+
}
1596+
1597+
imap_close_store(ctx);
1598+
return 0;
1599+
}
1600+
15751601
#ifdef USE_CURL_FOR_IMAP_SEND
15761602
static CURL *setup_curl(struct imap_server_conf *srvc, struct credential *cred)
15771603
{
@@ -1605,11 +1631,13 @@ static CURL *setup_curl(struct imap_server_conf *srvc, struct credential *cred)
16051631
if (!path.len || path.buf[path.len - 1] != '/')
16061632
strbuf_addch(&path, '/');
16071633

1608-
uri_encoded_folder = curl_easy_escape(curl, srvc->folder, 0);
1609-
if (!uri_encoded_folder)
1610-
die("failed to encode server folder");
1611-
strbuf_addstr(&path, uri_encoded_folder);
1612-
curl_free(uri_encoded_folder);
1634+
if (!list_folders) {
1635+
uri_encoded_folder = curl_easy_escape(curl, srvc->folder, 0);
1636+
if (!uri_encoded_folder)
1637+
die("failed to encode server folder");
1638+
strbuf_addstr(&path, uri_encoded_folder);
1639+
curl_free(uri_encoded_folder);
1640+
}
16131641

16141642
curl_easy_setopt(curl, CURLOPT_URL, path.buf);
16151643
strbuf_release(&path);
@@ -1640,10 +1668,6 @@ static CURL *setup_curl(struct imap_server_conf *srvc, struct credential *cred)
16401668
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, srvc->ssl_verify);
16411669
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, srvc->ssl_verify);
16421670

1643-
curl_easy_setopt(curl, CURLOPT_READFUNCTION, fread_buffer);
1644-
1645-
curl_easy_setopt(curl, CURLOPT_UPLOAD, 1L);
1646-
16471671
if (0 < verbosity || getenv("GIT_CURL_VERBOSE"))
16481672
http_trace_curl_no_data();
16491673
setup_curl_trace(curl);
@@ -1662,6 +1686,10 @@ static int curl_append_msgs_to_imap(struct imap_server_conf *server,
16621686
struct credential cred = CREDENTIAL_INIT;
16631687

16641688
curl = setup_curl(server, &cred);
1689+
1690+
curl_easy_setopt(curl, CURLOPT_READFUNCTION, fread_buffer);
1691+
curl_easy_setopt(curl, CURLOPT_UPLOAD, 1L);
1692+
16651693
curl_easy_setopt(curl, CURLOPT_READDATA, &msgbuf);
16661694

16671695
fprintf(stderr, "sending %d message%s\n", total, (total != 1) ? "s" : "");
@@ -1707,6 +1735,31 @@ static int curl_append_msgs_to_imap(struct imap_server_conf *server,
17071735

17081736
return res != CURLE_OK;
17091737
}
1738+
1739+
static int curl_list_imap_folders(struct imap_server_conf *server)
1740+
{
1741+
CURL *curl;
1742+
CURLcode res = CURLE_OK;
1743+
struct credential cred = CREDENTIAL_INIT;
1744+
1745+
fprintf(stderr, "Fetching the list of available folders...\n");
1746+
curl = setup_curl(server, &cred);
1747+
res = curl_easy_perform(curl);
1748+
1749+
curl_easy_cleanup(curl);
1750+
curl_global_cleanup();
1751+
1752+
if (cred.username) {
1753+
if (res == CURLE_OK)
1754+
credential_approve(the_repository, &cred);
1755+
else if (res == CURLE_LOGIN_DENIED)
1756+
credential_reject(the_repository, &cred);
1757+
}
1758+
1759+
credential_clear(&cred);
1760+
1761+
return res != CURLE_OK;
1762+
}
17101763
#endif
17111764

17121765
int cmd_main(int argc, const char **argv)
@@ -1747,11 +1800,6 @@ int cmd_main(int argc, const char **argv)
17471800
if (!server.port)
17481801
server.port = server.use_ssl ? 993 : 143;
17491802

1750-
if (!server.folder) {
1751-
fprintf(stderr, "no imap store specified\n");
1752-
ret = 1;
1753-
goto out;
1754-
}
17551803
if (!server.host) {
17561804
if (!server.tunnel) {
17571805
fprintf(stderr, "no imap host specified\n");
@@ -1761,6 +1809,24 @@ int cmd_main(int argc, const char **argv)
17611809
server.host = xstrdup("tunnel");
17621810
}
17631811

1812+
if (list_folders) {
1813+
if (server.tunnel)
1814+
ret = list_imap_folders(&server);
1815+
#ifdef USE_CURL_FOR_IMAP_SEND
1816+
else if (use_curl)
1817+
ret = curl_list_imap_folders(&server);
1818+
#endif
1819+
else
1820+
ret = list_imap_folders(&server);
1821+
goto out;
1822+
}
1823+
1824+
if (!server.folder) {
1825+
fprintf(stderr, "no imap store specified\n");
1826+
ret = 1;
1827+
goto out;
1828+
}
1829+
17641830
/* read the messages */
17651831
if (strbuf_read(&all_msgs, 0, 0) < 0) {
17661832
error_errno(_("could not read from stdin"));

0 commit comments

Comments
 (0)