On Mon, 2 Apr 2007, Alan Chandler wrote:
> Does the GotoIfTime application work in the local time of the server, or
> UTC?
Looking at the code, I'd say it was localtime of the server.
>From pbx.c, in ast_check_timing() :
time(&t);
localtime_r(&t,&tm);
Gordon