I have successfully cross-compiled stunnel for EZX using the crosstool at:
http://lsb.blogdns.com/ezx-crosstool
Here's my stunnel.conf:
Code:
client = yes
debug = debug
; output = /tmp/stunnel-gmail.log
output = /dev/stdout
pid = /tmp/stunnel-gmail.pid
foreground = yes
[pop3s]
accept = 127.0.0.1:1109
connect = pop.gmail.com:995
[smtps]
accept = 127.0.0.1:259
connect = smtp.gmail.com:465
[imaps]
accept = 127.0.0.1:1439
connect = imap.gmail.com:993
Which I started under ekonsole with:
Code:
$ stunnel stunnel-gmail.conf
But the email client never successfully connects to 127.0.0.1:1439 and I never see anything in the log about a connection attempt.
Ideas?