> From: "Dan Harkless" <[EMAIL PROTECTED]>
> To: [EMAIL PROTECTED], [EMAIL PROTECTED], [EMAIL PROTECTED]
> Hi, Wesley. Any progress on that KPOP patch? I'd like to release a new
> version of nmh soon, due to that "Folder-Protect:" bug I just fixed and all
> the other goodies that have gone in recently. It'd be nice to resolve the
> KPOP thing, though...
Please find the patch attached.
:wes
*** nmh-1.0.3/man/inc.man Sun Feb 6 07:40:37 2000
--- nmh-1.0.3+/man/inc.man Thu Mar 16 10:06:56 2000
***************
*** 147,155 ****
allow you to watch the POP transaction take place between you and the
POP server.
! If nmh has been compiled with KPOP #defined, but without POPSERVICE being set to
! "kpop", the -kpop switch may be specified to cause the use of Kerberized POP
! rather than standard POP3 during a given invocation of \fIinc\fR.
%nmhendpop%
.Fi
^$HOME/\&.mh\(ruprofile~^The user profile
--- 147,156 ----
allow you to watch the POP transaction take place between you and the
POP server.
! If nmh has been compiled with KPOP #defined, then \fIinc\fR will use
! Kerberized POP rather than standard POP3 during a given invocation if
! POPSERVICE has been defined as "kpop", or the -kpop switch has been
! specified.
%nmhendpop%
.Fi
^$HOME/\&.mh\(ruprofile~^The user profile
*** nmh-1.0.3/man/msgchk.man Sun Feb 6 07:40:37 2000
--- nmh-1.0.3+/man/msgchk.man Thu Mar 16 10:07:36 2000
***************
*** 77,85 ****
allow you to watch the POP transaction take place between you and the
POP server.
! If nmh has been compiled with KPOP #defined, but without POPSERVICE being set to
! "kpop", the -kpop switch may be specified to cause the use of Kerberized POP
! rather than standard POP3 during a given invocation of \fImsgchk\fR.
%nmhendpop%
.Fi
^$HOME/\&.mh\(ruprofile~^The user profile
--- 77,86 ----
allow you to watch the POP transaction take place between you and the
POP server.
! If nmh has been compiled with KPOP #defined, then \fImsgchk\fR will use
! Kerberized POP rather than standard POP3 during a given invocation if
! POPSERVICE has been defined as "kpop", or the -kpop switch has been
! specified.
%nmhendpop%
.Fi
^$HOME/\&.mh\(ruprofile~^The user profile
*** nmh-1.0.3/uip/inc.c Sun Feb 6 07:40:42 2000
--- nmh-1.0.3+/uip/inc.c Thu Mar 16 10:22:16 2000
***************
*** 402,407 ****
--- 402,410 ----
if (inc_type == INC_POP) {
if (user == NULL)
user = getusername ();
+ if ( strcmp( POPSERVICE, "kpop" ) == 0 ) {
+ kpop = 1;
+ }
if (kpop || ( rpop > 0))
pass = getusername ();
else
*** nmh-1.0.3/uip/msgchk.c Sun Feb 6 07:40:53 2000
--- nmh-1.0.3+/uip/msgchk.c Thu Mar 16 10:29:06 2000
***************
*** 259,264 ****
--- 259,267 ----
#ifdef POP
if (host) {
+ if ( strcmp( POPSERVICE, "kpop" ) == 0 ) {
+ kpop = 1;
+ }
if (vecp == 0) {
status = remotemail (host, user, rpop, kpop, notifysw, 1, snoop);
} else {