<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-2" http-equiv="Content-Type">
  <title></title>
</head>
<body bgcolor="#ffffff" text="#000000">
Many thanks Stefan!<br>
<br>
It works like a charm...<br>
<br>
Kind regards,<br>
Pierre<br>
<br>
===========================================<br>
Write a cronjob which creates a call file. Shouldn't be a big thing.
<br>
<br>
In case you are not familiar with call files: Create a file dummy.call
with the following content.
<br>
---cut---
<br>
Channel: SIP/2000
<br>
MaxRetries: 2
<br>
RetryTime: 60
<br>
WaitTime: 30
<br>
Context: call-file-test
<br>
Extension: 10
<br>
---cut----
<br>
<br>
SIP/2000 being the phone on your desk.
<br>
<br>
And add the following context to your dialplan:
<br>
---cut---
<br>
[call-file-test]
<br>
exten =&gt; 10,1,Answer()
<br>
exten =&gt; 10,n,Wait(1)
<br>
exten =&gt; 10,n,Playback(hello-world)
<br>
exten =&gt; 10,n,Wait(1)
<br>
exten =&gt; 10,n,Hangup()
<br>
---cut---
<br>
<br>
Move the dummy.call file to <i class="moz-txt-slash"><span
 class="moz-txt-tag">/</span>var/spool/asterisk/outgoing<span
 class="moz-txt-tag">/</span></i> and wait.
<br>
<br>
PS. You can touch a call file to be executed in the future. But I'd
prefer the cronjob.
<br>
<br>
  Stefan<br>
=============================================<br>
</body>
</html>