diff options
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | imap.c | 4 | ||||
-rw-r--r-- | pop2.c | 4 | ||||
-rw-r--r-- | pop3.c | 4 |
4 files changed, 7 insertions, 7 deletions
@@ -28,7 +28,7 @@ fetchmail-4.0 (): * Values of --limit, --fetchlimit, and --batchlimit in .fetchmailrc can now be overridden from the command line by specifying an explicit option of 0. * Architecture-independent RPM building. -* Work with the MercuryP/NLM v1.31 POP3 daenon (thanks to Pavel Kankovsky) +* Work with the MercuryP/NLM v1.31 POP3 daemon (thanks to Pavel Kankovsky). There are 258 people on the fetchmail-friends list. @@ -621,8 +621,8 @@ const static struct method imap = { "IMAP", /* Internet Message Access Protocol */ 143, /* standard IMAP2bis/IMAP4 port */ - 1, /* this is a tagged protocol */ - 0, /* no message delimiter */ + TRUE, /* this is a tagged protocol */ + FALSE, /* no message delimiter */ imap_ok, /* parse command response */ imap_getauth, /* get authorization */ imap_getrange, /* query range of messages */ @@ -118,8 +118,8 @@ const static struct method pop2 = { "POP2", /* Post Office Protocol v2 */ 109, /* standard POP2 port */ - 0, /* this is not a tagged protocol */ - 0, /* does not use message delimiter */ + FALSE, /* this is not a tagged protocol */ + FALSE, /* does not use message delimiter */ pop2_ok, /* parse command response */ pop2_getauth, /* get authorization */ pop2_getrange, /* query range of messages */ @@ -280,8 +280,8 @@ const static struct method pop3 = { "POP3", /* Post Office Protocol v3 */ 110, /* standard POP3 port */ - 0, /* this is not a tagged protocol */ - 1, /* this uses a message delimiter */ + FALSE, /* this is not a tagged protocol */ + TRUE, /* this uses a message delimiter */ pop3_ok, /* parse command response */ pop3_getauth, /* get authorization */ pop3_getrange, /* query range of messages */ |