@social-mail/social-mail-web-server 1.8.341 → 1.8.342

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@social-mail/social-mail-web-server",
3
- "version": "1.8.341",
3
+ "version": "1.8.342",
4
4
  "description": "## Phase 1",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -165,7 +165,9 @@ export default class MailReceiverService {
165
165
  }
166
166
 
167
167
  const mailbox = await this.db.mailboxes
168
- .where(address, (p) => (x) => x.emailAddress.emailAddress === p.address)
168
+ .where(address, (p) => (x) => x.emailAddress.emailAddress === p.address
169
+ && x.domain.hostedDomain.enableReceive === true
170
+ )
169
171
  .first();
170
172
  if (mailbox == null) {
171
173
  await this.addDomainActivity("rcpt-not-found");