diff src/pop3/client.c @ 2719:f8adc5cb2508 HEAD

Renamed pop3_mails_keep_recent to pop3_no_flag_updates which includes not updating seen-flag.
author Timo Sirainen <tss@iki.fi>
date Sun, 10 Oct 2004 17:32:32 +0300
parents c710572d7075
children 8c5bcd6585a4
line wrap: on
line diff
--- a/src/pop3/client.c	Sun Oct 10 17:21:07 2004 +0300
+++ b/src/pop3/client.c	Sun Oct 10 17:32:32 2004 +0300
@@ -211,7 +211,7 @@
 	mail_storage_set_callbacks(storage, &mail_storage_callbacks, client);
 
 	flags = 0;
-	if (getenv("POP3_MAILS_KEEP_RECENT") != NULL)
+	if (no_flag_updates)
 		flags |= MAILBOX_OPEN_KEEP_RECENT;
 	client->mailbox = mailbox_open(storage, "INBOX", flags);
 	if (client->mailbox == NULL) {