Re: preventing connect from different ip's if cyrus.conf contains specific binds

2002-04-13 Thread Ilya
oesnt work properly I guess. ? a quick gdb look said that its running function fcntl ? - Original Message - From: "Ken Murchison" <[EMAIL PROTECTED]> To: "Ilya" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Saturday, April 13, 2002 12:22 PM Sub

Re: preventing connect from different ip's if cyrus.conf contains specific binds

2002-04-13 Thread Ken Murchison
Works for me. Are you waiting a few seconds for the service to be spawned by master (since prefork=0)? If master wasn't listening on the given interface, you'd get something like this: telnet: connect to address 192.168.0.3: Connection refused Ken Ilya wrote: > > same thing: > > [EMAIL PRO

Re: preventing connect from different ip's if cyrus.conf contains specific binds

2002-04-13 Thread Ilya
same thing: [EMAIL PROTECTED]$ telnet localhost 110 Trying 127.0.0.1... Connected to localhost.alchemistry.net. Escape character is '^]'. +OK krel.org Cyrus POP3 v2.1.3 server ready <[EMAIL PROTECTED]> quit +OK Connection closed by foreign host. [EMAIL PROTECTED]$ telnet 192.168.0.3 110 Trying 19

Re: preventing connect from different ip's if cyrus.conf contains specific binds

2002-04-11 Thread Lawrence Greenfield
Don't use the same "name" for each of them. ie: pop3-local cmd="pop3d" listen="[127.0.0.1]:pop3" prefork=0 pop3-remote cmd="pop3d" listen="[192.168.0.3]:pop3" prefork=0 Larry Date: Thu, 11 Apr 2002 21:43:46 -0400 From: Ilya <[EMAIL PROTECTED]> Is it by design t

preventing connect from different ip's if cyrus.conf contains specific binds

2002-04-11 Thread Ilya
Is it by design that if I setup in cyrus.conf something like this: pop3 cmd="pop3d" listen="[127.0.0.1]:pop3" prefork=0 pop3 cmd="pop3d" listen="[192.168.0.3]:pop3" prefork=0 than after first connection to lets say 127.0.0.1, the spawned pop3d never closes, and handles all subse