Re: Thanks! Re: secure pop3 via ssh

1999-11-20 Thread Onno
Please share your findings. Regards, Onno At 08:08 AM 11/19/99 -0200, Mario Olimpio de Menezes wrote: Hi, Thanks you all! I've enough material to study. I think I'll be able to do this soon. []s, Mario O.de MenezesMany are the plans in a man's heart, but

Re: secure pop3 via ssh

1999-11-19 Thread aphro
On Thu, 18 Nov 1999, Mario Olimpio de Menezes wrote: mario How can I set a secure pop3 server using ssh? mario I read the man page for fetchmail and there is an example of a mario secure conection via ssh. mario How do I implement the server? didnt know this was possible till i got my

Thanks! Re: secure pop3 via ssh

1999-11-19 Thread Mario Olimpio de Menezes
Hi, Thanks you all! I've enough material to study. I think I'll be able to do this soon. []s, Mario O.de MenezesMany are the plans in a man's heart, but IPEN-CNEN/SP is the Lord's purpose that prevails http://curiango.ipen.br/~mario

secure pop3 via ssh

1999-11-18 Thread Mario Olimpio de Menezes
Hi, How can I set a secure pop3 server using ssh? I read the man page for fetchmail and there is an example of a secure conection via ssh. How do I implement the server? Thanks, []s, Mario O.de MenezesMany are the plans in a man's heart, but

Re: secure pop3 via ssh

1999-11-18 Thread Jean-Yves BARBIER
On Thu, Nov 18, 1999 at 01:38:08PM -0200, Mario Olimpio de Menezes wrote: Hi, How can I set a secure pop3 server using ssh? Don't know, I'm interested too ;) How do I implement the server? The qpopper package work perfectly for me (without touching any config file) JY --

Re: secure pop3 via ssh

1999-11-18 Thread J C Lawrence
On Thu, 18 Nov 1999 13:38:08 -0200 (EDT) Mario Olimpio de Menezes [EMAIL PROTECTED] wrote: How can I set a secure pop3 server using ssh? I read the man page for fetchmail and there is an example of a secure conection via ssh. How do I implement the server? Install the sshd (comes

Re: secure pop3 via ssh

1999-11-18 Thread Jens B. Jorgensen
You can do it easily with stunnel as well. Here's my line from inetd.conf: pop3s stream tcp nowait root/usr/sbin/stunnel /usr/sbin/stunnel -p /etc/ssl/certs/imap4.pem -l /usr/sbin/cucipop -Yq You need to create the certificate using the openssl package's openssl program. Mario

Re: secure pop3 via ssh

1999-11-18 Thread Remco van 't Veer
Hi Mario, The server should accept ssh and you should be able to connect to this machine using ssh without having to supply your password (using a .shosts or .rhosts file of instance). It should also accept pop-3 of course. ;-) A extended example, based on a example in fetchmail(1): poll

Re: secure pop3 via ssh

1999-11-18 Thread Ookhoi
How can I set a secure pop3 server using ssh? I read the man page for fetchmail and there is an example of a secure conection via ssh. How do I implement the server? If you use ssh to connect to the pop3 server (as I do), you don't need special things for the pop3d. If you

Re: secure pop3 via ssh

1999-11-18 Thread Mario Olimpio de Menezes
On Thu, 18 Nov 1999, Remco van 't Veer wrote: Hi Mario, The server should accept ssh and you should be able to connect to this Hi Remco, My problem is exactly in how to set the server to accept ssh connections. Which changes should I do, which packages should I install, in order to

Re: secure pop3 via ssh

1999-11-18 Thread Remco van 't Veer
Install ssh on the server; apt-get install ssh, this includes the sshd daemon. See if it is running; ps axw | grep sshd, if not try running the init script; sh /etc/init.d/ssh start. Now you should be able to login with slogin; slogin localhost. On Thu, Nov 18, 1999 at 16:03, Mario Olimpio de