Commit Graph

2559 Commits

Author SHA1 Message Date
FusionPBX
bf6274e0fb Update sofia.conf.lua
Activate the sofia profile domain aliases.
2017-01-28 14:50:06 -07:00
FusionPBX
28e1014365 Update internal-ipv6.xml.noload
Add the domains section.
2017-01-28 13:06:30 -07:00
FusionPBX
40efef919a Update
Add voicemail/vm-no_answer_no_vm.wav
2017-01-27 13:24:10 -07:00
FusionPBX
be0ffa16e5 Update index.lua
Prevent an error by moving the voicemail quota into the if statement that checks if the voicemail_uuid is not null.
2017-01-27 12:18:01 -07:00
FusionPBX
b2dd6b171a Update {$mac}.cfg
Prevent creating an empty password for Polycom phones.
2017-01-25 11:13:07 -07:00
FusionPBX
2c52813323 Update {$mac}.cfg
Preventing provisioning an empty admin_password for Polycom.
2017-01-25 11:12:09 -07:00
FusionPBX
140dc8c9f8 Create directory.xml 2017-01-25 08:45:14 -07:00
FusionPBX
1b1e3d0045 Create favorite_setting.xml 2017-01-25 08:44:22 -07:00
FusionPBX
9f632876b8 Create {$mac}.cfg 2017-01-25 08:40:35 -07:00
FusionPBX
0bd2d5f36b Update y000000000066.cfg 2017-01-25 08:39:09 -07:00
FusionPBX
fabe7bbfd0 Create y000000000066.cfg 2017-01-25 08:37:33 -07:00
FusionPBX
b2776e4e10 Update sofia.conf.lua 2017-01-18 08:55:29 -07:00
FusionPBX
f6fdd9523f Update domains.php 2017-01-17 13:37:26 -07:00
jalr
49d80dcec3 fix condition (#2298) 2017-01-17 10:16:13 -07:00
Alexey Melnichuk
795e45227d Fix. Russia has 11 digits (close #2303) (#2304) 2017-01-17 10:14:49 -07:00
Chris Black
b87a11adab Add transcription to the sms message (#2308)
Gives the user ability to add transcription to the sms message for
voicemail notifications.
2017-01-17 10:13:33 -07:00
FusionPBX
6fe57bace2 Update domains.php 2017-01-14 18:17:21 -07:00
FusionPBX
c6c5329a56 Update domains.php 2017-01-14 18:15:34 -07:00
FusionPBX
532a0c0590 Minor syntax fix spotted in dry run now activate. 2017-01-14 14:39:05 -07:00
FusionPBX
b9bf07a5e6 Add the settings method to the upgrade method. 2017-01-14 14:33:05 -07:00
FusionPBX
841d56938d Add the settings method to the domains class. 2017-01-14 13:15:03 -07:00
FusionPBX
5609b57c3e Update sofia.conf.lua
Fix the year.
2017-01-12 04:26:32 -07:00
FusionPBX
3a4263a51e Update sofia.conf.lua
Fix domain alias show with sofia status.
2017-01-12 04:18:58 -07:00
FusionPBX
95c36e4d35 Update event_socket.php 2017-01-11 14:43:45 -07:00
FusionPBX
46be3c8e97 Update groups.php
Prevent warnings in groups.php.
2017-01-11 14:39:40 -07:00
FusionPBX
da9cd4cbcf Update event_socket.php
Add freeswitch defaults to event_socket.php
2017-01-11 14:14:47 -07:00
FusionPBX
edb1a964a7 Update groups.php 2017-01-10 07:55:09 -07:00
FusionPBX
7021484772 Update switch.php 2017-01-10 01:46:59 -07:00
FusionPBX
d8cf528a50 Update switch_settings.php 2017-01-10 01:18:17 -07:00
FusionPBX
cd3c9d0e52 Update pdo.php 2017-01-09 17:55:40 -07:00
Len
a0316a3f12 Update {$mac}.cfg
correct missing {
2017-01-08 19:41:47 -05:00
FusionPBX
7ef0b192e7 Delete config.php.dist 2017-01-05 05:05:43 -07:00
FusionPBX
3cc705d93a Create uuid.php 2017-01-05 04:15:47 -07:00
FusionPBX
212cd7d025 Update schema.php 2017-01-05 03:58:01 -07:00
FusionPBX
c43c1a556f Update schema.php
Prevent php warnings.
2017-01-05 03:53:02 -07:00
FusionPBX
5744d4b673 Update pdo.php
Prevent php warnings.
2017-01-04 20:40:36 -07:00
FusionPBX
4c6e807786 Update ivr.conf.lua 2016-12-29 13:35:55 -07:00
FusionPBX
68e18894db Update functions.php
Minor version change.
2016-12-27 22:22:54 -07:00
jebsolutions
730e9ed514 fixes bug #2270 reported by volga629 (#2276)
Please do further testing/review and give comments and suggest cleanup, etc.

This bug is only tripped if all of the following are true:
a) fax send fails
b) email notification of fax failure also fails
c) Other?

how to test
- have a 100% working fax to email setup.
- Change Advanced->defaults->email and set the port to be something invalid.
- e.g. smtp port 9999 is invalid
- send a test fax to something without a fax
- e.g. I just faxed my own DID which does NOT have fax answering

- each time the phone rings answer...wait 5 seconds, and then hang up
- note: it will retry sending the fax 5 times so repeat the above.

- on the last try it will give up, and try to send the failure email
- the email will fail (bad port) and then it will insert the failed email into v_emails
- the insert will fail and nothing in v_emails

Error was caused by trying to insert '' into the domain_uuid field.
'' is invalid in a uuid field, but null is okay.

The null is caused by no x-headers being passed.  So these two fields end up null:
$headers["X-FusionPBX-Domain-UUID"]
$headers["X-FusionPBX-Email-Type"]

Ignoring unset/uninitialized variables hides bugs.

Fix: feed the X-Header in the calling lua code.
2016-12-27 17:49:57 -07:00
FusionPBX
728a3c4b01 Update functions.php
is_uuid make it more generic so it doesn't matter which uuid type it is whether 1,2,3 or 4.
2016-12-24 14:07:03 -07:00
Luis Daniel Lucio Quiroz
fa244129be Fix Call forward BUSY and NO ANSWER DEVEL (#2269)
Same rationale as 4.0 and 4.2
2016-12-24 10:38:21 -07:00
FusionPBX
02a505e4d2 Update route_to_bridge.lua 2016-12-23 02:16:22 -07:00
FusionPBX
b9b3fd6494 Update route_to_bridge.lua 2016-12-23 01:52:19 -07:00
FusionPBX
406d326c8d Update dialplan.lua
Add hostname to dialplan xml handler.
2016-12-23 01:28:47 -07:00
FusionPBX
754403d430 Update switch.php 2016-12-23 01:21:14 -07:00
FusionPBX
cf91f82e65 Update switch.php 2016-12-23 01:17:09 -07:00
FusionPBX
dddaf28f6e Update 2016-12-22 14:38:12 -07:00
FusionPBX
bd3e32a6d5 Update check_password.lua 2016-12-22 14:34:38 -07:00
FusionPBX
166645cf9a Update {$mac}.xml
Add {$cisco_router_mode}
2016-12-20 15:01:44 -07:00
Len
1e0dd35e4f Update SIP{$mac}.cnf
Set telnet to "0" for off by default.
2016-12-20 13:55:15 -05:00