use tzafrir's patch to fix this problem properly... i made the previous set of change...
[asterisk-bristuff.git] / sample.call
blob383c135bc1860cdd6cb3a2a11cdba82e97d0ea90
2 # This is a sample file that can be dumped in /var/spool/asterisk/outgoing
3 # to generate a call.  
5 # Comments are indicated by a '#' character that begins a line, or follows
6 # a space or tab character.  To be consistent with the configuration files
7 # in Asterisk, comments can also be indicated by a semicolon.  However, the
8 # multiline comments (;-- --;) used in Asterisk configuration files are not 
9 # supported.  Semicolons can be escaped by a backslash.
12 # Obviously, you MUST specify at least a channel in the same format as you
13 # would for the "Dial" application.  Only one channel name is permitted.
15 Channel: Zap/1
17 # You may also specify a wait time (default is 45 seconds) for how long to
18 # wait for the channel to be answered, a retry time (default is 5 mins)
19 # for how soon to retry this call, and a maximum number of retries (default
20 # is 0) for how many times to retry this call.
22 MaxRetries: 2
23 RetryTime: 60
24 WaitTime: 30
27 # Once the call is answered, you must provide either an application/data
28 # combination, or a context/extension/priority in which to start the PBX.
30 Context: default
31 Extension: s
32 Priority: 1
35 # Alternatively you can specify just an application
36 # and its arguments to be run, instead of a context
37 # extension and priority
39 #Application: VoicemailMain
40 #Data: 1234
43 # You can set the callerid that will be used for the outgoing call
45 #Callerid: Wakeup Call Service <(555) 555-5555>
48 # An account code can be specified the following way:
50 #Account: mysuperfunaccountcode
53 # Normally, a call file is always deleted after the call is successful
54 # or the maximum number of tries is reached even if the modification
55 # time of the call file was changed during the call to be in the
56 # future.  By Setting AlwaysDelete to No the modification time of the
57 # call file will be checked after the call is completed or the maximum
58 # number of retries is reached.  If the modification time is in the
59 # future, the call file will not be deleted.
61 #AlwaysDelete: Yes
64 # You can set channel variables that will be passed to the channel.
65 # This includes writable dialplan functions. To set a writable dialplan
66 # function, the module containing this function *must* be loaded.
68 #Set: file1=/tmp/to
69 #Set: file2=/tmp/msg
70 #Set: timestamp=20021023104500
71 #Set: CDR(userfield|r)=42
74 # Setting Archive to yes the call file is never deleted, but is moved
75 # in the subdir "outgoing_done" of the spool directory. In this case 
76 # will be appended a line with "Status: value", where value can be 
77 # Completed, Expired or Failed.
79 #Archive: yes