Well, there is a first time for everything... and here is my first q in this forum.
I have written a script which filters a mailinglist and it all works fine. My problem is, I have to run the script manually every time I want to filter the incomming mails. I have tried to write a second script to call the filter where I used a code like this to do so << while( 1 ){
//Call script
sleep( 60 );
}
And it worked fine, but it crashes after a couple of hours, and I need it to run like every second hour or so, also during the night.
My question is, how can I write a code that can run during the day and call a second script every now and then with out crashing? It has to be stable since it has to run during the weekend as well?
I need something stable to run on my windows machine since I don't have a server!!