To keep our sending infrastructure reliable and fair for all customers, we limit two things per sending IP address:
New connections per second: up to 5 new SMTP connections per second (averaged over a 60-second window).
Data throughput per connection: up to 10 MB/s per connection.
For most everyday setups: a website sending welcome emails, an accounting tool sending invoices, these limits are well above your typical sending rate. You are unlikely to notice them.
How much email is that, exactly?
It depends on message size. Here are three common scenarios:
|
Email type |
Approx. size |
Rate per second |
Example |
|
Small (plain HTML, no images) |
~80 KB |
~125 emails/sec |
OTP, password reset |
|
Medium (HTML with logo/header) |
~250 KB |
~40 emails/sec |
Newsletter, marketing email |
|
With attachment (PDF invoice) |
~2 MB |
~5 emails/sec |
Monthly invoice or statement |
Maximum message size: 25 MB per message (about 18 MB of actual content after encoding). Anything larger is rejected outright — use a cloud storage link instead.
These rates are sustained, meaning you can keep going at that pace all day without hitting a wall — as long as your application reuses SMTP connections (called connection pooling), which every standard mail library does by default.
Our server rejects the excess connections at the network level. Your application will see a "connection refused" or "connection reset" error. What happens next depends on your software:
Repeated blocks: If the same IP triggers 5 ban events within 24 hours, the next block extends to 7 days. Contact support if this happens; it usually means something is badly misconfigured.
If a client fails to authenticate 5 times within 10 minutes (usually a misconfigured app with outdated credentials), that IP is blocked for 1 hour. Fix the credentials and wait for the block to expire, or contact support for an early unblock.
Nothing is rejected; we simply slow the connection down to the 10 MB/s ceiling. Your software won't see an error; sending will just appear slightly slower. In practice, this almost never affects normal email:
Most billing tools handle this gracefully; they open a small pool of long-lived connections (2–5) and pipeline messages through them. A 5,000-invoice run typically finishes in a few minutes without ever approaching our limits.
If a system opens a fresh connection per invoice and tries to send all 5,000 simultaneously, it will hit the 5 conn/sec ceiling. A well-behaved system retries and completes successfully, just more slowly.
|
Setting |
Value |
|
Host |
smtp.touchbasepro.io |
|
Ports |
25 (STARTTLS), 465 (implicit TLS), 587 (STARTTLS) |
|
Authentication |
AUTH PLAIN / AUTH LOGIN over TLS |
|
TLS |
TLS 1.2 minimum (TLS 1.3 preferred) |
|
Limit |
Threshold |
Behaviour when exceeded |
|
New TCP connections |
5/sec (60-second average) |
Connection refused at L4 (no SMTP banner returned) |
|
Per-connection bandwidth |
10 MB/s each direction |
Throttled in-place — connection stays open, just slower |
|
Concurrent sessions |
1,000 (service-wide) |
TCP accept queue, then refused |
|
Max message size |
25 MB per message |
552 5.3.4 Message size exceeds fixed maximum message size |
|
AUTH failures |
5 within 10 minutes |
Source IP blocked at firewall for 1 hour |
|
Repeated rate-limit hits |
5 reject events within 10 minutes |
Source IP blocked for 1 hour |
|
Recidivism |
5 ban events within 24 hours |
Source IP blocked for 7 days |
|
Message size |
Single reused connection |
5 concurrent connections |
|
80 KB (small / OTP) |
~125/sec |
~600/sec |
|
250 KB (medium / HTML) |
~40/sec |
~200/sec |
|
2 MB (with PDF attachment) |
~5/sec |
~25/sec |
|
10 MB (large attachment) |
~1/sec |
~5/sec |
Note: The bandwidth cap binds before the connection count for all but the smallest messages. To exceed these aggregate rates, split egress across multiple source IPs.
|
Symptom |
Likely cause |
What to do |
|
Immediate ECONNRESET, no SMTP 220 banner |
Exceeding 5 connections/sec |
Apply retry-with-backoff. No messages were lost — the connection was refused before any SMTP command. |
|
No error, but sending is slower than expected |
Per-connection bandwidth cap hit |
Open additional connections if you need higher aggregate throughput. |
|
Connections silently dropped (no RST, no response) |
IP is inside a fail2ban block window |
Wait for the block to expire, or contact support for an early unblock. |
|
552 5.3.4 at end of DATA |
Message exceeds 25 MB |
Reduce attachment size or use a cloud storage link. |
|
5 AUTH failures, then silent drops |
Misconfigured credentials |
Fix credentials. Contact support if you need an early unblock. |
If you're seeing persistent connection issues or believe your IP has been incorrectly blocked, get in touch with our support team on help@touchbasepro.com and include your source IP address. We're happy to take a look.