Skip to content

Commit bc38e09

Browse files
committed
fix(auth): update bounce config defaults
A partial revert of 82b67a4.
1 parent f270419 commit bc38e09

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

packages/fxa-auth-server/config/index.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -522,9 +522,10 @@ const convictConf = convict({
522522
doc: 'Tiers of max allowed complaints per amount of milliseconds',
523523
format: Object,
524524
default: {
525-
// # of bounces allowed : time since last bounce
526-
0: 3 * FIVE_MINUTES,
527-
1: ONE_DAY,
525+
// 0 are allowed in the past day.
526+
// 1 is allowed in the past year.
527+
0: ONE_DAY,
528+
1: 365 * ONE_DAY,
528529
},
529530
env: 'BOUNCES_COMPLAINT',
530531
},

0 commit comments

Comments
 (0)