HEX
Server: Microsoft-IIS/10.0
System: Windows NT ITPWINWEBSVR22 10.0 build 20348 (Windows Server 2022) AMD64
User: www.conferencesearch.co.uk (0)
PHP: 8.3.30
Disabled: NONE
Upload Files
File: D:/hMailServer/DBScripts/Upgrade3300to3301MSSQL.sql
drop table hm_routes

create table hm_routes 
(
  routeid numeric identity (1, 1) not null,
  routedomainname varchar(255) NOT NULL,
  routetargetsmthost varchar(255) NOT NULL,
  routetargetsmtport numeric NOT NULL,
  routenooftries numeric NOT NULL,
  routeminutesbetweentry numeric NOT NULL,
  routealladdresses numeric NOT NULL,
  routeuseauthentication numeric NOT NULL,
  routeauthenticationusername varchar(255) NOT NULL,
  routeauthenticationpassword varchar(255) NOT NULL,
  routetreatsecurityaslocal numeric NOT NULL
)

delete from hm_routeaddresses

insert into hm_settings (settingname, settingstring, settinginteger) values ('usesmtprelayerauthentication', '', 0)

insert into hm_settings (settingname, settingstring, settinginteger) values ('smtprelayerport', '', 25)

update hm_dbversion set value = 3301