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/Upgrade4400to4401MySQL.sql
create table hm_whitelist
(
	whiteid bigint auto_increment not null, primary key(whiteid), unique(whiteid),
	whiteloweripaddress bigint not null,
	whiteupperipaddress bigint not null,
	whiteemailaddress varchar(255) not null,
	whitedescription varchar(255) not null
)

insert into hm_settings (settingname, settingstring, settinginteger) values ('aliascachettl', '', 60)

insert into hm_settings (settingname, settingstring, settinginteger) values ('distributionlistcachettl', '', 60)

ALTER TABLE hm_accounts ADD COLUMN accountvacationexpires tinyint unsigned not null DEFAULT 0

ALTER TABLE hm_accounts ADD COLUMN accountvacationexpiredate datetime NOT NULL

ALTER TABLE hm_fetchaccounts ADD COLUMN faprocessmimedate tinyint not null DEFAULT 0

update hm_dbversion set value = 4401