Documentation Index
Fetch the complete documentation index at: https://docs.sendpost.io/llms.txt
Use this file to discover all available pages before exploring further.
Common Issues
TPSP Creation Fails (SMTP Connectivity Test)
TPSP Creation Fails (SMTP Connectivity Test)
- Ensure the SMTP host and port are reachable from SendPost (firewall, security groups)
- For STARTTLS/TLS: verify certificate and that the server supports the chosen security
- For auth: confirm username/password are correct and the server accepts PLAIN or LOGIN
- Try connecting manually:
telnet smtp.yourhost.com 587oropenssl s_client -connect smtp.yourhost.com:587 -starttls smtp
POST /api/v1/tpsp/test/custom-smtp with the same SMTP config in the body.Emails Not Sending / CSDropped
Emails Not Sending / CSDropped
- No return path domain: If CSDropped shows “No verified return path domain configured for sender domain”, the sender domain has no verified return path; this is non-retryable.
- Confirm the IP Pool used in the request routes to your Custom SMTP TPSP
- Check that your SMTP server is up and accepting connections on the configured port
- Review CSDropped event details: SMTP code and description indicate relay failure (e.g., 5xx, connection timeout)
- Ensure rate limits (global and per-provider) are not exceeded
- Verify no suppression or validation rules are dropping the message before relay
Events Not Appearing (Agent)
Events Not Appearing (Agent)
- Confirm the event reporting agent is installed and running on the MTA server
- Verify the agent uses the correct Event Ingestion API Key (header
X-SP-Event-ApiKey) - Ensure each event has valid
message_id(SendPost UUID) andevent_typeindelivered,bounced,deferred,soft_bounced - Check agent config: correct log path (e.g.
/var/log/mail.log), endpoint URL - Ensure Postfix preserves headers (e.g.
X-Sendpost-Message-UUID) so the agent can correlate queue ID → message UUID - Check agent health:
http://localhost:9113/healthand logs for parse/connect errors - In SendPost dashboard: “Agent status” should show ✓ when agent has reported recently
Bounces Not Reflected
Bounces Not Reflected
- Agent: The agent sends
bouncedorsoft_bounced; SendPost classifies to CSHardBounced vs CSSoftBounced using the SMTP description (keyword-based). Ensure the agent is running and includessmtp_descriptionwhen available. - Bounce processor: Async DSNs must go to your bounce address. Return-Path is
bounces+{uuid}+{said}@sp-bounce.{domain}; ensuresp-bounce.{domain}CNAMEs tosp.sendpost.infoand that your MTA sends bounces to that address. - In Events, filter by CSHardBounced (63) and CSSoftBounced (64).
Deferred not visible in UI
Deferred not visible in UI
Agent Correlation Warnings
Agent Correlation Warnings
X-Sendpost-Message-UUID (or the header used for correlation) through your Postfix pipeline. Document required Postfix config in your runbook.Getting Help
If issues persist:- Events: Use the SendPost Events page with filters (provider, event type, date) and note message IDs and timestamps.
- Support: Contact SendPost support with:
- Account ID and Custom SMTP TPSP ID
- Message ID(s) and example timestamps
- Error messages or SMTP codes from CSDropped/agent logs
- Whether the agent is installed and agent_last_seen_at recent
FAQs
Can I use multiple Custom SMTP servers?
Can I use multiple Custom SMTP servers?
Is the Event Ingestion API Key the same as my SendPost API key?
Is the Event Ingestion API Key the same as my SendPost API key?
Does SendPost sign DKIM for Custom SMTP?
Does SendPost sign DKIM for Custom SMTP?
What if my SMTP server goes down?
What if my SMTP server goes down?
Can I route some traffic to Custom SMTP and some to SendPost IPs?
Can I route some traffic to Custom SMTP and some to SendPost IPs?
ippool parameter in the send API.Is the agent open source?
Is the agent open source?
How do I update the agent?
How do I update the agent?
Are duplicate events possible?
Are duplicate events possible?