# Listmonk FAQs

<div id="bkmrk-" style="clear: left;"></div><div class="page-wrapper" id="bkmrk-%E2%9A%A1-internal-reference"><header class="header"></header><nav class="toc">1. [How do I get the unsubscribed / bounced / complained people from SES and add them to Listmonk's blocklist?](https://wiki.aikyamfellows.org/books/newsletter/page/listmonk-faqs#bkmrk-)
2. [How do I identify truly active subscribers of my newsletter?](https://wiki.aikyamfellows.org/books/newsletter/page/listmonk-faqs#bkmrk--1)
3. [What are safe bounce and complaint rate thresholds, and where do I check them?](https://wiki.aikyamfellows.org/books/newsletter/page/listmonk-faqs#bkmrk--2)
4. [How do I check how many emails I've sent today and how many I have left?](https://wiki.aikyamfellows.org/books/newsletter/page/listmonk-faqs#bkmrk--3)
5. [What should I review in SES after every campaign send?](https://wiki.aikyamfellows.org/books/newsletter/page/listmonk-faqs#bkmrk--4)
6. [How do I find out which emails permanently bounced so I can clean my list?](https://wiki.aikyamfellows.org/books/newsletter/page/listmonk-faqs#bkmrk--5)
7. [How do I check if my sending domain/identity is still verified and healthy?](https://wiki.aikyamfellows.org/books/newsletter/page/listmonk-faqs#bkmrk--6)
8. [What does the Virtual Deliverability Manager (VDM) dashboard tell me and when should I use it?](https://wiki.aikyamfellows.org/books/newsletter/page/listmonk-faqs#bkmrk--7)

</nav><div class="faq-item"><div class="faq-number">FAQ 01</div></div></div>## How do I get the unsubscribed / bounced / complained people from SES and add them to Listmonk's blocklist?

<div class="page-wrapper" id="bkmrk-ses-listmonk-bounces"><div class="faq-item"><div class="faq-tags"><span class="tag tag-ses">SES,</span> <span class="tag tag-listmonk">Listmonk,</span> <span class="tag tag-bounce">Bounces,</span> <span class="tag tag-complaint">Complaints</span></div><div class="faq-answer">  
</div></div></div>SES automatically maintains a **Suppression List** — it contains every email address that has hard-bounced or been marked as spam. You need to periodically sync this list into Listmonk's blocklist so that Listmonk also stops sending to these addresses.

**Where to find the Suppression List in SES:**

<p class="callout info">**SES Console <span class="sep">→</span> Suppression List <span class="sep">→</span> Suppression list tab**</p>

<div class="page-wrapper" id="bkmrk-open-the-amazon-ses-"><div class="faq-item"><div class="faq-answer"><div class="nav-path">  
</div>1. Open the **Amazon SES Console** and make sure you're in the correct region (*Asia Pacific — Mumbai*).
2. Go to **Suppression List** in the left sidebar. You'll see all email addresses that SES has suppressed, along with the reason (Bounce or Complaint) and the date added.
3. Export or note down the suppressed email addresses. You can filter by reason if you only want bounces or only complaints.
4. In **Listmonk**, go to **Subscribers → All Subscribers**. Search for each suppressed email, select it, and mark it as **Blocklisted**. For bulk actions, you can use Listmonk's import feature with the blocklist flag set to `true`.
5. After blocklisting in Listmonk, optionally remove the address from SES's suppression list only if you've confirmed the address is now in Listmonk's blocklist — this avoids double-handling next time.

<div class="callout"><span class="callout-icon">💡 **Recommended cadence:** Check the SES Suppression List at least once a week (ideally after every major campaign) and sync new entries to Listmonk's blocklist. This keeps your bounce rate low and prevents your SES account from being flagged.</span></div></div></div></div><div class="page-wrapper" id="bkmrk-%E2%9A%A0%EF%B8%8F-why-this-matters%3A"><div class="faq-item"><div class="faq-answer"><div class="callout">**<span class="callout-icon">⚠️</span> Why this matters:** SES stops sending to suppressed addresses automatically, but Listmonk doesn't know about it. If you don't sync, Listmonk will keep queueing emails to these addresses, wasting your daily sending quota and causing delivery errors in your campaign reports.</div></div></div></div><div class="page-wrapper" id="bkmrk-faq-02">---

<div class="faq-item"><div class="faq-number">FAQ 02</div></div></div>## How do I identify the truly active subscribers of my newsletter?

<div class="page-wrapper" id="bkmrk-listmonk-sql-query"><div class="faq-item"><div class="faq-tags"><span class="tag tag-listmonk">Listmonk,</span> <span class="tag tag-query">SQL Query</span></div><div class="faq-answer">  
</div></div></div>For us, an **"active subscriber"** is someone who has received at least 9–10 newsletters/campaigns *and* has opened at least one of them (i.e., open rate &gt; 0%). This filters out both new subscribers who haven't had enough exposure and long-time subscribers who never engage.

**Conversely, to find inactive subscribers** — people who received enough campaigns but never opened a single one — use the query below in Listmonk's subscriber search:

<p class="callout info">Listmonk → Subscribers → Query Subscribers → Advanced  
Listmonk SQL — Inactive Subscribers</p>

```sql
-- Subscribers who received ≥ 9 campaigns but opened ZERO
EXISTS(
  SELECT 1
    FROM campaign_lists cl
    INNER JOIN subscriber_lists sl
      ON cl.list_id = sl.list_id
    WHERE sl.subscriber_id = subscribers.id
    GROUP BY sl.subscriber_id
    HAVING COUNT(DISTINCT cl.campaign_id) >= 9
)
AND NOT EXISTS(
  SELECT 1
    FROM campaign_views cv
    WHERE cv.subscriber_id = subscribers.id
)
```

**What this query does:**

<div class="page-wrapper" id="bkmrk-the-first-exists-blo"><div class="faq-item"><div class="faq-answer">1. The first `EXISTS` block finds subscribers who belong to lists that have been targeted by at least 9 distinct campaigns — meaning they've had enough exposure to your content.
2. The `AND NOT EXISTS` block filters to only those who have **zero entries** in the `campaign_views` table — meaning they never opened a single email.
3. The result is your **inactive segment**: people who've had plenty of chances to engage but haven't. You can then decide whether to re-engage them with a special campaign or blocklist them.

<div class="callout"><span class="callout-icon">💡 **To find active subscribers instead**, flip the second condition: change `AND NOT EXISTS` to `AND EXISTS`. This gives you everyone who received ≥ 9 campaigns *and* opened at least one.</span></div></div></div></div><div class="page-wrapper" id="bkmrk-%F0%9F%93%8A-recommended-cadenc"><div class="faq-item"><div class="faq-answer"><div class="callout">**<span class="callout-icon">📊</span> Recommended cadence**: Run this query monthly. Use the inactive list to run a re-engagement campaign ("We miss you!"). If they still don't open after 2–3 re-engagement attempts, consider blocklisting to improve your overall open rates and SES reputation.</div></div></div></div><div class="page-wrapper" id="bkmrk-faq-03">---

<div class="faq-item"><div class="faq-number">FAQ 03</div></div></div>## What are safe bounce and complaint rate thresholds, and where do I check them?

<div class="page-wrapper" id="bkmrk-ses-bounces-complain"><div class="faq-item"><div class="faq-tags"><span class="tag tag-ses">SES,</span> <span class="tag tag-bounce">Bounces,</span> <span class="tag tag-complaint">Complaints</span></div><div class="faq-answer">  
</div></div></div>Your bounce and complaint rates directly determine your SES account health. If they go too high, AWS will put your account under review or suspend it entirely.

**Where to check:**

<p class="callout info">**SES Console → Reputation metrics → Summary**</p>

<div class="page-wrapper" id="bkmrk-metric-safe-warning-"><div class="faq-item"><div class="faq-answer"><div class="nav-path">  
</div><table class="threshold-table" style="width: 78.1482%; height: 158px;"><thead><tr style="height: 29.8px;"><th style="width: 28.7309%; height: 29.8px;">Metric</th><th style="width: 24.2864%; height: 29.8px;">Safe</th><th style="width: 25.2388%; height: 29.8px;">Warning</th><th style="width: 21.9053%; height: 29.8px;">Dangerous</th></tr></thead><tbody><tr style="height: 29.8px;"><td style="width: 28.7309%; height: 29.8px;">**Bounce rate**</td><td style="width: 24.2864%; height: 29.8px;">Below 2%</td><td style="width: 25.2388%; height: 29.8px;">2% – 5%</td><td style="width: 21.9053%; height: 29.8px;">Above 5%</td></tr><tr style="height: 29.8px;"><td style="width: 28.7309%; height: 29.8px;">**Complaint rate**</td><td style="width: 24.2864%; height: 29.8px;">Below 0.08%</td><td style="width: 25.2388%; height: 29.8px;">0.08% – 0.1%</td><td style="width: 21.9053%; height: 29.8px;">Above 0.1%</td></tr><tr style="height: 53.8px;"><td style="width: 28.7309%; height: 53.8px;">**Account status**</td><td style="width: 24.2864%; height: 53.8px;">Healthy</td><td style="width: 25.2388%; height: 53.8px;">Under Review</td><td style="width: 21.9053%; height: 53.8px;">At Risk</td></tr></tbody></table>

<div class="callout callout-warning"><span class="callout-icon">⚠️ </span>**Key point:** The "historic bounce rate" shown in SES is calculated over a representative volume — it's your account's long-term health indicator, not a real-time number. Check it at least weekly, and always after large campaign sends.</div></div></div></div><div class="page-wrapper" id="bkmrk-faq-04">---

<div class="faq-item"><div class="faq-number">FAQ 04</div></div></div>## How do I check how many emails I've sent today and how many I have left?

<div class="page-wrapper" id="bkmrk-ses"><div class="faq-item"><div class="faq-tags"><span class="tag tag-ses">SES</span></div><div class="faq-answer">  
</div></div></div>The SES account dashboard shows your daily sending usage at a glance.

<p class="callout info">SES Console → Account dashboard → Daily email usage</p>

You'll see three numbers:

<div class="page-wrapper" id="bkmrk-emails-sent-%E2%80%94-how-ma"><div class="faq-item"><div class="faq-answer">1. **Emails sent** — how many you've sent in the current 24-hour window.
2. **Remaining sends** — how many more you can send before hitting the daily quota.
3. **Sending quota used** — percentage of daily limit consumed.

</div></div></div>Our current limits: **80,000 emails per 24 hours** with a maximum send rate of **14 emails per second**. If you're approaching the limit before a large campaign, request a limit increase through the SES console.

<div class="page-wrapper" id="bkmrk-%F0%9F%92%A1"><div class="faq-item"><div class="faq-answer"><div class="callout"><span class="callout-icon">💡 </span>**Tip:** Always check this *before* scheduling a large campaign in Listmonk. If your remaining quota is less than your subscriber count, the campaign will partially fail silently.</div></div></div></div><div class="page-wrapper" id="bkmrk-faq-05">---

<div class="faq-item"><div class="faq-number">FAQ 05</div></div></div>## What should I review in SES after every campaign send?

<div class="page-wrapper" id="bkmrk-ses-listmonk"><div class="faq-item"><div class="faq-tags"><span class="tag tag-ses">SES, </span><span class="tag tag-listmonk">Listmonk</span></div><div class="faq-answer">  
</div></div></div>After each newsletter or campaign, do a quick post-send review using these SES sections:

<div class="page-wrapper" id="bkmrk-sending-statistics-%E2%80%94"><div class="faq-item"><div class="faq-answer">1. **Sending Statistics** — Check the charts for the last 1 day. Look at successful sends, rejections, bounces, and complaints. If bounces or complaints spike, investigate immediately.
2. **Reputation Metrics** — Confirm account status is still *Healthy*. Check that bounce rate and complaint rate haven't crossed into warning thresholds.
3. **Suppression List** — Check for newly added addresses. Sync any new entries into Listmonk's blocklist (see [FAQ 01](https://wiki.aikyamfellows.org/books/newsletter/page/listmonk-faqs#bkmrk-)).
4. **VDM Dashboard** — Review open rate and click rate for the campaign period. Compare against your baseline to see if engagement is trending up or down.

<div class="callout"><span class="callout-icon">📊 </span>**Pro tip:** Use the "View in CloudWatch" buttons on the sending statistics charts to set up alarms for bounce/complaint rate spikes. This way you get notified automatically instead of checking manually.</div></div></div></div><div class="page-wrapper" id="bkmrk-faq-06">---

<div class="faq-item"><div class="faq-number">FAQ 06</div></div></div>## How do I find out which emails permanently bounced so I can clean my list?

<div class="page-wrapper" id="bkmrk-ses-listmonk-bounces-1"><div class="faq-item"><div class="faq-tags"><span class="tag tag-ses">SES,</span> <span class="tag tag-listmonk">Listmonk,</span> <span class="tag tag-bounce">Bounces</span></div><div class="faq-answer">  
</div></div></div>There are two types of bounces in SES:

<div class="page-wrapper" id="bkmrk-permanent-bounces-%E2%80%94-"><div class="faq-item"><div class="faq-answer">1. **Permanent bounces** — Invalid or non-existent email addresses. These will *never* succeed and should be removed from your list immediately. They show up in the SES Suppression List with reason "Bounce".
2. **Transient bounces** — Temporary failures (full mailbox, server down). These may succeed on retry and don't necessarily need removal.

</div></div></div>**To clean your list:**

<div class="page-wrapper" id="bkmrk-go-to-the-ses-suppre"><div class="faq-item"><div class="faq-answer">1. Go to the **SES Suppression List** and filter by reason = *Bounce*.
2. Export or note the permanently bounced addresses.
3. In Listmonk, blocklist these subscribers to prevent future sends.

</div></div></div>You can also check the VDM dashboard's Metrics pane — look at the **Permanent bounces** line in the time-series graph for date ranges around your campaign sends.

<div class="page-wrapper" id="bkmrk-faq-07"><div class="faq-item" id="bkmrk--6"><div class="faq-answer">  
</div></div>---

<div class="faq-item"><div class="faq-number">FAQ 07</div></div></div>## How do I check if my sending domain/identity is still verified and healthy?

<div class="page-wrapper" id="bkmrk-ses-1"><div class="faq-item"><div class="faq-tags"><span class="tag tag-ses">SES</span></div><div class="faq-answer">  
</div></div></div>You can only send emails from verified identities. If verification lapses or DNS records change, your sends will fail.

<p class="callout info">SES Console → Identities</p>

<div class="page-wrapper" id="bkmrk-open-the-identities-"><div class="faq-item"><div class="faq-answer">1. Open the **Identities** page and confirm that your domain (e.g., `emails.tinybridge.org`) shows a *Verified* status.
2. If any identity shows *Unverified*, you cannot send from it. Re-verify by updating DNS records as prompted by SES.
3. A domain-level identity covers all email addresses under that domain — it's more robust than verifying individual email addresses.

<div class="callout"><span class="callout-icon">💡 </span>**Check this when:** You notice unexpected delivery failures in Listmonk, you've recently changed DNS records, or as part of your monthly infrastructure review.</div></div></div></div><div class="page-wrapper" id="bkmrk-faq-08">---

<div class="faq-item"><div class="faq-number">FAQ 08</div></div></div>## What does the Virtual Deliverability Manager (VDM) dashboard tell me and when should I use it?

<div class="page-wrapper" id="bkmrk-ses-2"><div class="faq-item"><div class="faq-tags"><span class="tag tag-ses">SES</span></div><div class="faq-answer">  
</div></div></div>The VDM dashboard is your high-level view of how well your emails are actually performing — not just whether they were sent, but whether they were delivered, opened, and clicked.

<p class="callout info">SES Console → Virtual Deliverability Manager → Dashboard</p>

**Key metrics to focus on:**

<div class="page-wrapper" id="bkmrk-total-send-volume-%E2%80%94-"><div class="faq-item"><div class="faq-answer">1. **Total Send Volume** — Your baseline. Track weekly to spot unexpected drops or spikes.
2. **Delivered rate** — Emails accepted by the recipient's mail server. Should be consistently high. A drop here means delivery issues.
3. **Open Rate** — Percentage of delivered emails that were opened (tracked via a tiny invisible pixel). This tells you if your subject lines and content are working.
4. **Click Rate** — Of those who opened, how many clicked a link. This is your engagement quality metric.
5. **Complaints vs. Transient vs. Permanent bounces** — Time-series graphs let you spot trends. Use the "Select metrics" dropdown to toggle these on/off.

</div></div></div>Use the **Date range** selector (Relative or Absolute) to compare different campaign periods. The Metrics pane shows daily-aggregated time-series graphs with volume on the left axis and rates on the right.

<div class="page-wrapper" id="bkmrk-%F0%9F%93%8A-1"><div class="faq-item"><div class="faq-answer"><div class="callout"><span class="callout-icon">📊 </span>**When to use VDM:** After every campaign for a quick health check, and weekly for trend analysis. If you notice open rates declining over time, it may be time to run the active subscriber query ([FAQ 02](https://wiki.aikyamfellows.org/books/newsletter/page/listmonk-faqs#bkmrk--1)) and clean your list.</div></div></div></div><div class="page-wrapper" id="bkmrk-maintained-by-the-ai"><footer class="footer">Last updated April 13 2026

Credits: Greeshma for the docs

</footer></div><div class="notranslate" id="bkmrk--1" style="all: initial;">  
</div>