|
If you've searched the Knowledge Base and not found your answer, you may ask
a new question of technical support.
More Instructions...
|
Spam Sleuth version 4.0 for Windows 95/98/Me/NT/2000/XP/2003
Q: How do I configure Verizon or Comcast that require secure e-mail? A: Stunnel - Configuring for secure connections
Download and install STUNNEL
https://www.stunnel.org/downloads/stunnel-4.56-installer.exe
When prompted for country, state, etc, just accept the defaults by hitting [ENTER] or enter your information.
Open a command prompt and enter these commands to set stunnel to run as a service on startup:
CD \Program Files (x86)\stunnel
stunnel -install
In Spam Sleuth:
In File->Configure, choose 'Accounts'
For each SMTP account, set outgoing server and POP3 server to 'localhost' (without the single quotes)
In File->Configure, choose 'Miscellaneous', and set POP3 Proxy Listen Port to 111
Shut down and relaunch Spam Sleuth to get the settings to take.
In your e-mail program:
Set POP3 Server to localhost and POP3 port to 111.
This will cause your e-mail program to get e-mail from Spam Sleuth (listening on port 111), and Spam Sleuth will get e-mail from port 110 which goes through the secure tunnel to port 995.
What this does:
It sets up a secure tunnel for e-mail. This is a requirement of some e-mail providers now, and they require secure communication through ports 995 for secure POP and port 465 for secure smtp.
The tunnel lets you GET e-mail with your own machine using port 110 and the secure tunnel will encrypt the channel and get it through port 995.
The tunnel lets you SEND e-mail with your own machine using port 25 and the secure tunnel will encrypt the e-mail and send it through port 465.
NOTE: Add (or uncomment) these lines in stunnel.conf
[gmail-pop3]
client = yes
accept = 127.0.0.1:110
connect = pop.gmail.com:995
[gmail-smtp]
client = yes
accept = 127.0.0.1:25
connect = smtp.gmail.com:465
Top
|
|