1999-01-15-21:59:12 Rob Kaper:
> Something I'd like to do, but haven't found in the manuals etc:
>
> send all postponed messages at once, without editing them etc.
>
> Is this possible with mutt? If yes: how? If no: why not ;) and where can I
> send the suggestion for such a feature?
Easy to do outside of mutt --- so easy, that if you want it, I'm sure you
could set up a mutt macro for it (though I've not yet done mutt macros and so
don't know for sure how to write it). The idea is, if those messages are ready
to go, sending 'em is a piece o' cake. E.g. if you're using Maildir format,
it's just "for f in ~/postponed/{new,cur}/*;do sendmail -t <$f; done". If you
are using mbox format, you could use the formail program from the procmail
package, that would be "formail -s sendmail -t <postponed".
And either way, now that I think about it, a mutt macro could just tag them
all, then tag-pipe to "formail -s sendmail -t".
-Bennett