Releasing quarantined mails
I have a milter that quarantines mails using the smfi_quarantine()
function. I can then release these mails later using the 'sendmail -qQ
-qI{queueid}' command.
The problem I have is that I want the mails released from quarantine
to go through the milter processing again. Is this possible?
Thanks.
Re: Releasing quarantined mails
Phil L wrote:
> I have a milter that quarantines mails using the smfi_quarantine()
> function. I can then release these mails later using the 'sendmail -qQ
> -qI{queueid}' command.
> The problem I have is that I want the mails released from quarantine
> to go through the milter processing again. Is this possible?
The only way I can think of is to move the Qf and df files out of
the normal queue and into the submission queue. The next submission
queue run will resubmit the mail via SMTP allowing for milter processing.
--
David.
Re: Releasing quarantined mails
> The only way I can think of is to move the Qf and df files out of
> the normal queue and into the submission queue. The next submission
> queue run will resubmit the mail via SMTP allowing for milter processing.
Thanks David that worked.