Commit Graph

9203 Commits

Author SHA1 Message Date
konradSC
fc1c8e3a22 VM Password Complexity through the Phone (#2773)
* Update index.lua

Store password complexity settings as variables.

* Update macro.lua

Add macros for "password is below minimum length" and "password is not secure"

* Update change_password.lua

Adds the ability to check for password complexity and minimum length.

Also, fixes a bug where the password was changed if the caller hung up in the middle of changing their password.
2017-07-31 10:39:28 -06:00
FusionPBX
a99ca091f3 Update destinations.php 2017-07-30 11:42:29 -06:00
FusionPBX
8778bdaa55 Update app_languages.php 2017-07-30 11:41:42 -06:00
FusionPBX
42df727a33 Update destination_edit.php 2017-07-30 11:40:39 -06:00
konradSC
7ef72a7a8e Bug Fix: Not rerouting back to Advanced vm menu (#2768)
Need to pass in the "advanced" menu variable to functions in order to get back to Advanced menu.
2017-07-30 10:55:27 -06:00
FusionPBX
efe066e332 Update app_languages.php 2017-07-30 10:54:31 -06:00
konradSC
ca6b980637 Voicemail password complexity enforced in the web interface (#2767)
* Update app_config.php

* Update voicemail_edit.php

* Update app_languages.php

* Update app_config.php
2017-07-30 10:53:32 -06:00
sergey-mz
c133a992b4 Set assigned device line display name (#2750)
Set line display name to Effective Caller ID instead of extension #. Full directory name could be used too.
2017-07-30 10:50:41 -06:00
sergey-mz
6ee250f586 Get Aastra phone MAC address from request header (#2762) 2017-07-30 10:47:13 -06:00
FusionPBX
f19c4fe3fa Update index.lua 2017-07-29 23:06:43 -06:00
FusionPBX
bbcfe370ee Update app_config.php 2017-07-29 15:33:54 -06:00
Len
1838d5fa61 Create phonebook.xml 2017-07-29 02:12:33 -04:00
Len
67ef2a23bb Update {$mac}.xml 2017-07-29 02:12:01 -04:00
Len
4eda7048f0 Create phonebook.xml 2017-07-29 02:08:15 -04:00
Len
9664ebc29d Update {$mac}.xml 2017-07-29 02:07:25 -04:00
Len
3170b9e632 Update {$mac}.xml 2017-07-29 02:06:15 -04:00
Len
61856f9fc8 Create phonebook.xml 2017-07-29 02:05:18 -04:00
Len
a09fabf5b7 Create phonebook.xml 2017-07-29 02:04:36 -04:00
Len
f08934484e Create phonebook.xml 2017-07-29 02:04:05 -04:00
Len
e7c5d49584 Create phonebook.xml 2017-07-29 02:03:31 -04:00
Len
41228c83d2 Create phonebook.xml 2017-07-29 02:02:57 -04:00
Len
3fd603e2ef Update {$mac}.xml 2017-07-29 02:01:22 -04:00
Len
3b4887b463 Update {$mac}.xml 2017-07-29 02:00:07 -04:00
Len
ba29bd9911 Update {$mac}.xml 2017-07-29 01:59:19 -04:00
Len
62d3dd74bc Update {$mac}.xml 2017-07-29 01:57:38 -04:00
Len
84194d670b Update {$mac}.xml 2017-07-29 01:47:34 -04:00
Len
1154dbb580 Update {$mac}.xml 2017-07-29 01:38:45 -04:00
Len
c187e83de5 Update {$mac}.xml 2017-07-29 01:19:47 -04:00
Len
456e18bb3e Update README.txt 2017-07-29 01:03:51 -04:00
Len
ed8741a941 Update {$mac}.xml 2017-07-29 01:02:18 -04:00
Len
61e015d993 Update README.txt 2017-07-29 00:59:39 -04:00
Len
0dc91601ba Update {$mac}.xml 2017-07-29 00:56:11 -04:00
Len
b5f5904c19 Update README.txt 2017-07-29 00:52:55 -04:00
Len
d7b22124fd Update {$mac}.xml 2017-07-29 00:51:24 -04:00
Len
354fdda02b Update README.txt 2017-07-29 00:49:05 -04:00
Len
9949b080e9 Update {$mac}.xml 2017-07-29 00:46:51 -04:00
Len
2bdbff5798 Update README.txt 2017-07-29 00:42:18 -04:00
Len
c3faffc8d2 Update {$mac}.xml 2017-07-29 00:38:58 -04:00
Len
866918bd46 Update {$mac}.xml 2017-07-29 00:34:12 -04:00
Len
0a9b0d8973 Update {$mac}.xml 2017-07-29 00:32:02 -04:00
Len
260d39aa31 Update app_config.php 2017-07-29 00:23:08 -04:00
FusionPBX
dc99be9cd3 Update provision.php 2017-07-28 16:47:59 -06:00
FusionPBX
94abb1da73 Update provision.php 2017-07-28 16:31:26 -06:00
FusionPBX
6e42463411 Update provision.php 2017-07-28 15:52:43 -06:00
FusionPBX
28d88c5179 Update app_config.php 2017-07-27 17:31:05 -06:00
Alexey Melnichuk
e728cb44ae Fix. Cache class. (#2755)
* Fix. Cache class.

 * `send_event` raise error so `Cache.del` did not remove key or send any event
 * use `memcache` method by default even if `cache` table does not defined in config
 * `Cache.get` did not return any data when use `memcache` method
 * `Cache.get` did not close file. (Its should not be a big problem because GC should do it by self).
 * `Cache.get` can returns some undefined global value. (if method is `file` and file not exists then method returns global `result` value)
 * `Cache.get` does not need check for file existence
 * Value escaping does not needed for `file` method
 * Needed different key escaping for `memcache` and `file` methods
 * Update self test

* Change. Use random names for temp files.
2017-07-26 09:40:53 -06:00
FusionPBX
c84fd7ebe4 Update destination_edit.php 2017-07-25 22:05:35 -06:00
Alexey Melnichuk
76413de3f8 Add. Make legend outside of graphic of CDR Statistic. (#2760) 2017-07-25 14:38:57 -06:00
FusionPBX
01e19d4de2 Update 040_call_block.xml 2017-07-25 14:35:04 -06:00
Len
f586cb1e13 correct en and ru values
correct ru and en for description-profile_param_value
2017-07-25 15:20:15 -04:00