Skip to content

Commit

Permalink
Merge pull request #18319 from mozilla/FXA-10962
Browse files Browse the repository at this point in the history
fix(auth): update bounce config defaults
  • Loading branch information
jonalmeida authored Feb 7, 2025
2 parents 1463f62 + bc38e09 commit 93debd9
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions packages/fxa-auth-server/config/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -522,9 +522,10 @@ const convictConf = convict({
doc: 'Tiers of max allowed complaints per amount of milliseconds',
format: Object,
default: {
// # of bounces allowed : time since last bounce
0: 3 * FIVE_MINUTES,
1: ONE_DAY,
// 0 are allowed in the past day.
// 1 is allowed in the past year.
0: ONE_DAY,
1: 365 * ONE_DAY,
},
env: 'BOUNCES_COMPLAINT',
},
Expand Down

0 comments on commit 93debd9

Please sign in to comment.