From 57306c798c816fa311080d53429724e339d2a943 Mon Sep 17 00:00:00 2001
From: Bob Mottram <bob@freedombone.net>
Date: Wed, 25 Mar 2020 10:23:08 +0000
Subject: [PATCH] Always show over quota messages

---
 inbox.py | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/inbox.py b/inbox.py
index 35609ca6..e95f2a2c 100644
--- a/inbox.py
+++ b/inbox.py
@@ -2111,8 +2111,7 @@ def runInboxQueue(recentPostsCache: {},maxRecentPosts: int, \
                 if domainMaxPostsPerDay>0:
                     if quotasDaily['domains'].get(postDomain):
                         if quotasDaily['domains'][postDomain]>domainMaxPostsPerDay:
-                            if debug:
-                                print('DEBUG: Maximum posts for '+postDomain+' reached')
+                            print('DEBUG: Quota - Maximum posts for '+postDomain+' reached')
                             if len(queue)>0:
                                 queue.pop(0)
                             continue