fix: remove cleanup address due to many table need to be clean (#240)

This commit is contained in:
Dream Hunter
2024-05-16 13:11:29 +08:00
committed by GitHub
parent 78badf2eaa
commit bbc4c05d69
4 changed files with 0 additions and 32 deletions

View File

@@ -29,7 +29,6 @@ export class CleanupSettings {
const {
enableMailsAutoCleanup, cleanMailsDays,
enableUnknowMailsAutoCleanup, cleanUnknowMailsDays,
enableAddressAutoCleanup, cleanAddressDays,
enableSendBoxAutoCleanup, cleanSendBoxDays
} = data || {};
/** @type {boolean|undefined} */
@@ -41,10 +40,6 @@ export class CleanupSettings {
/** @type {number|undefined} */
this.cleanUnknowMailsDays = cleanUnknowMailsDays;
/** @type {boolean|undefined} */
this.enableAddressAutoCleanup = enableAddressAutoCleanup;
/** @type {number|undefined} */
this.cleanAddressDays = cleanAddressDays;
/** @type {boolean|undefined} */
this.enableSendBoxAutoCleanup = enableSendBoxAutoCleanup;
/** @type {number|undefined} */
this.cleanSendBoxDays = cleanSendBoxDays;