Changeset 6006

Show
Ignore:
Timestamp:
07/14/08 11:59:32 (4 months ago)
Author:
sasargen
Message:

version 0.2.0, new Export Extension feature, improved documentation

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • contributed_modules/modules/bulkextensions/page.bulkextensions.php

    r5768 r6006  
    99// are made, no reload will be prompted. 
    1010$change = false; 
    11  
    12 if ( $_REQUEST["csv_uploaded"] ) 
     11if ( $_REQUEST["csv_type"] == 'output') 
    1312{ 
    14  
     13        exportextensions_allusers(); 
     14} elseif ( $_REQUEST["csv_type"] == 'input') 
     15
    1516    $aFields = array  
    1617    ( 
     
    8182     
    8283      $fh = fopen($_FILES['csvFile']['tmp_name'], "r"); 
    83  
     84      if($fh == NULL) 
     85      { 
     86              $file_ok = false; 
     87      } else 
     88      { 
     89              $file_ok = true; 
     90      } 
     91       
    8492      $k = 0; 
    8593       
    86       while (($aInfo = fgetcsv($fh, 1000, ",")) !== FALSE)  
     94      while ($file_ok && (($aInfo = fgetcsv($fh, 1000, ",")) !== FALSE))  
    8795      { 
    8896              $k++; 
     
    92100              } 
    93101               
    94               // If this is the first row then we need to check each fields listed (these are the headings) 
     102              // If this is the first row then we need to check each field listed (these are the headings) 
    95103              if ($i==0) 
    96104              { 
     
    462470                        // messages are not deleted.   
    463471                        // First delete: 
    464                         // Functions core_devices_del and core_users_get 
     472                        // Functions core_devices_del and core_users_del 
    465473                        // do not check that the device or user actually 
    466474                        // do exist. 
     
    556564        ****************************************************************/ 
    557565?> 
    558 <br><br> 
    559 <p>Right click -> Save as : <a href="modules/bulkextensions/template.csv">Template CSV</a> (file includes examples of adding, editing and deleting extensions)<br><br> 
     566<h1>Bulk Extensions</h1> 
     567 
     568<h2>Manage Extensions in bulk using CSV files.</h2> 
     569 
     570<p>Start by downloading the 
     571<a href="modules/bulkextensions/template.csv">Template CSV file</a> 
     572(right-click > save as) or clicking the Export Extensions button. The table 
     573below explains each column in the CSV file. Modify the CSV file to add, edit, 
     574or delete Extensions as desired. Then load the CSV file. As the CSV file is 
     575processed, the action taken for each row will be displayed. <b>Bulk extension 
     576changes can take a long time to complete. Please allow up to 30 seconds per 
     577100 extensions.</b></p> 
     578 
    560579<form action="<?php $_SERVER['PHP_SELF'] ?>" name="uploadcsv" method="post" enctype="multipart/form-data"> 
    561 Choose Account CSV File: <input name="csvFile" type="file"> 
    562 <input name="csv_uploaded" type="hidden" value="1"> 
    563 <input type="submit" value="Import!"> 
     580<input id="csv_type" name="csv_type" type="hidden" value="none"> 
     581<input type="submit" onclick="document.getElementById('csv_type').value='output';" value="Export Extensions"> 
     582<br> 
     583<br> 
     584CSV File to Load: <input name="csvFile" type="file"> 
     585<input type="submit" onclick="document.getElementById('csv_type').value='input';"  value="Load File"> 
    564586</form> 
    565 <h3>Please be patient.  Bulk extension changes can take a long time to complete.  Please allow up to 30 seconds per 100 extensions.</h3>  
     587<hr> 
     588<h3>Bulk Extensions CSV File Columns</h3> 
     589 
     590<table cellspacing="0" cellpadding="4" rules="rows"> 
     591 <tr valign="top"> 
     592  <th align="left" valign="top">#</th> 
     593  <th align="left" valign="top">Name</th> 
     594  <th align="left" valign="top">Default</th> 
     595  <th align="left" valign="top">Allowed</th> 
     596  <th align="left" valign="top">On Extensions page</th> 
     597  <th align="left" valign="top">Details</th> 
     598 </tr> 
     599 <tr valign="top"> 
     600  <td valign="top">1</td> 
     601  <td valign="top">action</td> 
     602  <td valign="top"></td> 
     603  <td valign="top">add, del, edit</td> 
     604  <td valign="top"></td> 
     605  <td valign="top">Add, Delete, or Edit an Extension.</td> 
     606 </tr> 
     607 <tr valign="top"> 
     608  <td valign="top">2</td> 
     609  <td valign="top">extension</td> 
     610  <td valign="top"></td> 
     611  <td valign="top"></td> 
     612  <td valign="top">User Extension</td> 
     613  <td valign="top">The extension number to dial to reach this user.</td> 
     614 </tr> 
     615 <tr valign="top"> 
     616  <td valign="top">3</td> 
     617  <td valign="top">name</td> 
     618  <td valign="top"></td> 
     619  <td valign="top"></td> 
     620  <td valign="top">Display Name</td> 
     621  <td valign="top">The caller id name for calls from this user will be set to this name. Only 
     622  enter the name, NOT the number.</td> 
     623 </tr> 
     624 <tr valign="top"> 
     625  <td valign="top">4</td> 
     626  <td valign="top">cid_masquerade</td> 
     627  <td valign="top"></td> 
     628  <td valign="top"></td> 
     629  <td valign="top">CID Num Alias</td> 
     630  <td valign="top">The CID Number to use for internal calls, if different from the extension 
     631  number. This is used to masquerade as a different user. A common example is a 
     632  team of support people who would like their internal callerid to display the 
     633  general support number (a ringgroup or queue). There will be no effect on 
     634  external calls.</td> 
     635 </tr> 
     636 <tr valign="top"> 
     637  <td valign="top">5</td> 
     638  <td valign="top">sipname</td> 
     639  <td valign="top"></td> 
     640  <td valign="top"></td> 
     641  <td valign="top">SIP Alias</td> 
     642  <td valign="top">If you want to support direct sip dialing of users internally or through 
     643  anonymous sip calls, you can supply a friendly name that can be used in 
     644  addition to the users extension to call them.</td> 
     645 </tr> 
     646 <tr valign="top"> 
     647  <td valign="top">6</td> 
     648  <td valign="top">directdid</td> 
     649  <td valign="top"></td> 
     650  <td valign="top"></td> 
     651  <td valign="top">Direct DID</td> 
     652  <td valign="top">The direct DID that is associated with this extension. The DID should be 
     653  in the same format as provided by the provider (e.g. full number, 4 digits for 
     654  10x4, etc). 
     655  <br><br> 
     656  Format should be: <b>XXXXXXXXXX</b> 
     657  <br><br> 
     658  Leave this field blank to disable the direct DID feature for this extension. 
     659  All non-numeric characters will be stripped.</td> 
     660 </tr> 
     661 <tr valign="top"> 
     662  <td valign="top">7</td> 
     663  <td valign="top">didalert</td> 
     664  <td valign="top"></td> 
     665  <td valign="top"></td> 
     666  <td valign="top">DID Alert Info</td> 
     667  <td valign="top">Alert Info can be used for distinctive ring on SIP phones. Set this value 
     668  to the desired Alert Info to be sent to the phone when this DID is called. 
     669  Leave blank to use default values. Will have no effect if no Direct DID is 
     670  set.</td> 
     671 </tr> 
     672 <tr valign="top"> 
     673  <td valign="top">8</td> 
     674  <td valign="top">mohclass</td> 
     675  <td valign="top">default</td> 
     676  <td valign="top">default, none, any valid MoH class</td> 
     677  <td valign="top">Music on Hold</td> 
     678  <td valign="top">Set the MoH class that will be used for calls that come in on this Direct 
     679  DID. For example, choose a type appropriate for a originating country which 
     680  may have announcements in their language. Only effects MoH class when the call 
     681  came in from the Direct DID.</td> 
     682 </tr> 
     683 <tr valign="top"> 
     684  <td valign="top">9</td> 
     685  <td valign="top">outboundcid</td> 
     686  <td valign="top"></td> 
     687  <td valign="top"></td> 
     688  <td valign="top">Outbound CID</td> 
     689  <td valign="top">Overrides the caller id when dialing out a trunk. Any setting here will 
     690  override the common outbound caller id set in the Trunks admin. 
     691  <br><br> 
     692  Format: <b>&quot;caller name&quot; &lt;#######&gt;</b> 
     693  <br><br> 
     694  Leave this field blank to disable the outbound callerid feature for this 
     695  user.</td> 
     696 </tr> 
     697 <tr valign="top"> 
     698  <td valign="top">10</td> 
     699  <td valign="top">ringtimer</td> 
     700  <td valign="top">0</td> 
     701  <td valign="top">0-120</td> 
     702  <td valign="top">Ring Time</td> 
     703  <td valign="top">Number of seconds to ring prior to going to voicemail. 0 (Default) will 
     704  use the value set in the General Tab. If no voicemail is configured this will 
     705  be ignored.</td> 
     706 </tr> 
     707 <tr valign="top"> 
     708  <td valign="top">11</td> 
     709  <td valign="top">callwaiting</td> 
     710  <td valign="top">enabled</td> 
     711  <td valign="top">enabled, disabled</td> 
     712  <td valign="top">Call Waiting</td> 
     713  <td valign="top">Set the initial/current Call Waiting state for this user's extension.</td> 
     714 </tr> 
     715 <tr valign="top"> 
     716  <td valign="top">12</td> 
     717  <td valign="top">emergency_cid</td> 
     718  <td valign="top"></td> 
     719  <td valign="top"></td> 
     720  <td valign="top">Emergency CID</td> 
     721  <td valign="top">This caller id will always be set when dialing out an Outbound Route 
     722  flagged as Emergency. The Emergency CID overrides all other caller id 
     723  settings.</td> 
     724 </tr> 
     725 <tr valign="top"> 
     726  <td valign="top">13</td> 
     727  <td valign="top">tech</td> 
     728  <td valign="top"></td> 
     729  <td valign="top">sip, iax2, zap, custom</td> 
     730  <td valign="top"></td> 
     731  <td valign="top">Device channel type.</td> 
     732 </tr> 
     733 <tr valign="top"> 
     734  <td valign="top">14</td> 
     735  <td valign="top">hardware</td> 
     736  <td valign="top"></td> 
     737  <td valign="top">generic, custom</td> 
     738  <td valign="top"></td> 
     739  <td valign="top"></td> 
     740 </tr> 
     741 <tr valign="top"> 
     742  <td valign="top">15</td> 
     743  <td valign="top">devinfo_secret</td> 
     744  <td valign="top"></td> 
     745  <td valign="top"></td> 
     746  <td valign="top">secret</td> 
     747  <td valign="top">See sip.conf file or iax.conf file.</td> 
     748 </tr> 
     749 <tr valign="top"> 
     750  <td valign="top">16</td> 
     751  <td valign="top">devinfo_channel</td> 
     752  <td valign="top"></td> 
     753  <td valign="top"></td> 
     754  <td valign="top">channel</td> 
     755  <td valign="top">See zapata.conf.</td> 
     756 </tr> 
     757 <tr valign="top"> 
     758  <td valign="top">17</td> 
     759  <td valign="top">devinfo_dtmfmode</td> 
     760  <td valign="top">rfc2833</td> 
     761  <td valign="top"></td> 
     762  <td valign="top">dtmfmode</td> 
     763  <td valign="top">See sip.conf file.</td> 
     764 </tr> 
     765 <tr valign="top"> 
     766  <td valign="top">18</td> 
     767  <td valign="top">devinfo_canreinvite</td> 
     768  <td valign="top">no</td> 
     769  <td valign="top"></td> 
     770  <td valign="top">canreinvite</td> 
     771  <td valign="top">See sip.conf file.</td> 
     772 </tr> 
     773 <tr valign="top"> 
     774  <td valign="top">19</td> 
     775  <td valign="top">devinfo_context</td> 
     776  <td valign="top">from-internal</td> 
     777  <td valign="top"></td> 
     778  <td valign="top">context</td> 
     779  <td valign="top">Device context.</td> 
     780 </tr> 
     781 <tr valign="top"> 
     782  <td valign="top">20</td> 
     783  <td valign="top">devinfo_host</td> 
     784  <td valign="top">dynamic</td> 
     785  <td valign="top"></td> 
     786  <td valign="top">host</td> 
     787  <td valign="top">See sip.conf file or iax.conf file.</td> 
     788 </tr> 
     789 <tr valign="top"> 
     790  <td valign="top">21</td> 
     791  <td valign="top">devinfo_type</td> 
     792  <td valign="top">friend</td> 
     793  <td valign="top"></td> 
     794  <td valign="top">type</td> 
     795  <td valign="top">See sip.conf file or iax.conf file.</td> 
     796 </tr> 
     797 <tr valign="top"> 
     798  <td valign="top">22</td> 
     799  <td valign="top">devinfo_nat</td> 
     800  <td valign="top">yes</td> 
     801  <td valign="top"></td> 
     802  <td valign="top">nat</td> 
     803  <td valign="top">See sip.conf file.</td> 
     804 </tr> 
     805 <tr valign="top"> 
     806  <td valign="top">23</td> 
     807  <td valign="top">devinfo_port</td> 
     808  <td valign="top"></td> 
     809  <td valign="top"></td> 
     810  <td valign="top">port</td> 
     811  <td valign="top">See sip.conf file or iax.conf file. Default for sip is 5060, iax2 is 
     812  4569.</td> 
     813 </tr> 
     814 <tr valign="top"> 
     815  <td valign="top">24</td> 
     816  <td valign="top">devinfo_qualify</td> 
     817  <td valign="top">yes</td> 
     818  <td valign="top"></td> 
     819  <td valign="top">qualify</td> 
     820  <td valign="top">See sip.conf file or iax.conf file.</td> 
     821 </tr> 
     822 <tr valign="top"> 
     823  <td valign="top">25</td> 
     824  <td valign="top">devinfo_callgroup</td> 
     825  <td valign="top"></td> 
     826  <td valign="top"></td> 
     827  <td valign="top">callgroup</td> 
     828  <td valign="top">See sip.conf file.</td> 
     829 </tr> 
     830 <tr valign="top"> 
     831  <td valign="top">26</td> 
     832  <td valign="top">devinfo_pickupgroup</td> 
     833  <td valign="top"></td> 
     834  <td valign="top"></td> 
     835  <td valign="top">pickupgroup</td> 
     836  <td valign="top">See sip.conf file.</td> 
     837 </tr> 
     838 <tr valign="top"> 
     839  <td valign="top">27</td> 
     840  <td valign="top">devinfo_disallow</td> 
     841  <td valign="top"></td> 
     842  <td valign="top"></td> 
     843  <td valign="top">disallow</td> 
     844  <td valign="top">See conf file for device tech. Codec(s) to disallow.</td> 
     845 </tr> 
     846 <tr valign="top"> 
     847  <td valign="top">28</td> 
     848  <td valign="top">devinfo_allow</td> 
     849  <td valign="top"></td> 
     850  <td valign="top"></td> 
     851  <td valign="top">allow</td> 
     852  <td valign="top">See conf file for device tech. Codec(s) to allow.</td> 
     853 </tr> 
     854 <tr valign="top"> 
     855  <td valign="top">29</td> 
     856  <td valign="top">devinfo_dial</td> 
     857  <td valign="top"></td> 
     858  <td valign="top"></td> 
     859  <td valign="top">dial</td> 
     860  <td valign="top">See conf file for device tech. Default is TECH/exten, i.e SIP/101. For zap 
     861  it is TECH/channel, i.e. ZAP/1.</td> 
     862 </tr> 
     863 <tr valign="top"> 
     864  <td valign="top">30</td> 
     865  <td valign="top">devinfo_accountcode</td> 
     866  <td valign="top"></td> 
     867  <td valign="top"></td> 
     868  <td valign="top">accountcode</td> 
     869  <td valign="top">See conf file for device tech.</td> 
     870 </tr> 
     871 <tr valign="top"> 
     872  <td valign="top">31</td> 
     873  <td valign="top">devinfo_mailbox</td> 
     874  <td valign="top"></td> 
     875  <td valign="top"></td> 
     876  <td valign="top">mailbox</td> 
     877  <td valign="top">See conf file for device tech. Default is exten@device, i.e 101@device.</td> 
     878 </tr> 
     879 <tr valign="top"> 
     880  <td valign="top">32</td> 
     881  <td valign="top">faxexten</td> 
     882  <td valign="top">default</td> 
     883  <td valign="top">default, disabled, system, any valid extension</td> 
     884  <td valign="top">Fax Extension</td> 
     885  <td valign="top">Select 'system' to have the system receive and email faxes. 
     886  <br><br> 
     887  The FreePBX default is defined in General Settings.</td> 
     888 </tr> 
     889 <tr valign="top"> 
     890  <td valign="top">33</td> 
     891  <td valign="top">faxemail</td> 
     892  <td valign="top"></td> 
     893  <td valign="top"></td> 
     894  <td valign="top">Fax Email</td> 
     895  <td valign="top">Email address is used if 'system' has been chosen for the fax extension 
     896  above. 
     897  <br><br> 
     898  Leave this blank to use the FreePBX default in General Settings.</td> 
     899 </tr> 
     900 <tr valign="top"> 
     901  <td valign="top">34</td> 
     902  <td valign="top">answer</td> 
     903  <td valign="top">0</td> 
     904  <td valign="top">0-2</td> 
     905  <td valign="top">Fax Detection Type</td> 
     906  <td valign="top">Selecting Zaptel or NVFax will immediately answer the call and play 
     907  ringing tones to the caller for the number of seconds in Pause below. Use 
     908  NVFax on SIP or IAX trunks. 0 = None, 1 = Zaptel, 2 = NVFax.</td> 
     909 </tr> 
     910 <tr valign="top"> 
     911  <td valign="top">35</td> 
     912  <td valign="top">wait</td> 
     913  <td valign="top">0</td> 
     914  <td valign="top"></td> 
     915  <td valign="top">Pause after answer</td> 
     916  <td valign="top">The number of seconds we should wait after performing an Immediate Answer. 
     917  The primary purpose of this is to pause and listen for a fax tone before 
     918  allowing the call to proceed. Default is 0.</td> 
     919 </tr> 
     920 <tr valign="top"> 
     921  <td valign="top">36</td> 
     922  <td valign="top">privacyman</td> 
     923  <td valign="top">0</td> 
     924  <td valign="top">0, 1</td> 
     925  <td valign="top">Privacy Manager</td> 
     926  <td valign="top">If no Caller ID is sent, Privacy Manager asks the caller to enter their 10 
     927  digit phone number. The caller is given 3 attempts. 0 = No, 1 = Yes.</td> 
     928 </tr> 
     929 <tr valign="top"> 
     930  <td valign="top">37</td> 
     931  <td valign="top">record_in</td> 
     932  <td valign="top">Adhoc</td> 
     933  <td valign="top">Adhoc, Always, Never</td> 
     934  <td valign="top">Record Incoming</td> 
     935  <td valign="top">Record all inbound calls received at this extension.</td> 
     936 </tr> 
     937 <tr valign="top"> 
     938  <td valign="top">38</td> 
     939  <td valign="top">record_out</td> 
     940  <td valign="top">Adhoc</td> 
     941  <td valign="top">Adhoc, Always, Never</td> 
     942  <td valign="top">Record Outgoing</td> 
     943  <td valign="top">Record all outbound calls received at this extension.</td> 
     944 </tr> 
     945 <tr valign="top"> 
     946  <td valign="top">39</td> 
     947  <td valign="top">vm</td> 
     948  <td valign="top">disabled</td> 
     949  <td valign="top">enabled, disabled</td> 
     950  <td valign="top">Status</td> 
     951  <td valign="top">Set voicemail status for this user.</td> 
     952 </tr> 
     953 <tr valign="top"> 
     954  <td valign="top">40</td> 
     955  <td valign="top">vmpwd</td> 
     956  <td valign="top"></td> 
     957  <td valign="top"></td> 
     958  <td valign="top">Voicemail Password</td> 
     959  <td valign="top">This is the password used to access the voicemail system. 
     960  <br><br> 
     961  This password can only contain numbers. 
     962  <br><br> 
     963  A user can change the password you enter here after logging into the voicemail 
     964  system (*98) with a phone.</td> 
     965 </tr> 
     966 <tr valign="top"> 
     967  <td valign="top">41</td> 
     968  <td valign="top">email</td> 
     969  <td valign="top"></td> 
     970  <td valign="top"></td> 
     971  <td valign="top">Email Address</td> 
     972  <td valign="top">The email address that voicemails are sent to.</td> 
     973 </tr> 
     974 <tr valign="top"> 
     975  <td valign="top">42</td> 
     976  <td valign="top">pager</td> 
     977  <td valign="top"></td> 
     978  <td valign="top"></td> 
     979  <td valign="top">Pager Email Address</td> 
     980  <td valign="top">Pager/mobile email address to which short voicemail notifcations are 
     981  sent.</td> 
     982 </tr> 
     983 <tr valign="top"> 
     984  <td valign="top">43</td> 
     985  <td valign="top">attach</td> 
     986  <td valign="top">attach=no</td> 
     987  <td valign="top">attach=yes, attach=no</td> 
     988  <td valign="top">Email Attachment</td> 
     989  <td valign="top">Option to attach voicemails to email.</td> 
     990 </tr> 
     991 <tr valign="top"> 
     992  <td valign="top">44</td> 
     993  <td valign="top">saycid</td> 
     994  <td valign="top">saycid=no</td> 
     995  <td valign="top">saycid=yes, saycid=no</td> 
     996  <td valign="top">Play CID</td> 
     997  <td valign="top">Read back caller's telephone number prior to playing the incoming message, 
     998  and just after announcing the date and time the message was left.</td> 
     999 </tr> 
     1000 <tr valign="top"> 
     1001  <td valign="top">45</td> 
     1002  <td valign="top">envelope</td> 
     1003  <td valign="top">envelope=no</td> 
     1004  <td valign="top">envelope=yes, envelope=no</td> 
     1005  <td valign="top">Play Envelope</td> 
     1006  <td valign="top">Envelope controls whether or not the voicemail system will play the 
     1007  message envelope (date/time) before playing the voicemail message. This settng 
     1008  does not affect the operation of the envelope option in the advanced voicemail 
     1009  menu.</td> 
     1010 </tr> 
     1011 <tr valign="top"> 
     1012  <td valign="top">46</td> 
     1013  <td valign="top">delete</td> 
     1014  <td valign="top">delete=no</td> 
     1015  <td valign="top">delete=yes, delete=no</td> 
     1016  <td valign="top">Delete Vmail</td> 
     1017  <td valign="top">If set to &quot;yes&quot; the message will be deleted from the 
     1018  voicemailbox (after having been emailed).  Provides functionality that allows 
     1019  a user to receive their voicemail via email alone, rather than having the 
     1020  voicemail able to be retrieved from the Web interface or the Extension 
     1021  handset. CAUTION: MUST HAVE attach voicemail to email SET TO YES OTHERWISE 
     1022  YOUR MESSAGES WILL BE LOST FOREVER.</td> 
     1023 </tr> 
     1024 <tr valign="top"> 
     1025  <td valign="top">47</td> 
     1026  <td valign="top">options</td> 
     1027  <td valign="top"></td> 
     1028  <td valign="top"></td> 
     1029  <td valign="top">VM Options</td> 
     1030  <td valign="top">Separate options with pipe ( | ) 
     1031  <br><br>ie: review=yes|maxmessage=60</td> 
     1032 </tr> 
     1033 <tr valign="top"> 
     1034  <td valign="top">48</td> 
     1035  <td valign="top">vmcontext</td> 
     1036  <td valign="top">default</td> 
     1037  <td valign="top"></td> 
     1038  <td valign="top">VM Context</td> 
     1039  <td valign="top">This is the Voicemail Context which is normally set to default. Do not 
     1040  change unless you understand the implications.</td> 
     1041 </tr> 
     1042 <tr valign="top"> 
     1043  <td valign="top">49</td> 
     1044  <td valign="top">vmx_state</td> 
     1045  <td valign="top"></td> 
     1046  <td valign="top">checked, (leave blank to disable)</td> 
     1047  <td valign="top">VmX Locater&trade;</td> 
     1048  <td valign="top">Enable/Disable the VmX Locater feature for this user. When enabled all 
     1049  settings are controlled by the user in the User Portal (ARI). Disabling will 
     1050  not delete any existing user settings but will disable access to the 
     1051  feature</td> 
     1052 </tr> 
     1053 <tr valign="top"> 
     1054  <td valign="top">50</td> 
     1055  <td valign="top">devicetype</td> 
     1056  <td valign="top">fixed</td> 
     1057  <td valign="top">fixed, adhoc</td> 
     1058  <td valign="top"></td> 
     1059  <td valign="top">Extensions require that devicetype is fixed. If devicetype is adhoc, 
     1060  FreePBX must manage it in Device and Users mode, not Extensions mode.</td> 
     1061 </tr> 
     1062 <tr valign="top"> 
     1063  <td valign="top">51</td> 
     1064  <td valign="top">password</td> 
     1065  <td valign="top"></td> 
     1066  <td valign="top"></td> 
     1067  <td valign="top">User Password</td> 
     1068  <td valign="top">A user will enter this password when logging onto a device.</td> 
     1069 </tr> 
     1070 <tr valign="top"> 
     1071  <td valign="top">52</td> 
     1072  <td valign="top">noanswer</td> 
     1073  <td valign="top"></td> 
     1074  <td valign="top"></td> 
     1075  <td valign="top">Defaults to blank.</td> 
     1076 </tr> 
     1077 <tr valign="top"> 
     1078  <td valign="top">53</td> 
     1079  <td valign="top">devinfo_immediate</td> 
     1080  <td valign="top">no</td> 
     1081  <td valign="top"></td> 
     1082  <td valign="top">immediate</td> 
     1083  <td valign="top">See zapata.conf file.</td> 
     1084 </tr> 
     1085 <tr valign="top"> 
     1086  <td valign="top">54</td> 
     1087  <td valign="top">devinfo_signalling</td> 
     1088  <td valign="top">fxo_ks</td> 
     1089  <td valign="top"></td> 
     1090  <td valign="top">signalling</td> 
     1091  <td valign="top">See zapata.conf file.</td> 
     1092 </tr> 
     1093 <tr valign="top"> 
     1094  <td valign="top">55</td> 
     1095  <td valign="top">devinfo_echocancel</td> 
     1096  <td valign="top">yes</td> 
     1097  <td valign="top"></td> 
     1098  <td valign="top">echocancel</td> 
     1099  <td valign="top">See zapata.conf file.</td> 
     1100 </tr> 
     1101 <tr valign="top"> 
     1102  <td valign="top">56</td> 
     1103  <td valign="top">devinfo_echocancelwhenbridged</td> 
     1104  <td valign="top">no</td> 
     1105  <td valign="top"></td> 
     1106  <td valign="top">echocancelwhenbridged</td> 
     1107  <td valign="top">See zapata.conf file.</td> 
     1108 </tr> 
     1109 <tr valign="top"> 
     1110  <td valign="top">57</td> 
     1111  <td valign="top">devinfo_echotraining</td> 
     1112  <td valign="top">800</td> 
     1113  <td valign="top"></td> 
     1114  <td valign="top">echotraining</td> 
     1115  <td valign="top">See zapata.conf file.</td> 
     1116 </tr> 
     1117 <tr valign="top"> 
     1118  <td valign="top">58</td> 
     1119  <td valign="top">devinfo_busydetect</td> 
     1120  <td valign="top">no</td> 
     1121  <td valign="top"></td> 
     1122  <td valign="top">busydetect</td> 
     1123  <td valign="top">See zapata.conf file.</td> 
     1124 </tr> 
     1125 <tr valign="top"> 
     1126  <td valign="top">59</td> 
     1127  <td valign="top">devinfo_busycount</td> 
     1128  <td valign="top">7</td> 
     1129  <td valign="top"></td> 
     1130  <td valign="top">busycount</td> 
     1131  <td valign="top">See zapata.conf file.</td> 
     1132 </tr> 
     1133 <tr valign="top"> 
     1134  <td valign="top">60</td> 
     1135  <td valign="top">devinfo_callprogress</td> 
     1136  <td valign="top">no</td> 
     1137  <td valign="top"></td> 
     1138  <td valign="top">callprogress</td> 
     1139  <td valign="top">See zapata.conf file.</td> 
     1140 </tr> 
     1141 <tr valign="top"> 
     1142  <td valign="top">61</td> 
     1143  <td valign="top">devinfo_notransfer</td> 
     1144  <td valign="top">yes</td> 
     1145  <td valign="top"></td> 
     1146  <td valign="top">notransfer</td> 
     1147  <td valign="top">See iax.conf file.</td> 
     1148 </tr> 
     1149</table> 
     1150 
    5661151<?php 
    5671152} 
    5681153?> 
     1154 
Donate



Support
Download
Develop
Forums
News
Documentation
Paid Support
About

Paid Ads