about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--imbox.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/imbox.c b/imbox.c
index ebbe234..850e9b8 100644
--- a/imbox.c
+++ b/imbox.c
@@ -181,7 +181,7 @@ int tlsClose(void *_tls) {
 	X(Bad, "BAD") \
 	X(Bye, "BYE") \
 	X(Login, "LOGIN") \
-	X(Select, "SELECT") \
+	X(Examine, "EXAMINE") \
 	X(Search, "SEARCH") \
 	X(Fetch, "FETCH")
 
@@ -312,9 +312,9 @@ int main(int argc, char *argv[]) {
 				login = true;
 			}
 			break; case Login: {
-				fprintf(imap, "%s SELECT %s\r\n", Atoms[Select], mailbox);
+				fprintf(imap, "%s EXAMINE %s\r\n", Atoms[Examine], mailbox);
 			}
-			break; case Select: {
+			break; case Examine: {
 				fprintf(imap, "%s UID SEARCH CHARSET UTF-8", Atoms[Search]);
 				if (subject) fprintf(imap, " SUBJECT \"%s\"", subject);
 				if (from) fprintf(imap, " FROM \"%s\"", from);