about summary refs log tree commit diff
path: root/imbox.c
diff options
context:
space:
mode:
Diffstat (limited to 'imbox.c')
-rw-r--r--imbox.c4
1 files changed, 2 insertions, 2 deletions
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);