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