1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2025-04-05 00:27:25 +00:00

Only consider messages that weren't rejected

This commit is contained in:
downtownallday 2021-03-17 15:33:16 -04:00
parent 8a6f962b3e
commit b7faafca6b
2 changed files with 9 additions and 7 deletions

View File

@ -1,12 +1,13 @@
--
-- top 10 senders by message count
--
select count(mta_accept_id) as count, sasl_username as username
from mta_connection
join mta_accept on mta_accept.mta_conn_id = mta_connection.mta_conn_id
where mta_connection.service = "submission" AND
SELECT count(mta_accept_id) AS count, sasl_username AS username
FROM mta_connection
JOIN mta_accept ON mta_accept.mta_conn_id = mta_connection.mta_conn_id
WHERE mta_connection.service = "submission" AND
queue_time IS NOT NULL AND
connect_time >= :start_date AND
connect_time < :end_date
group by sasl_username
order by count(mta_accept_id) DESC
limit 10
GROUP BY sasl_username
ORDER BY count(mta_accept_id) DESC
LIMIT 10

View File

@ -5,6 +5,7 @@ SELECT sum(message_size) AS message_size_total, sasl_username AS username
FROM mta_connection
JOIN mta_accept ON mta_accept.mta_conn_id = mta_connection.mta_conn_id
WHERE mta_connection.service = "submission" AND
queue_time IS NOT NULL AND
connect_time >= :start_date AND
connect_time < :end_date
GROUP BY sasl_username