Update: I used an insert into...select query (modifying repository to the proper recipient's local address, and setting message_state and error_message to Null) to put the deadletters in the inbox table. I would imagine this is not optimal since it presumably skips all the mailet logic, correct?
What is a better way to do this?
insert into... select query will duplicate the message (create a copy in the new location). You probably just want to do an update statement to move them.
You can either stick the messages in the root spool processor to have it go through all mailet execution, a particular spool processor, or a different mailbox, so you can get it to do as much or as little of the mailet processing as you'd like.
-- Serge Knystautas President Lokitech >> software . strategy . design >> http://www.lokitech.com p. 301.656.5501 e. [EMAIL PROTECTED]
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
