From c6de16f5a91170f7d9749c45cd06a28f528f786d Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Wed, 3 Mar 2021 17:30:55 -0500 Subject: Move default Subject criterion to git-fetch-email This allows imbox with no criteria to fetch all mail in a mailbox, and the use of git fetch-email --no-subject to do the same. --- imbox.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'imbox.c') diff --git a/imbox.c b/imbox.c index d3c2bf5..1f65517 100644 --- a/imbox.c +++ b/imbox.c @@ -80,7 +80,7 @@ int main(int argc, char *argv[]) { const char *port = "imaps"; const char *mailbox = "INBOX"; - const char *subject = "[PATCH"; + const char *subject = NULL; const char *from = NULL; const char *to = NULL; const char *cc = NULL; @@ -146,7 +146,7 @@ int main(int argc, char *argv[]) { search:; struct List nums = {0}; enum Atom search = atom("search"); - fprintf(imap.w, "%s SEARCH CHARSET UTF-8", Atoms[search]); + fprintf(imap.w, "%s SEARCH CHARSET UTF-8 ALL", Atoms[search]); if (subject) fprintf(imap.w, " SUBJECT \"%s\"", subject); if (from) fprintf(imap.w, " FROM \"%s\"", from); if (to) fprintf(imap.w, " TO \"%s\"", to); -- cgit 1.4.1