I have compiled and installed stunnel 4.10 under Mac OS X 10.3.
I want to set up stunnel to connect a non-ssl newsreader client to an ssl nntp server. The newsreader client is Unison and the server is Easynews SSL server.
I don't really know how to do this. I wonder if anyone can point me in the right direction.
Thanks
Geoff
___________
PS I did various searches of the list archive and read TFM, but still need guidance! I am asked to include some details:
$ /usr/local/sbin/stunnel -version stunnel 4.10 on powerpc-apple-darwin7.7.0 PTHREAD+POLL+IPv4+LIBWRAP with OpenSSL 0.9.7b 10 Apr 2003
Global options cert = /usr/local/etc/stunnel/stunnel.pem ciphers = ALL:!ADH:+RC4:@STRENGTH debug = 5 key = /usr/local/etc/stunnel/stunnel.pem pid = /usr/local/var/run/stunnel.pid RNDbytes = 64 RNDfile = /dev/urandom RNDoverwrite = yes session = 300 seconds verify = none
Service-level options TIMEOUTbusy = 300 seconds TIMEOUTclose = 60 seconds TIMEOUTconnect = 10 seconds TIMEOUTidle = 43200 seconds
$ uname -a Darwin My-Computer.local 7.7.0 Darwin Kernel Version 7.7.0: Sun Nov 7 16:06:51 PST 2004; root:xnu/xnu-517.9.5.obj~1/RELEASE_PPC Power Macintosh powerpc
$ gcc -v Reading specs from /usr/libexec/gcc/darwin/ppc/3.3/specs Thread model: posix gcc version 3.3 20030304 (Apple Computer, Inc. build 1640)
On Sat, 30 Apr 2005, Geoff Sheridan wrote:
I have compiled and installed stunnel 4.10 under Mac OS X 10.3.
I want to set up stunnel to connect a non-ssl newsreader client to an ssl nntp server. The newsreader client is Unison and the server is Easynews SSL server.
I don't really know how to do this. I wonder if anyone can point me in the right direction.
Use something like this in your stunnel.conf:
cert=<your certificate file> key =<your certificate file>
# Run in client mode? (remote service is using SSL) client = yes
# # Definition of the services that we're running on our localhost #
# Service NNTP [stunnel.nntp] accept = 127.0.0.1:119 connect = <your nntp server>:563
Jan