Skip to content

Commit

Permalink
Make default for MaxBodyBytes 1MB
Browse files Browse the repository at this point in the history
  • Loading branch information
rowanseymour committed Jan 23, 2020
1 parent 3a13a27 commit aeba50d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ func NewMailroomConfig() *Config {

WebhooksTimeout: 15000,
WebhooksMaxRetries: 2,
WebhooksMaxBodyBytes: 10000,
WebhooksMaxBodyBytes: 1024 * 1024, // 1MB
WebhooksInitialBackoff: 5000,
WebhooksBackoffJitter: 0.5,
SMTPServer: "",
Expand Down

0 comments on commit aeba50d

Please sign in to comment.