Skip to content

Commit

Permalink
in case of redis error return MTA-STS is disabled
Browse files Browse the repository at this point in the history
  • Loading branch information
NickOvt committed Oct 3, 2024
1 parent 33c5d28 commit be09d0c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/sender.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ class Sender extends EventEmitter {

get: async domain => {
if (!db.redis) {
return;
return { enabled: false, error: 'Redis connection error' }; // if no redis return that MTA-STS is disabled
}
try {
let json = await db.redis.get(`sts:${domain}`);
Expand All @@ -123,6 +123,7 @@ class Sender extends EventEmitter {
}
} catch (err) {
log.error(this.logName + '/MTA-STS', 'Redis error domain=%s err=%s', domain, err.message);
return { enabled: false, error: 'Redis request and connection error' }; // If redis error return MTA-STS is disabled
}
}
},
Expand Down

0 comments on commit be09d0c

Please sign in to comment.