Re: pop3 and ip adres logging

2000-01-14 Thread Chris L. Mason
On Thu, Jan 13, 2000 at 04:21:51PM +0200, Mikko Hänninen wrote: Van Liedekerke Franky [EMAIL PROTECTED] wrote on Thu, 13 Jan 2000: This probably works, but I'm using tcpserver and multilog, so how can I achieve this kind of logging using those tools? I'm curious about this as well. I'm

Re: pop3 and ip adres logging

2000-01-14 Thread J.M. Roth \(iip\)
for POP, but I'm planning to migrate over to tcpserver sometime. - Original Message - From: "iv0" [EMAIL PROTECTED] To: "Stefan Paletta" [EMAIL PROTECTED] Cc: "'qmail list'" [EMAIL PROTECTED] Sent: Thursday, January 13, 2000 7:21 PM Subject: Re: pop3 and ip a

Re: pop3 and ip adres logging

2000-01-14 Thread iv0
out this as well. I'm still using inetd for POP, but I'm planning to migrate over to tcpserver sometime. - Original Message - From: "iv0" [EMAIL PROTECTED] To: "Stefan Paletta" [EMAIL PROTECTED] Cc: "'qmail list'" [EMAIL PROTECTED] Sent: Thursday, Janua

Re: pop3 and ip adres logging

2000-01-14 Thread J.M. Roth \(iip\)
; "'qmail list'" [EMAIL PROTECTED]; "Jim Zajkowski" [EMAIL PROTECTED]; "VCHKPW LIST" [EMAIL PROTECTED] Sent: Saturday, January 15, 2000 4:29 AM Subject: Re: pop3 and ip adres logging in vchkpw.c struct passwd *checkpopusers(char *login, char *passwd, char *apop) L

pop3 and ip adres logging

2000-01-13 Thread Van Liedekerke Franky
Hi, does anybody know a quick hack to log the ip adres in a pop3 session without setting tcpserver to verbose mode? Franky

Re: pop3 and ip adres logging

2000-01-13 Thread Stefan Paletta
Van Liedekerke Franky wrote/schrieb/scribsit: does anybody know a quick hack to log the ip adres in a pop3 session without setting tcpserver to verbose mode? # cat /var/qmail/bin/qmail-pop3d-log #!/bin/sh logger -p local2.info -t pop3d "$USER logged in from $TCPREMOTEIP [$TCPREMOTEHOST]" exec

Re: pop3 and ip adres logging

2000-01-13 Thread Stefan Paletta
Van Liedekerke Franky wrote/schrieb/scribsit: This probably works, but I'm using tcpserver and multilog, so how can I achieve this kind of logging using those tools? Use 'echo "$USER logged in from $TCPREMOTEIP [$TCPREMOTEHOST]" 2' instead of the call to logger. Stefan From: Stefan

Re: pop3 and ip adres logging

2000-01-13 Thread Mikko Hänninen
Van Liedekerke Franky [EMAIL PROTECTED] wrote on Thu, 13 Jan 2000: This probably works, but I'm using tcpserver and multilog, so how can I achieve this kind of logging using those tools? I'm curious about this as well. I'm still using inetd for POP, but I'm planning to migrate over to

Re: pop3 and ip adres logging

2000-01-13 Thread Jim Zajkowski
On Thu, Jan 13, 2000 at 03:19:53PM +0100, Stefan Paletta wrote: } This probably works, but I'm using tcpserver and multilog, so how can I } } Use 'echo "$USER logged in from $TCPREMOTEIP [$TCPREMOTEHOST]" 2' } instead of the call to logger. } # cat /var/qmail/bin/qmail-pop3d-log }