Asterisk Call Files
Asterisk call files是個純文字檔,將它移至正確的目錄裡,就能透過asterisk自動撥打。Call files 是個很便利的自動撥打方式,而不用透過其它較複雜的asterisk功能如 AGI, AMI, 和 dialplan, 這些得需要一些技術才能實現。
Page Contents
- Call file運作方式
- Call files語法
- 簡單的 Call File 範例
- The 'failed' extension
- Scope of variables
- 建立和和搬移Call Files
- 使用VB Scripts 從純文字檔來建立你的 call files 並且移檔至 asterisk spool 目錄 using pscp 指令.
- Examples
- How to schedule a Call in the Future
- Tip提示 管理同時外撥的數量
- 更多範例
- Callfiles 的撥打記錄(Call Detail Records)
- Tips and hints
- A Few Ideas
- Programming Libraries For Creating / Using CallFiles
- See also
The Asterisk dial plan extensions.conf responds to someone calling an extension on a channel.若你要從外部應用程式來撥出一通電話,有底下幾種方式可以實現。
asterisk 要啟動自動撥號功能有4種方法
- 使用.call檔,它是個純文字檔,必須放在正確的目錄裡才行
- 使用 manager API去啟動撥打。詳見 Asterisk manager dialout
- 使用指令列 Asterisk CLI originate 這個指令
- 使用 FollowMe這個指令,從 Asterisk 1.4 版本起,它就有能力實現多方通話(create multiple calls) 但它可能會被濫用於外撥(譯者注:我猜是被用來盜打)
See also additional Digium documents.
New in Asterisk 1.8: A new application Originate has been introduced, that allows asynchronous call origination from the dialplan. ...