Re: [Exim] SSL/TLS support

Páxina inicial
Borrar esta mensaxe
Responder a esta mensaxe
Autor: Paul Makepeace
Data:  
Para: exim-users
Asunto: Re: [Exim] SSL/TLS support
Yes,

Subject: [Exim] Recipe: Exim with SSL using stunnel
http://www.exim.org/pipermail/exim-users/Week-of-Mon-19991011/012645.html

The upshot is:

#!/bin/sh

echo "Generating mail.pem..."
echo

openssl genrsa 1024 > mail.rsa
openssl gendh -rand /dev/urandom > mail.dh
openssl req -new -x509 -nodes -key mail.rsa -out mail.x509
cat mail.rsa mail.x509 mail.dh > mail.pem
rm mail.rsa mail.x509 mail.dh

echo
echo "Generation of mail.pem complete"
exit

stunnel -d 465 -l /usr/sbin/exim -p /etc/ssl/certs/mail.pem -- exim -bs

Enjoy,
Paul

----- Original Message -----
From: <tcurdt@???>
To: <exim-users@???>
Sent: 13 December 1999 19:07
Subject: [Exim] SSL/TLS support


> Has anyone tried "stunnel" with exim?
> Will this give me the SSL/TLS support
> that is available at Netscape Comm?
>
> Any other sollutions for an encrypted
> connection with exim?
>
> thx folks
> --
> Torsten
>
>
>
> --
> ## List details at http://www.exim.org/mailman/listinfo/exim-users Exim

details at http://www.exim.org/ ##
>