ClassicConnect ClassicConnect
"640k ought to be enough for everybody."
 
FAQ :: Search :: Memberlist :: Usergroups :: Register
Profile :: Log in to check your private messages :: Log in

Email with older clients

 
Post new topic   Reply to topic    ClassicConnect Forum Index -> Software and Web Design
View previous topic :: View next topic  
Author Message
VCSMaster
Member


Joined: 25 May 2025
Age: 25
Posts: 126
Location: Southeastern USA

PostPosted: Mon May 26, 2025 10:55 pm    Post subject: Email with older clients Reply with quote

Hello! I come today to ask a question: Is there a good way to do email with older clients? I would like to use Eudora on this here iMac G3 running OS 9.2.2 but every email provider I find requires SSL and TLS 1.2/1.3. This leaves me unable to login.

It is my understanding that there is no way to get any TLS past 1.1 on OS 9.2.2, but I have heard of a program called "stunnel" which is supposed to help with this, but I cannot for the life of me figure out where even to begin with this process.

Any recommendations or advice on where to get started with configuring that to work? Thanks.
Back to top
View user's profile Send private message Visit poster's website
daniel
Member


Joined: 09 Sep 2023
Posts: 82
Location: USA

PostPosted: Mon May 26, 2025 11:03 pm    Post subject: Reply with quote

do you have your own domain?
_________________
-Daniel
Back to top
View user's profile Send private message Visit poster's website
dkay
New Member


Joined: 09 Sep 2023
Posts: 9
Location: California

PostPosted: Tue May 27, 2025 12:50 am    Post subject: Reply with quote

nick99nack on the WinWorldPC Forum has a guide. You can copy his config and change the smtp and imap server addresses if you aren’t using yahoo
https://forum.winworldpc.com/discussion/12201/e-mail-on-older-systems
Back to top
View user's profile Send private message Visit poster's website
Sashi
Admin


Joined: 03 Sep 2023
Posts: 70

PostPosted: Tue May 27, 2025 1:24 am    Post subject: Reply with quote

I think Nick should repost such valuable information in Classic Connect.

Cmon Nick, bring your wisdom to us!
_________________
I do stuff with things for reasons.
Fuck it, test in prod.
Back to top
View user's profile Send private message
nick99nack
Admin


Joined: 30 Aug 2023
Age: 30
Posts: 171
Location: NJ, USA

PostPosted: Tue May 27, 2025 5:04 am    Post subject: Reply with quote

dkay was correct that I did post about it on WinWorld back in 2020, but allow me to post a cleaned up version of that here:

stunnel is the software you'll want to use. You can find downloads for it at https://www.stunnel.org (64-bit only). or if you need 32-bit, you can find installers for those here: https://github.com/josealf/stunnel-win32

stunnel is basically a type of proxy server that connects to the service using SSL/TLS and strips that back to plaintext for your client. Once you install it and edit the config file to match whatever e-mail provider you use, you will then point your mail client at the stunnel proxy server, not the e-mail provider itself. Your client will then retrieve e-mails through the proxy as though it were any other mail server.

To set it up, run the installer, then launch the application. You will see an icon for it in the tray area. By default, stunnel is set up for Gmail. If you want to change that to something else, you will have to edit the configuration file with the right servers and ports, then right-click on the tray icon and reload the configuration. If you are connecting to it from another computer, you may have to configure the firewall to allow access to whatever ports you have stunnel running on.

My configuration file below is set up for AOL. The accept lines allows you to set which computers can connect to stunnel and which ports they may connect on (in this case, 143 for IMAP and 587 for SMTP). To allow any computer on the network to access it, remove all IP addresses and just leave a port number.

My config:
Code:
[aol-imap]
client = yes
accept = 143
connect = imap.aol.com:993
verifyChain = yes
CAfile = ca-certs.pem
checkHost = imap.aol.com
OCSPaia = yes

[aol-smtp]
client = yes
accept = 587
connect = smtp.aol.com:465
verifyChain = yes
CAfile = ca-certs.pem
checkHost = smtp.aol.com
OCSPaia = yes

_________________
If you like browsing without an ad blocker, you might also like getting rid of your virus scanner, and running around with your pants down. --SomeGuy, 2016
Back to top
View user's profile Send private message Visit poster's website AIM Address MSN Messenger
Display posts from previous:   
Post new topic   Reply to topic    ClassicConnect Forum Index -> Software and Web Design All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum



smartDark Style by Smartor
Powered by phpBB 2.0.25 CC Mod © 2001, 2002 phpBB Group
 
Page generation time: 0.0131s (PHP: 93% - SQL: 7%) - SQL queries: 11 - GZIP enabled - Debug on