This is a discussion on Re: [courier-users] maildrop question within the Courier-Imap forums, part of the Mail Servers and Related category; Volker Katz wrote: > > I want to have something like this: > if (/^To:me@domail.tld/ ) > { > ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Volker Katz wrote:
> > I want to have something like this: > if (/^To:me@domail.tld/ ) > { > cc { > xfilter "alteremime --removeall --input=-" > "!somewhere@else" > } > to $DEFAULT > } > > How does the correct way look like? It's hard to say without knowing what alteremime does, but I'd suggest that you test the To header. If it matches, "cc" the message to your mailbox, then "xfilter" the message through alteremime, and then send the filtered message "to" its final destination: if (/^To:me@domail.tld/ ) { cc $DEFAULT xfilter "alteremime --removeall --input=-" to "!somewhere@else" } ------------------------------------------------------- SF.Net email is sponsored by: Discover Easy Linux Migration Strategies from IBM. Find simple to follow Roadmaps, straightforward articles, informative Webcasts and more! Get everything you need to get up to speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click _______________________________________________ courier-users mailing list courier-users@lists.sourceforge.net Unsubscribe: https://lists.sourceforge.net/lists/.../courier-users |