Skip to content

Commit

Permalink
fix: turn off rate limiting
Browse files Browse the repository at this point in the history
  • Loading branch information
niftylettuce committed Aug 13, 2020
1 parent 071e753 commit 3255c90
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions index.js
Expand Up @@ -1949,9 +1949,9 @@ class ForwardEmail {
try {
// if (!address.address)
// throw new Error('Envelope MAIL FROM is missing on your message');
if (address && address.address)
await this.validateRateLimit(address.address);
else throw new Error('Missing MAIL FROM');
// if (address && address.address)
// await this.validateRateLimit(address.address);
// else throw new Error('Missing MAIL FROM');
/*
await Promise.all([
this.validateRateLimit(address.address),
Expand Down

0 comments on commit 3255c90

Please sign in to comment.