Ticket #3880 (closed Bugs: fixed)

Opened 4 years ago

Last modified 4 years ago

Change 7917 breaks outbound trunks in DAHDI compability mode

Reported by: secabeen Assigned to: p_lindheimer
Priority: major Milestone: 2.6
Component: Core Version: 2.5-branch
Keywords: dahdi Cc: jmehl@physics.ucsb.edu
Confirmation: Unreviewed Distro:
Backend Engine: All Distro Ver:
Backend Ver: SVN Revision (if applicable): 7917

Description (Last modified by p_lindheimer)

Changeset r7917 includes a portion of Changeset r7754 from FreePBX 2.6. This changeset alters how outbound routes using DAHDI are setup. Unfortunately, as implemented in 2.5, this change causes DAHDI routes to show up as ZAP in the OUT_* global variables in extensions_additional.conf.

In specific, changeset r7917 removes the following code from lines 1278-1280:

                                if ($chan_dahdi && substr($value, 0, 4) === 'ZAP/') { 
                                        $value = 'DAHDI/' . substr($value, 4); 
                                } 

without adding the necessary replacement code from Changeset 7754 (likely because the block that changeset 7754 uses doesn't exist in 2.5-branch:

                                } elseif ($tech == 'ZAP' && $chan_dahdi) { 
                                        $tech = 'DAHDI'; 

Change History

09/08/09 14:27:56 changed by p_lindheimer

  • description changed.

09/08/09 14:28:25 changed by p_lindheimer

  • description changed.

09/08/09 14:38:20 changed by p_lindheimer

  • status changed from new to closed.
  • resolution set to fixed.

(In [8344]) closes #3880 revert removal of DAHDI conversion from ZAP in trunks