Overriding limits for an identifier
1
Head over to your namespace page
Click “Ratelimit” in the sidebar > select your namespace > Overrides
2
Create a new override

3
Save
Click Create to roll out the override globally. It may take up to 60s at most but is usually done in just a few seconds.From now on, when the specified identifier gets ratelimited, it’ll use the custom limits, rather than what is defined in your code.
Wildcard Rules
You can use wildcards (*) in your override to match multiple identifiers.
Exact override matches take precedence over wildcard matches, but there’s no guarantee of order between multiple wildcard matches yet.
Example:
Given a base limit of 10/60s and these overrides:
*@domain.com: 20/60shello@domain.com: 100/s
| requested identifier | match | used ratelimit | 
|---|---|---|
abc@domain.com | wildcard | 20/60s | 
hello@domain.com | exact | 100/s | 
xyz | - | 10/60s | 
customer.com domain.

Examples
| override | matches | 
|---|---|
*@domain.com | 1@domain.com, hello@domain.com | 
invite:* | invite:abc, invite:hello world | 
prefix*suffix | prefixhelloworldsuffix |