[ILUG] tls or no tls
Kenn Humborg
kenn at bluetree.ie
Fri Oct 3 22:11:00 IST 2008
On Fri, Oct 03, 2008 at 08:59:55PM +0100, Brendan Kehoe wrote:
> Have any of you tried to configure the courier imapd to actually run two
> instances, one listening to port 127.0.0.1 not requiring STARTTLS, and
> another listening for external connections (ADDRESS=0) which does?
Another approach might be to use an iptables rule to forward
connections to port 143 on your external IP address to port
993:
iptables -t nat -A PREROUTING -d your.ext.ip.addr \
-p tcp --dport 143 -j DNAT --to-destination 127.0.0.1:993
That might work...
Later,
Kenn
More information about the ILUG
mailing list