aboutsummaryrefslogtreecommitdiffstats
path: root/fetchmail.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1996-09-27 18:16:59 +0000
committerEric S. Raymond <esr@thyrsus.com>1996-09-27 18:16:59 +0000
commitcdb4193b2cc7c184a130d09bab8504cf4b06a2cf (patch)
tree39c0672ac567f92dde66a6e480b6f7b7eda37ae2 /fetchmail.c
parent57b5532525a697702cb275bc21df8eacd24b2c91 (diff)
downloadfetchmail-cdb4193b2cc7c184a130d09bab8504cf4b06a2cf.tar.gz
fetchmail-cdb4193b2cc7c184a130d09bab8504cf4b06a2cf.tar.bz2
fetchmail-cdb4193b2cc7c184a130d09bab8504cf4b06a2cf.zip
We know APOP works. Also add a POP3 optimization.
svn path=/trunk/; revision=165
Diffstat (limited to 'fetchmail.c')
-rw-r--r--fetchmail.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/fetchmail.c b/fetchmail.c
index 4fb4d07d..15cf8a0e 100644
--- a/fetchmail.c
+++ b/fetchmail.c
@@ -410,8 +410,10 @@ struct hostrec *queryctl;
if (queryctl->password[0] == '\0')
printf(" Password will be prompted for.\n");
else if (outlevel == O_VERBOSE)
- if (queryctl->protocol == P_RPOP)
- printf(" RPOP id = '%s'\n", queryctl->password);
+ if (queryctl->protocol == P_APOP)
+ printf(" APOP secret = '%s'\n", queryctl->password);
+ else if (queryctl->protocol == P_RPOP)
+ printf(" RPOP secret = '%s'\n", queryctl->password);
else
printf(" Password = '%s'\n", queryctl->password);
printf(" Protocol is %s", showproto(queryctl->protocol));