HI All,
We recently moved our email server from an in-house server to Office 365.
We are now in the process of replacing all our XP boxes with Windows 10.
One of the boxes are running the email service which collects emails from
Office 365, that we have just recently upgraded. This process works on the
XP but times out on windows 10.
Attached, is the time out the log file.
Below is the code I am using: Basic program code
* variables
ChannelNo = 0
Pop3Server =
'outlook.office365.com'
Pop3User = UserName
Pop3Pass = Password
Pop3Port = '995'
ProxYServer =
'127.0.0.1'
ProxyPort = '110'
ProxyDir =
'C:\see4OI\SSL\'
ProxyExe =
'stunnel.exe'
ProxyCert =
'stunnel.pem'
* retreives mail in MIME format
Gosub GET_EMAILS
return Mail_Rec
*
----------------------------------------------------------------------------
-------------
GET_EMAILS:
* close previous session If it wasnt closed properly
Code = seeClose(ChannelNo)
Code = seeRelease()
* attach key code
Code = seeAttach(1, KeyCode)
if Code < 0 then
RetFlag = 1
return
end
* start stunnel
Code = seeSetProxySSL(0, 1, ProxyDir, ProxyCert, ProxyExe)
If Code < 0 Then
RETURN
end
* connect to email server
Code = seePop3ConnectSSL(ChannelNo, ProxyPort, Pop3Port,
Pop3Server, Pop3User, Pop3Pass, ProxyServer)
If Code < 0 Then
RETURN
End
Your assistance in this regard will be highly appreciated.
Thank you.
Kind Regards,
Logicore
SEDICK CLOETE
IT Business Consultant
Cell: 083 228 7058
Fax: 086 515 9695
email: sedick(a)logicore.co.za
If you are not the intended recipient of this communication, please notify
the sender immediately. The information and/or attachment contained in this
email is confidential and may contain proprietary and/or personal
information. It is meant solely for the intended recipient. Access to this
email by anyone else is unauthorised. If you are not the intended recipient,
any processing of the email or the information contained therein (including
disclosure, copying, distribution, storage) or any action taken or omitted
in reliance on this, is prohibited and may be unlawful.
I've successfully set up stunnel for Windows and Linux clients. Now to set up
for Mac. I've gone to the website http://macappstore.org/stunnel/ and followed
the instructions there which are:
1. Press Command+Space and type Terminal and press enter/return key.
2. Run in Terminal app:
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" < /dev/null 2> /dev/null
and press enter/return key.
3. Run:
brew install stunnel
And then it says, "Done! You can now use stunnel."
Well, not exactly. Where do I put my stunnel.conf and certificate.pem? How do I
make stunnel run automatically at boot time?
The web instructions aren't very complete. Need additional assistance.
THX --Mark