Changeset 7728

Show
Ignore:
Timestamp:
05/14/09 21:57:43 (10 months ago)
Author:
mickecarlsson
Message:

Fixed spelling errors in extensions.conf

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/branches/2.6/core/etc/extensions.conf

    r7697 r7728  
    3535; any custom dialplan SHOULD be put in extensions_custom.conf which will       * 
    3636; not hurt a FreePBX generated dialplan. In some very rare and custom          * 
    37 ; situations users may have a need to override what freepbx automatically      * 
     37; situations users may have a need to override what FreePBX automatically      * 
    3838; generates. If so anything in this file will do that.  If you come up with a  * 
    3939; situation where you need to modify the existing dialplan or macro, please    * 
     
    5555#include extensions_custom.conf 
    5656 
    57 [from-trunk]                                                   ; just an alias since VoIP shouldn't be called PSTN 
     57[from-trunk]                            ; just an alias since VoIP shouldn't be called PSTN 
    5858include => from-pstn 
    5959 
    6060[from-pstn] 
    61 include => from-pstn-custom                     ; create this context in extensions_custom.conf to include customizations 
     61include => from-pstn-custom            ; create this context in extensions_custom.conf to include customizations 
    6262include => ext-did 
    6363include => ext-did-post-custom 
    64 include => from-did-direct              ; MODIFICATOIN (PL) for findmefollow if enabled, should be bofore ext-local 
     64include => from-did-direct              ; MODIFICATION (PL) for findmefollow if enabled, should be before ext-local 
    6565include => ext-did-catchall             ; THIS MUST COME AFTER ext-did 
    6666exten => fax,1,Goto(ext-fax,in_fax,1) 
     
    6969; 
    7070; Required to assure that direct dids go to personal ring group before local extension. 
    71 ; This could be auto-generated however I it is prefered to be put here and hard coded 
     71; This could be auto-generated however I it is preferred to be put here and hard coded 
    7272; so that it can be modified if ext-local should take precedence in certain situations. 
    7373; will have to decide what to do later. 
     
    113113exten => s,n,Goto(s,a42) 
    114114 
    115 ;Set Call Trace for each hunt member we are going to call "Memory groups have multiple members to set CALL TRACE For hence the loop 
     115;Set Call Trace for each hunt member we are going to call "Memory groups have multiple members to set CALL TRACE For" hence the loop 
    116116; 
    117117exten => s,n(a35),GotoIf($[$["${CALLTRACE_HUNT}" != "" ] & $["${RingGroupMethod}" = "memoryhunt" ]]?a36:a50)   
     
    359359 
    360360[macro-dialout-trunk-predial-hook] 
    361 ; this macro intentially left blank so it may be safely overwritten for any custom 
     361; this macro intentionally left blank so it may be safely overwritten for any custom 
    362362; requirements that an installation may have. 
    363363; 
     
    468468; with congestion since there have been observed cases of the call continuing if not stopped with a  
    469469; congestion, and this provides a slightly more friendly 'sorry' message in case the user is 
    470 ; legitamately trying to be cooperative.  
     470; legitimately trying to be cooperative.  
    471471; 
    472472; Note: the following options are configurable in privacy.conf: 
     
    485485exten => s,n(PRIVMGR),PrivacyManager() 
    486486exten => s,n,GotoIf($["${PRIVACYMGRSTATUS}"="FAILED"]?fail) 
    487 exten => s,n,SetCallerPres(allowed_passed_screen); stop gap until app_privacy.c clears unavailble bit 
     487exten => s,n,SetCallerPres(allowed_passed_screen); stop gap until app_privacy.c clears unavailable bit 
    488488exten => s,PRIVMGR+101(fail),Noop(STATUS: ${PRIVACYMGRSTATUS} CID: ${CALLERID(num)} ${CALLERID(name)} CALLPRES: ${CALLLINGPRES}) 
    489489exten => s,n,Playback(sorry-youre-having-problems) 
     
    499499; try to playback using macro-tts-sayXXXXX (where XXXXX is text/digits/etc, same as 
    500500; the macro below). If that macro exits with MACRO_OFFSET=100, then it's done,  
    501 ; therwise, fallback to the default asterisk method.  
     501; otherwise, fallback to the default asterisk method.  
    502502; 
    503503; say text is purely for text-to-speech, there is no fallback 
     
    553553[from-sip-external] 
    554554;give external sip users congestion and hangup 
    555 ; Yes. This is _really_ meant to be _. - I know asterisk whinges about it, but  
     555; Yes. This is _really_ meant to be _. - I know asterisk whines about it, but  
    556556; I do know what I'm doing. This is correct. 
    557557exten => _.,1,NoOp(Received incoming SIP connection from unknown peer to ${EXTEN}) 
     
    623623[macro-dial-confirm] 
    624624; This was written to make it easy to use macro-dial-confirm instead of macro-dial in generated dialplans. 
    625 ; This takes the same paramaters, with an additional paramater of the ring group Number 
     625; This takes the same parameters, with an additional parameter of the ring group Number 
    626626; ARG1 is the timeout 
    627627; ARG2 is the DIAL_OPTIONS 
     
    644644; USE_CONFIRMATION, RINGGROUP_INDEX 
    645645; 
    646 ; Thse are passed to inform dialparties to place external calls through the [grps] context 
     646; These are passed to inform dialparties to place external calls through the [grps] context 
    647647; 
    648648exten => s,n,Set(USE_CONFIRMATION=TRUE) 
     
    671671; 
    672672; ALERT_INFO is deprecated in Asterisk 1.4 but still used throughout the FreePBX dialplan and 
    673 ; usually set by dialparties.agi. This allows ineritance. Since no dialparties.agi here, set the 
     673; usually set by dialparties.agi. This allows inheritance. Since no dialparties.agi here, set the 
    674674; header if it is set. 
    675675; 
     
    721721;------------------------------------------------------------------------ 
    722722; This context is set as a target with FORWARD_CONTEXT when Call Forwarding is set to be 
    723 ; ignored in a ringgoup or other features that may take advantage of this. Server side 
     723; ignored in a ringgroup or other features that may take advantage of this. Server side 
    724724; CF is done in dialparties.agi but if a client device forwards a call, it will be caught 
    725725; and blocked here.