Timed Feature Code

You could create a call file /tmp/call.file, and touch it 20 minutes in the future

.
.
touch  -d  @$(( $(date +%s) + (20 * 60) )) /tmp/call.file
mv -f /tmp/call.file /var/spool/asterisk/outgoing/call.file
1 Like