Bryan Arenal: > Hi there, > > I have ~1000 emails that were previously sent from a different > platform (but failed due to a system error) and I've been asked to see > if we can re-send them with our Postfix server. > > I've looked into postfix's 'sendmail' as well as dropping a test file > into /var/spool/postfix/hold and trying to move it into deferred and > then flush the queue but neither of those seemed to work. Is this > even possible?
Postfix queue files MUST be written by Postfix. You can't put non-Postfix files there. The only supported interfaces to get a message into the queue are SMTP, QMQP, or the /usr/sbin/sendmail command line. For example, you can use the Postfix sendmail command: /usr/sbin/sendmail -i -f sender recipient < inputfile where inputfile contains RFC2822-formatted text (including MIME). Wietse