Displaying 1 result from an estimated 1 matches for "outofhours".
2007 Feb 25
2
Dialling ZAP channel from analogue
....2.15
Card : TDM11B (1 x FXO , 1 x FXS)
I have internal dialling working okay SIP->ZAP (analogue phone) and ZAP (analogue phone) -> SIP.
The problem comes when I try and make a outbound call.
Here is my extensions.conf :-
Code:
[incoming]
exten => s,1,GoToIfTime(17:00-09:00\mon-fri\*\*?outofhours|s,1)
exten => s,2,GoToIfTime(*\sat-sun\*\*?outofhours|s,1)
exten => s,3,Answer()
exten => s,4,Dial(Zap/1,20)
exten => s,5,Playback(cybermog)
exten => s,6,VoiceMail(5000@incoming,s)
exten => s,7,Hangup()
[outofhours]
exten => s,1,Answer()
exten => s,2,Playback(cybermog)
exte...