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
IPEN-CNEN/SP is the Lord's purpose that prevails
http://curiango.ipen.br/~mario Prov. 19.21
   http://www.revistalinux.com.br


--
Unsubscribe?  mail -s unsubscribe [EMAIL PROTECTED]  
/dev/null


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 advanced linux reference book

http://metalab.unc.edu/pub/Linux/docs/HOWTO/mini/Secure-POP+SSH

[mailto:[EMAIL PROTECTED] ]--
   Vice President Network Operations   http://www.firetrail.com/
  Firetrail Internet Services Limited  http://www.aphroland.org/
   Everett, WA 425-348-7336http://www.linuxpowered.net/
Powered By:http://comedy.aphroland.org/
Debian 2.1 Linux 2.0.36 SMPhttp://yahoo.aphroland.org/
-[mailto:[EMAIL PROTECTED] ]--
6:17pm up 91 days, 5:52, 1 user, load average: 1.57, 1.59, 1.61


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 Prov. 19.21
   http://www.revistalinux.com.br


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
-- 
Jean-Yves F. Barbier [EMAIL PROTECTED]
 Real Users find the one combination of bizarre input values that shuts
down the system for days.


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 as part of SSH) on the server.  Hang the POP
server of /etc/inetd.conf (should happen automatically).  Make sure
that you are using TCP Wrappers (tcpd).  Add a line in
/etc/hosts.deny reading:

  name of POP server: all

Add a line to /etc/hosts.allow reading:

  name of POP server: localhost

Done.

-- 
J C Lawrence  Internet: [EMAIL PROTECTED]
--(*)Internet: [EMAIL PROTECTED]
...Honorary Member of Clan McFud -- Teamer's Avenging Monolith...


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 Olimpio de Menezes wrote:

 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
 IPEN-CNEN/SP is the Lord's purpose that prevails
 http://curiango.ipen.br/~mario Prov. 19.21
http://www.revistalinux.com.br

 --
 Unsubscribe?  mail -s unsubscribe [EMAIL PROTECTED]  /dev/null

--
Jens B. Jorgensen
[EMAIL PROTECTED]



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 mailhost.net via localhost port 1234 with proto pop3:
  preconnect ssh -f -L 1234:mailhost.net:110 mailhost.net sleep 20 
/dev/null /dev/null;
  user  myaccount
  password  topsecret
  smtphost  localhost

Using this example, fetchmail launches the ssh command before it will
poll the pop3 account by connecting to localhost:1234.  The ssh client
forks to the background and listens on port 1234 and forwards all its
connections to mailhost.net:110.  Et voilá, a secure pop..

Note port 110 is the pop-3 service and 1234 can be any unused 1024+
port number.

Hope this helps.

Regards,
Remco


On Thu, Nov 18, 1999 at 13:38, Mario Olimpio de Menezes wrote:

 
 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
 IPEN-CNEN/SP is the Lord's purpose that prevails
 http://curiango.ipen.br/~mario Prov. 19.21
http://www.revistalinux.com.br


-- 
confidential UCK kibo FBI Beatrix KKK anthrax KGB splif CD detonator Patijn
Nazi abuse technology sigar inkijk RSA grenade MDMA Cocaine MI5 NORAD PSUC


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 want to secure the pop3d, you might want to look for ssl I
_think_ (but not all clients are able to fetch mail via ssl?).

Ookhoi


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 have a secure pop3 server?
Thanks.

Mario O.de Menezes Many are the plans in a man's heart, but
IPEN-CNEN/SP is the Lord's purpose that prevails 
http://curiango.ipen.br/~mario Prov. 19.21
   http://www.revistalinux.com.br



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 Menezes wrote:

 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 have a secure pop3 server?
   Thanks.
 
 Mario O.de Menezes Many are the plans in a man's heart, but
 IPEN-CNEN/SP is the Lord's purpose that prevails 
 http://curiango.ipen.br/~mario Prov. 19.21
http://www.revistalinux.com.br


-- 
PSUC counter-intelligence serbian fissionable Kennedy North Korea jihad
Ft. Meade Cocaine mutageen XTC aanslag munitions Cthulhu Khaddafi VX