We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1463f62 + bc38e09 commit 93debd9Copy full SHA for 93debd9
1 file changed
packages/fxa-auth-server/config/index.ts
@@ -522,9 +522,10 @@ const convictConf = convict({
522
doc: 'Tiers of max allowed complaints per amount of milliseconds',
523
format: Object,
524
default: {
525
- // # of bounces allowed : time since last bounce
526
- 0: 3 * FIVE_MINUTES,
527
- 1: ONE_DAY,
+ // 0 are allowed in the past day.
+ // 1 is allowed in the past year.
+ 0: ONE_DAY,
528
+ 1: 365 * ONE_DAY,
529
},
530
env: 'BOUNCES_COMPLAINT',
531
0 commit comments