-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fetch all e-mail reports #95
Comments
This ceases to be acceptable when the daily volume of reports is large enough and there is a limit on the number of reports that can be processed at a time. This utility was originally written with the assumption that no one looks into the mailbox but it. And if someone does, it is only to control the work of the utility. The obvious solution to this problem is to set up redirecting copies of the reports to the responsible person's mailbox. It might make sense to add such an option with a risk warning. I'll think about that. |
I have one workflow affected by this, when I select the first email of the list on Thunderbird it makes it read, I have to put in unread and finish my selection before doing a right click and copy to my DMARC folder |
When I wrote about copying reports, I meant specifying something like a server-side Sieve rule or one more mailbox in the DNS record _dmarc.yourdomain.net |
I receive the raw dmarc report mails with pop3 in a Thunderbird account. This way I build an archive of all raw dmarc report mails. I made a change in dmarc srg to replace UNSEEN with ALL to process all dmarc emails, even if marked as seen and I set the max number of reports to process to unlimited. I can control the number of e-mails remaining in the mailbox with a Thunderbird setting and thereby control the overhead incurred. If you allow to configure this with a proper warning text regarding limiting the maximum number of e-mails then that would make me happy. |
The current IMAP implementation will only fetch UNSEEN e-mails and move processed mails to an alternate folder and/or mark them as SEEN. This will give problems if another process (or human user) is also looking at the raw mails.
Allow the selection of ALL e-mails from a folder. We can already prevent moving processed mails to another folder with a config setting.
This will cause mails to be selected with every fetch run but they will be skipped if processed before. Considering you will probably run the fetch once a day this would be acceptable.
The text was updated successfully, but these errors were encountered: