What is the best way to automatically unpublish items with a specified unpublish date.
I enabled the PublishAgent in the web.config
<agent type="Sitecore.Tasks.PublishAgent" method="Run" interval="00:00:30">
<param desc="source database">master</param>
<param desc="target database">web</param>
<param desc="mode (full or incremental)">incremental</param>
<param desc="languages">en</param>
</agent>
which correctly published items with a publish date in the future but it doesn't work for items that have to be unpublished in the future. I'm using sitecore 6.4
Is there a good way to get the unpublishing to work? I don't want to write custom code to handle it if there is a better out of the box solution.