Pete Ruckelshaus wrote: > I guess my main question is how to grab the failed email > addresses from the bounced emails?
I typically run a regular expression over them to search for a status code that indicates a permanent failure (5xx) instead of a temporary failure (4xx). The email address you are looking for will be 2 lines above that in more then 95% of the bounces. But when I get the chance I run the complete maildir through grep before doing anything with cfpop: grep -r -B 2 'Status:\ 5\..\..' <dir> | grep -o '[^ [EMAIL PROTECTED] ]*' | sort -u Jochem ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;160198600;22374440;w Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:295805 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

