@@ -33,15 +33,10 @@ public class Mailbox: Object, Codable, Identifiable {
33
33
@Persisted public var mailboxId : Int
34
34
@Persisted public var hostingId : Int
35
35
@Persisted public var isPrimary : Bool
36
- @Persisted public var passwordStatus : String
37
36
@Persisted public var isPasswordValid : Bool
38
37
@Persisted public var isValidInLDAP : Bool
39
38
@Persisted public var isLocked : Bool
40
- @Persisted public var hasSocialAndCommercialFiltering : Bool
41
39
@Persisted public var isSpamFilter : Bool
42
- @Persisted public var showConfigModal : Bool
43
- @Persisted public var forceResetPassword : Bool
44
- @Persisted public var mdaVersion : String
45
40
@Persisted public var isLimited : Bool
46
41
@Persisted public var isFree : Bool
47
42
@Persisted public var dailyLimit : Int
@@ -88,15 +83,10 @@ public class Mailbox: Object, Codable, Identifiable {
88
83
case mailboxId
89
84
case hostingId
90
85
case isPrimary
91
- case passwordStatus
92
86
case isPasswordValid
93
87
case isValidInLDAP = " isValid "
94
88
case isLocked
95
- case hasSocialAndCommercialFiltering
96
89
case isSpamFilter
97
- case showConfigModal
98
- case forceResetPassword
99
- case mdaVersion
100
90
case isLimited
101
91
case isFree
102
92
case dailyLimit
@@ -117,15 +107,10 @@ public class Mailbox: Object, Codable, Identifiable {
117
107
mailboxId: Int ,
118
108
hostingId: Int ,
119
109
isPrimary: Bool ,
120
- passwordStatus: String ,
121
110
isPasswordValid: Bool ,
122
111
isValidInLDAP: Bool ,
123
112
isLocked: Bool ,
124
- hasSocialAndCommercialFiltering: Bool ,
125
113
isSpamFilter: Bool ,
126
- showConfigModal: Bool ,
127
- forceResetPassword: Bool ,
128
- mdaVersion: String ,
129
114
isLimited: Bool ,
130
115
isFree: Bool ,
131
116
dailyLimit: Int ,
@@ -141,15 +126,10 @@ public class Mailbox: Object, Codable, Identifiable {
141
126
self . mailboxId = mailboxId
142
127
self . hostingId = hostingId
143
128
self . isPrimary = isPrimary
144
- self . passwordStatus = passwordStatus
145
129
self . isPasswordValid = isPasswordValid
146
130
self . isValidInLDAP = isValidInLDAP
147
131
self . isLocked = isLocked
148
- self . hasSocialAndCommercialFiltering = hasSocialAndCommercialFiltering
149
132
self . isSpamFilter = isSpamFilter
150
- self . showConfigModal = showConfigModal
151
- self . forceResetPassword = forceResetPassword
152
- self . mdaVersion = mdaVersion
153
133
self . isLimited = isLimited
154
134
self . isFree = isFree
155
135
self . dailyLimit = dailyLimit
@@ -166,15 +146,10 @@ public class Mailbox: Object, Codable, Identifiable {
166
146
mailboxId = try container. decode ( Int . self, forKey: . mailboxId)
167
147
hostingId = try container. decode ( Int . self, forKey: . hostingId)
168
148
isPrimary = try container. decode ( Bool . self, forKey: . isPrimary)
169
- passwordStatus = try container. decode ( String . self, forKey: . passwordStatus)
170
149
isPasswordValid = try container. decode ( Bool . self, forKey: . isPasswordValid)
171
150
isValidInLDAP = try container. decode ( Bool . self, forKey: . isValidInLDAP)
172
151
isLocked = try container. decode ( Bool . self, forKey: . isLocked)
173
- hasSocialAndCommercialFiltering = try container. decode ( Bool . self, forKey: . hasSocialAndCommercialFiltering)
174
152
isSpamFilter = try container. decode ( Bool . self, forKey: . isSpamFilter)
175
- showConfigModal = try container. decode ( Bool . self, forKey: . showConfigModal)
176
- forceResetPassword = try container. decode ( Bool . self, forKey: . forceResetPassword)
177
- mdaVersion = try container. decode ( String . self, forKey: . mdaVersion)
178
153
isLimited = try container. decode ( Bool . self, forKey: . isLimited)
179
154
isFree = try container. decode ( Bool . self, forKey: . isFree)
180
155
dailyLimit = try container. decode ( Int . self, forKey: . dailyLimit)
0 commit comments