diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-09-13 16:39:22 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-09-13 16:39:22 +0000 |
commit | 0f6b6bf411d16e063b9d37352d03887bf3055c26 (patch) | |
tree | 8a6ce5c483764902d737df71d986ce5838acfe32 /fetchmail.c | |
parent | a43b8133fd524395bf38ff7d7576dad197c11747 (diff) | |
download | fetchmail-0f6b6bf411d16e063b9d37352d03887bf3055c26.tar.gz fetchmail-0f6b6bf411d16e063b9d37352d03887bf3055c26.tar.bz2 fetchmail-0f6b6bf411d16e063b9d37352d03887bf3055c26.zip |
Add RPOP support.
svn path=/trunk/; revision=94
Diffstat (limited to 'fetchmail.c')
-rw-r--r-- | fetchmail.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/fetchmail.c b/fetchmail.c index d3645db1..64321b8a 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -373,7 +373,10 @@ struct hostrec *queryctl; char *cp; printf(" Username = '%s'\n", queryctl->remotename); - printf(" Password = '%s'\n", queryctl->password); + if (queryctl->password) + printf(" Password = '%s'\n", queryctl->password); + if (queryctl->rpopid) + printf(" RPOP id = '%s'\n", queryctl->rpopid); printf(" Protocol is %s", showproto(queryctl->protocol)); if (queryctl->port) printf(" (using port %d)", queryctl->port); |