aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1996-09-28 12:50:26 +0000
committerEric S. Raymond <esr@thyrsus.com>1996-09-28 12:50:26 +0000
commit7a9617968ba3bd58a0388559ac9020a4622181b1 (patch)
treeb5779b04c10badf567cfc86ac35b8b7cdbe5fec0
parent482878528c9ef482583666e53aad69bae3128820 (diff)
downloadfetchmail-7a9617968ba3bd58a0388559ac9020a4622181b1.tar.gz
fetchmail-7a9617968ba3bd58a0388559ac9020a4622181b1.tar.bz2
fetchmail-7a9617968ba3bd58a0388559ac9020a4622181b1.zip
Change the autoproble order.
svn path=/trunk/; revision=170
-rw-r--r--fetchmail.c4
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 */