Julia Thompson wrote: > > Is this cron job supposed to engage at the same time every week? > Cron has many options. But it should run once a minute at most.
The cron line that goes into crontab is something like: minute hour day month weekday command... So, WTG should have put something like: 0 18 * * 3 <send mail...> Instead, he wrote: * 18 * * 3 <send mail...> Meaning that the command to send mail would be execute _every_ minute of the 18 hours of weekday 3 [Wednesday] Alberto Monteiro _______________________________________________ http://www.mccmedia.com/mailman/listinfo/brin-l
