• Donate
  • Forum
  • Search
Login or Register Hello There, Guest! Please Login or Register to gain Full Access!
Login
Username/Email:
Password: Lost Password?
 

  1. RunAsXP - Outlook Express Compatibility Forum
  2. Outlook Express Compatibility Forum
  3. Support
  4. doesnt work with cox any more [Solved]
Pages (3): 1 2 3 Next »
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5

Thread Modes
doesnt work with cox any more [Solved]
muddy
Junior Member
****
Members
Posts: 10
Threads: 1
Joined: May 2019
Reputation: 0
#1
05-01-2019, 11:37 PM
(This post was last modified: 05-07-2019, 04:21 PM by Rafael.)
As of April 24, 2019, all email sent from a Cox Email address must use TLS 1.0 security encryption or higher. As a result, Cox no longer supports sending email through email clients using SSL security encryption version 3.0 or older, see link below

https://www.cox.com/residential/support/...tings.html


I can send emails but cant receive any more because it doesnt support TLS
Find
Reply
Rafael
Administrator
*******
Administrators
Posts: 1,561
Threads: 38
Joined: Apr 2014
Reputation: 30
#2
05-02-2019, 09:24 PM
That page does not open (keeps asking for captcha)
But as can see on page below, cos supports SSL:
https://support.postbox-inc.com/hc/en-us...gs-for-COX

Are you sure that using port 995 and SSL checked you dont receive emails?

Rafael
Administrator
-------------------------------------------------

Find
Reply
muddy
Junior Member
****
Members
Posts: 10
Threads: 1
Joined: May 2019
Reputation: 0
#3
05-02-2019, 11:58 PM
(05-02-2019, 09:24 PM)Rafael Wrote:  That page does not open (keeps asking for captcha)
But as can see on page below, cos supports SSL:
https://support.postbox-inc.com/hc/en-us...gs-for-COX

Are you sure that using port 995 and SSL checked you dont receive emails?

yes, all was working fine before April 24, below is the page on their site

as I said I can send but dont receive(pop) any more
[Image: n4dPtVR.jpg]
Find
Reply
StillLearning
Junior Member
****
Members
Posts: 10
Threads: 0
Joined: May 2019
Reputation: 0
#4
05-04-2019, 03:35 AM
(This post was last modified: 05-04-2019, 03:35 AM by StillLearning. Edit Reason: typo )
(05-02-2019, 09:24 PM)Rafael Wrote:  That page does not open (keeps asking for captcha)
But as can see on page below, cos supports SSL:
https://support.postbox-inc.com/hc/en-us...gs-for-COX

Are you sure that using port 995 and SSL checked you dont receive emails?

He is correct. I talked to level-2 support at COX and he told me that COX is no longer going to support SSL. They are only going to support TLS. I told him about the confusion caused by the information that they show and he said that information will be updated by next month (supposedly).

Do you plan on supporting TLS? If so when?
Find
Reply
Rafael
Administrator
*******
Administrators
Posts: 1,561
Threads: 38
Joined: Apr 2014
Reputation: 30
#5
05-05-2019, 04:25 PM
(This post was last modified: 05-05-2019, 05:40 PM by Rafael.)
Workaround

Use Stunnel, a tool acts as a proxy. You can configure it to establish an SSL connection to a given host and port when a connection to a given local port is made. Thus you could configure OE to connect to local port on the machine running Stunnel, which might then connect via SSL to smtp.example.com:465 using a more modern TLS version supported by Stunnel (but not directly by OE).

Stunnel download page:
https://www.stunnel.org/downloads.html

Download:
.zip stunnel-5.53-win64-installer.zip Size: 2.6 MB  Downloads: 11




Now, because i dont have COX email account, and because COX does only give email account for it's clients. I cannot test it personally.
But i made the configuration for you guys.

Steps:
1. Download and install stunnel

2. right click on stunnel icon on tray and click "Edit configuration"
.png stunnel11.png Size: 9.65 KB  Downloads: 58


3. Insert this on stunnel configuration text file that will open with notepad and save the file (File>Save)


Code:
[cox-pop3]
client = yes
accept = 127.0.0.1:995
connect = pop.cox.net:995
verifyChain = yes
CAfile = ca-certs.pem
checkHost = pop.cox.net
OCSPaia = yes


[cox-smtp]
client = yes
accept = 127.0.0.1:587
connect = smtp.cox.net:587
verifyChain = yes
CAfile = ca-certs.pem
checkHost = smtp.cox.net
OCSPaia = yes
   



4. Right click again on stunnel tray icon and click "Reload configuration"
.png stunnel21.png Size: 9.58 KB  Downloads: 59


5. Open outlook express and edit your COX account. On the "Servers" Tab, replace your servers (both incoming and outgoing) with 127.0.0.1
   

6. Go to "Advanced" Tab and enter ports (587 for SMTP and 995 for POP3), UNCHECK SSL
   

That's it. Try now to send and receive emails.

Rafael
Administrator
-------------------------------------------------

Find
Reply
muddy
Junior Member
****
Members
Posts: 10
Threads: 1
Joined: May 2019
Reputation: 0
#6
05-05-2019, 11:36 PM
is there a windows 32 version of stunnel?
Find
Reply
Rafael
Administrator
*******
Administrators
Posts: 1,561
Threads: 38
Joined: Apr 2014
Reputation: 30
#7
05-06-2019, 02:35 AM
Yes of course. Here it is
.zip stunnel-5.23-installer.zip Size: 3.12 MB  Downloads: 10

Rafael
Administrator
-------------------------------------------------

Find
Reply
StillLearning
Junior Member
****
Members
Posts: 10
Threads: 0
Joined: May 2019
Reputation: 0
#8
05-06-2019, 10:12 AM
(This post was last modified: 05-06-2019, 12:26 PM by StillLearning. Edit Reason: typo )
(05-06-2019, 02:35 AM)Rafael Wrote:  Yes of course. Here it is

I have tried to use stunnel but it keeps on failing because it shows me "server is down due to a error".
It says the error is in the config file.

I was getting a error because of this line "verifyChain = yes" and replaced with "verify = 2". After that was done got "green" server running. but was not able to send or receive email.

To fix I removed "verify = 2" and pop side now works. (but no verify)
To fix smtp part delete the smtp part of the config file.
Set the server name on outlook back to smtp.cox.net.
Set smtp port to 587 with SSL checked.

I was then able to get Windows XP Outlook to send receive email.

How do I get the stunnel to run at start up on Windows XP?
Find
Reply
Rafael
Administrator
*******
Administrators
Posts: 1,561
Threads: 38
Joined: Apr 2014
Reputation: 30
#9
05-06-2019, 01:21 PM
just add the shortcut on windows startup

Rafael
Administrator
-------------------------------------------------

Find
Reply
muddy
Junior Member
****
Members
Posts: 10
Threads: 1
Joined: May 2019
Reputation: 0
#10
Photo  05-06-2019, 08:36 PM
I installed stunnel on windows xp professional
did not made any changes to the default config file, wanted to see if I can run it first
tried to run stunnel GUI start and got this error:
[Image: XgY9QBW.jpg]


inserted the lines for cox in the config file, tried to run it it and got the same error
Find
Reply
« Next Oldest | Next Newest »

Pages (3): 1 2 3 Next »


  • View a Printable Version
  • Subscribe to this thread
Forum Jump:

Linear Mode
Threaded Mode