Search found 6 matches
- 2015-04-14 23:33
- Forum: User contributed hMailServer 5 scripts
- Topic: Light and fast messages outbound limit
- Replies: 3
- Views: 4994
Re: Light and fast messages outbound limit
MySQL version of the database table creation scripts (change first line to the name of your database): USE `databaseName`; CREATE TABLE `hm_deliverylockedaccounts` ( `LockedAccount_ID` int(11) NOT NULL AUTO_INCREMENT, `LockedAccount_AccountName` varchar(255) DEFAULT NULL, `LockedAccount_MessagesCoun...
- 2013-12-04 18:04
- Forum: User contributed hMailServer 5 scripts
- Topic: Using GeoIP to block or allow country connections
- Replies: 73
- Views: 104003
Re: Using GeoIP to block or allow country connections
Thanks. I wanted to make sure I wasn't missing something.
- 2013-12-04 07:28
- Forum: User contributed hMailServer 5 scripts
- Topic: Using GeoIP to block or allow country connections
- Replies: 73
- Views: 104003
Re: Using GeoIP to block or allow country connections
I'm confused by the following portion of Bill's script: Sub OnClientConnect(oClient) '... ' Less strict for port 25 If oClient.Port = 25 Then ' Block AUTH'd on port 25 to force users to login on alternate port If oClient.Username <> "" Then Result.Message = "AUTH FAILED. You must be authenticated to...
- 2012-03-08 19:20
- Forum: Feature requests
- Topic: On Server Core: Let setup skip IE installation
- Replies: 5
- Views: 6287
Re: On Server Core: Let setup skip IE installation
According to Martin, IE6 is required only because the .Net framework requires it (per http://hmailserver.com/forum/viewtopic. ... ie6#p84950 )
I have used the above trick and have no issues with running the Admin GUI or even the DBUpdater.
I have used the above trick and have no issues with running the Admin GUI or even the DBUpdater.
- 2012-03-07 19:22
- Forum: General discussions
- Topic: HOWTO: Install HMS 5.3 / 5.4 on Server 2008 R2 Core
- Replies: 12
- Views: 14715
Re: HOWTO: Install HMS 5.3 / 5.4 on Server 2008 R2 Core
Wow, my search fu is really off lately. I completely missed this thread and seaching didn't reveal it. To bypass the IE 6 issue, just add a "Version" registry entry: reg add "HKLM\SOFTWARE\Wow6432Node\Microsoft\Internet Explorer" /v Version /t REG_SZ /d 8.0.7601.17514 (My other post said REG_MULTI_S...
- 2012-03-07 07:33
- Forum: General discussions
- Topic: HOW TO: Install hMailServer on Server Core 2008 R2
- Replies: 0
- Views: 5669
HOW TO: Install hMailServer on Server Core 2008 R2
This assumes that you already have a working Server Core and database setup and you just need to add hMailServer. Steps: Add an IE version string to the registry to get past the installer check (this can be removed after installation). reg add "HKLM\SOFTWARE\Wow6432Node\Microsoft\Internet Explorer" ...