Releasing quarantined mails

Releasing quarantined mails

am 15.10.2007 10:15:45 von Phil L

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

am 16.10.2007 04:56:48 von DFS

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

am 16.10.2007 12:49:35 von Phil L

> 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.