pkgsrc/mail/imap-uw/patches/patch-am
abs dd04eda1b7 Add IMAP_UW_USE_WHOSON
No change to default build, so no version bump
2004-10-11 16:56:28 +00:00

31 lines
1.1 KiB
Text
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

$NetBSD: patch-am,v 1.4 2004/10/11 16:56:28 abs Exp $
--- src/osdep/unix/env_unix.c.orig 2004-08-22 19:54:29.000000000 +0100
+++ src/osdep/unix/env_unix.c
@@ -21,6 +21,9 @@
#include <grp.h>
#include <signal.h>
#include <sys/wait.h>
+#ifdef USE_WHOSON
+#include <whoson.h>
+#endif /* USE_WHOSON */
/* c-client environment parameters */
@@ -567,7 +570,15 @@ long server_login (char *user,char *pwd,
else if (disablePlaintext) err = "disabled";
else if (!(authuser && *authuser)) pw = valpwd (user,pwd,argc,argv);
else if (valpwd (authuser,pwd,argc,argv)) pw = pwuser (user);
- if (pw && pw_login (pw,authuser,pw->pw_name,NIL,argc,argv)) return T;
+ if (pw && pw_login (pw,authuser,pw->pw_name,NIL,argc,argv)) {
+#ifdef USE_WHOSON
+ struct sockaddr_in sin;
+ int sinlen = sizeof (struct sockaddr_in);
+ if (getpeername(0,(struct sockaddr *) &sin,&sinlen) == 0)
+ wso_login(inet_ntoa(sin.sin_addr),user,NULL,0);
+#endif
+ return T;
+ }
syslog (level|LOG_AUTH,"Login %s user=%.64s auth=%.64s host=%.80s",err,
user,(authuser && *authuser) ? authuser : user,tcp_clienthost ());
sleep (3); /* slow down possible cracker */