diff options
-rw-r--r-- | fetchmail.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fetchmail.c b/fetchmail.c index 5b59db47..41e07cfa 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -302,9 +302,9 @@ int proto; } /* - * Sequence of protocols to try when autoprobing + * Sequence of protocols to try when autoprobing, most capable to least. */ -static const int autoprobe[] = {P_POP3, P_IMAP, P_POP2}; +static const int autoprobe[] = {P_IMAP, P_POP3, P_POP2}; int query_host(queryctl) /* perform fetch transaction with single host */ |