I have a page with a property "ShowOnNewsList" that have to be set to false when a page is archived. To do so, I have implemented a listener on the "MovedPage" event in global.asax. This listener changes the property (ShowOnNewsList) to false if the destination = page.archivelink. It seems that this only works when running manuel archive, and not on the automatic archive. Could this exception be a coincident, or does the automatic archive trigger a different event?
When thinking about it again, it is obvious that the scheduler takes care of the automatic archive, and therefor not affected by the listeners in global.asax. I'm still wondering how to implement a listener on the automatic event.