[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Nmh-commits] [SCM] The nmh Mail Handling System branch, master, updated
From: |
Ken Hornstein |
Subject: |
[Nmh-commits] [SCM] The nmh Mail Handling System branch, master, updated. a01a41d031c796b526329a4170eb23f0ac93b949 |
Date: |
Wed, 13 Apr 2011 14:52:36 +0000 |
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "The nmh Mail Handling System".
The branch, master has been updated
via a01a41d031c796b526329a4170eb23f0ac93b949 (commit)
from d9bed5c7b73965ffdc48176825690b94f096ec3b (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit/nmh.git/commit/?id=a01a41d031c796b526329a4170eb23f0ac93b949
commit a01a41d031c796b526329a4170eb23f0ac93b949
Author: Ken Hornstein <address@hidden>
Date: Wed Apr 13 10:50:49 2011 -0400
Whoops, user & port were in the wrong order so msgchk didn't work for POP
connections.
diff --git a/uip/msgchk.c b/uip/msgchk.c
index 03525c8..9b56649 100644
--- a/uip/msgchk.c
+++ b/uip/msgchk.c
@@ -369,7 +369,7 @@ remotemail (char *host, char *port, char *user, char
*proxy, int notifysw,
ruserpass (host, &user, &pass);
/* open the POP connection */
- if (pop_init (host, user, port, pass, proxy, snoop, sasl, saslmech) ==
NOTOK
+ if (pop_init (host, port, user, pass, proxy, snoop, sasl, saslmech) ==
NOTOK
|| pop_stat (&nmsgs, &nbytes) == NOTOK /* check for messages
*/
|| pop_quit () == NOTOK) { /* quit POP connection
*/
advise (NULL, "%s", response);
-----------------------------------------------------------------------
Summary of changes:
uip/msgchk.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
hooks/post-receive
--
The nmh Mail Handling System
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Nmh-commits] [SCM] The nmh Mail Handling System branch, master, updated. a01a41d031c796b526329a4170eb23f0ac93b949,
Ken Hornstein <=