How to Bounce Mail Messages in Mac OS X Lion * Updated *
Wednesday December 7th, 2011
Advanced-level Mail.app users of Mac OS X must have noticed that as of Mac OS X Lion (Mac OS X 10.7) the feature of “bouncing messages back to sender” is gone!
There are ongoing debates whether this feature was useful (so as to help fight spam) or not – even totally unnecessary (since many spammers do not use real or valid e-mail addresses, there’s no address to bounce back the junk mail) – the latter probably being Apple’s motive to remove the feature.
For those of you, who need to restore this functionality, there’s good news for intermediate to advanced Mac OS X users who can manage to create an Automator service that will feature an AppleScript to run — at least by following a short simple series of instructions. (See also the screen recording video tutorial below)

Here are the step by step instructions to do so:
- Launch Automator from your Applications folder
- Create a new service.
- At the top of the editing (workflow) pane, select “no input” pull-down menu item just following the label “Service receives”, and select “Mail.app” from the second pull-down menu. The setting should appear like “Service receives no input in Mail.app”
- Locate “Get Selected Mail items” from the actions list on the left, and then drag it to the editing pane (that is the Workflow)
- Locate “Run AppleScript” from the actions, and drag it to the workflow.
- Edit the script so as to look as the following:
on run {input, parameters}
tell application "Mail"
repeat with eachMessage in input
bounce eachMessage
delete eachMessage
end repeat
end tell
end run - Save your Automator workflow with a name like “Bounce Mail”
- In Mail(.app) select the message(s) you want to bounce, then under the “Mail” application menu, select “Services > Bounce Mail (or whatever you named when saving the service) menu item
Related posts:







thanks!
Thanks for the easy step by step instructions!!!! Worked great.
Great! Thank you very much! Was needed!! Follow me on twitter @harrystevens1
There is an iPhone App now that allows you to bounce emails.
BounceMyX
Good for those of us who are struggling with spam, bad for the fact that spammers could find out about such tools and get “immune” to such measures
Hi, I did it exactly as you instructed here, but there seems to be a problem. I can bounce emails the way you said, but every time I relaunch Mail, the bounced emails reappear! Can you please tell me how to fix this? (I’m using Mail 5.2 in Mac OS X 10.7.3)
It sounds like your incoming mail server is (and/or configured as) IMAP and you have forgotten to specify an IMAP path prefix in advanced settings. If my guess is correct, all of your deleted mails must be resurrecting not just deleted / bounced back spam.
Go to Mail Preferences > Accounts select the mail account in question and then switch to the Advanced tab and type “INBOX” (or whatever your ISP requires) in the field labeled IMAP Path prefix. This should do the trick.
Yeah! Thank you so much!