Search found 8 matches
- 2020-05-17 20:36
- Forum: General discussions
- Topic: 5.6.8 - Build 2501 - Safe to use
- Replies: 4
- Views: 1326
Re: 5.6.8 - Build 2501 - Safe to use
I have been using the recommended version of 5.6.8 - Build 2505 for about a week now with no issues.
- 2020-05-10 01:47
- Forum: General discussions
- Topic: 5.6.8 - Build 2501 - Safe to use
- Replies: 4
- Views: 1326
Re: 5.6.8 - Build 2501 - Safe to use
Thanks. I will give it a go.
- 2020-05-09 13:55
- Forum: General discussions
- Topic: 5.6.8 - Build 2501 - Safe to use
- Replies: 4
- Views: 1326
5.6.8 - Build 2501 - Safe to use
Is 5.6.8 - Build 2501 safe to use in a production environment? Is anyone having any major issues with it?
I searched and could not find any other posts asking.
I searched and could not find any other posts asking.
- 2020-04-11 01:53
- Forum: General discussions
- Topic: Add TLS statement to email
- Replies: 11
- Views: 4253
Re: Add TLS statement to email
Thank you all so much for the replies. I will try these out, and then report back. Thanks again!
- 2020-04-10 00:05
- Forum: General discussions
- Topic: Add TLS statement to email
- Replies: 11
- Views: 4253
Add TLS statement to email
Is it possible to add a statement to the top of an incoming email indicating whether or not the message was sent with TLS? Similar to https://www.hmailserver.com/forum/viewtopic.php?f=7&t=29777 but checking whether or not the connection was encrypted. I imagine you would need to search the headers f...
- 2019-08-02 14:56
- Forum: Development & alpha discussions
- Topic: Removing x86 support in 5.7
- Replies: 29
- Views: 20561
- 2014-08-27 21:54
- Forum: User contributed hMailServer 5 scripts
- Topic: Script to block or allow country connections
- Replies: 53
- Views: 33406
Re: Script to block or allow country connections
I did find an error in my logic after all. Here is the corrected match lookup.
Code: Select all
'Check if match is found
if ( objDict.Exists(oGeoip("country_code")) ) or ( objDict.Exists(oGeoip("continent_code")) ) then
Result.Value = 1
else
Result.Value = 0
end if
- 2014-08-27 17:17
- Forum: User contributed hMailServer 5 scripts
- Topic: Script to block or allow country connections
- Replies: 53
- Views: 33406
Re: Script to block or allow country connections
I installed your script and it is working fine. Very useful. I did however make the following change to it. Added a scripting dictionary dim objDict ' Create a variable. set objDict = CreateObject("Scripting.Dictionary") Added the Continents and Countries 'Continents objDict.Add "AS", "Asia" objDict...