Commit Graph

614 Commits

Author SHA1 Message Date
fusionate 0406eeb14f
Fax Server: Updates for PHP 8.1 2023-05-29 22:25:48 +00:00
fusionate e9281cb0cb
Fax [Class]: Updates for PHP 8.1 2023-05-29 22:24:23 +00:00
markjcrane c045bb4705 Add a new fax user group 2023-05-22 10:45:01 -06:00
markjcrane 6cbf572512 Remove fax_retry.lua supporting FAX Queue only 2023-05-17 12:37:31 -06:00
markjcrane 6d7e125743 Fix all PHP 8.1 messages for upgrade.php 2023-05-17 10:07:49 -06:00
Alex a46c5dbfc9
Update translations (#6688)
* Update app_languages.php
2023-05-12 15:14:59 -06:00
Alex 3e0ec8b752
Add missing translations (#6673) 2023-05-09 11:39:02 -06:00
Alex 10a2d87ee6
Add missing translations (#6662)
* Update app_languages.php

* Update app_languages.php

* Update app_languages.php

* Update app_languages.php

* Update app_languages.php

* Update app_languages.php

* Update app_languages.php

* Update app_languages.php

* Update app_languages.php

* Update app_languages.php

* Update app_languages.php

* Update app_languages.php

* Update app_languages.php

* Update app_languages.php

* Update app_languages.php

* Update app_languages.php

* Update app_languages.php

* Update app_languages.php

* Update app_languages.php

* Update app_languages.php

* Update app_languages.php
2023-05-05 15:22:22 -06:00
frytimo fef8165be2
Frytimo pr patches for php8.1 (#6630)
* Passing null to parameter #2 ($string) of type string is deprecated

* Passing null to parameter #1 ($string) of type string is deprecated

* php 8.1 fixes

* php 8.1 fixes - replace strlen($var) > 0 with !empty($var)

* php 8.1 fixes - replace ${var} with {$var}

* php 8.1 fixes - replace ${var} with {$var}

* php 8.1 fixes - replace ${var} with {$var}

* php 8.1 fixes - replace ${var} with {$var}

* php 8.1 fixes - strlower with null

* php 8.1 fixes - strreplace with null

* php 8.1 fixes - passing null to base64_decode

* php 8.1 fixes - check for false and check for null on $this->dir

* php 8.1 fixes - remove assignment of $db variable to modules object

* php 8.1 fixes - avoid sending null to substr

* php 8.1 fixes - change ${var} to {$var}

* php 8.1 fixes - check for null before preg_replace

* php 8.1 fixes - remove setting db variable on domains object

* php 8.1 fixes - set empty string if $row['domain_setting_subcategory'] is null

* php 8.1 fixes - set empty string if $_REQUEST['show'] is not available

* php 8.1 fixes

* php 8.1 fixes - correct $_POST checking syntax

* php 8.1 fixes - correct $_POST variables

* php 8.1 fixes

* Use brackets consistently

* Update user_setting_edit.php

* Change to not empty

* Update device.php

* Update text.php

---------

Co-authored-by: Tim Fry <tim@voipstratus.com>
Co-authored-by: FusionPBX <markjcrane@gmail.com>
2023-05-05 10:46:37 -06:00
frytimo 1c6c903709
Frytimo pr fix headers already sent (#6655)
* remove space causing headers already sent

* remove space causing headers already sent
2023-05-03 11:10:17 -06:00
markjcrane 1513bd3301 Add Chinese, Korean, and Japanese translations 2023-05-03 10:36:25 -06:00
markjcrane 28fe89066e Add Chinese, Korean, and Japanese translations 2023-05-02 22:05:16 -06:00
markjcrane 381b3bdd9f Add menu translations 2023-05-02 20:30:13 -06:00
markjcrane 41e87e7f01 Add additional languages 2023-05-02 20:22:44 -06:00
frytimo 69bd42af05
remove unneeded destruct methods as GC has higher performance (#6631)
Co-authored-by: Tim Fry <tim@voipstratus.com>
2023-04-27 20:18:53 -06:00
chansizzle 414829383c
Add fax_download_view permission (#6605)
* Add fax_download_view permission

Add fax_download_view permission to allow hiding the "File Name (Download)" column on Fax Inbox and Fax Sent pages. Some users prefer hiding this field as they also have the "View" column that they can click on to view and download PDFs of the faxes.
2023-04-26 21:47:45 -06:00
Luis Daniel Lucio Quiroz 0c28221ae2
Fix adding Faxes (#6614)
$fax_email_outbound_authorized_senders is only filled when fax_extension_advanced permission is set. However, the edit part doesn't verify that sizeof(NULL) creates a fatal error.

Fatal error: Uncaught TypeError: sizeof(): Argument #1 ($value) must be of type Countable|array, null given in /var/www/fusionpbx/app/fax/fax_edit.php:286 Stack trace: #0 {main} thrown in /var/www/fusionpbx/app/fax/fax_edit.php on line 286

This patch verifies that $fax_email_outbound_authorized_senders is an array before sizeof() evaluates it. You can now add faxes with the fax_extension_advanced disabled.
2023-04-24 21:06:58 -06:00
FusionPBX 225870213b
Change the fax dialplan order
Change to 40 is in case people use a fax number that conflicts with outbound routes
2023-04-24 11:58:52 -06:00
emak 800e742387
Disable fax sending when domain is disabled (#6606)
* Add warning_bar style for disabled fax sending

Add styles for .warning_bar class when fax server sending is disabled due to disabled domain.

* Disable fax sending if domain is disabled

When domain is disabled, users should not be able to send faxes either.

* Add text for fax sending disabled warning
2023-04-10 09:31:16 -06:00
FusionPBX abbaccde9d
Move xml::santize
Need to preserve ${caller_id_number} and ${strftime(%Y-%m-%d-%H-%M-%S)} so moved the xml::santize
2023-03-31 13:25:42 -06:00
Alex 43eb2a5b9d
[security] sanitize the xml (#6595)
* Update call_center_queue_edit.php

* fix typo

* Update call_flow_edit.php

* Update conference_center_edit.php

* Update conference_edit.php

* Update destination_edit.php

* Update fax.php

* Update ivr_menu_edit.php

* Update ring_group_edit.php

* Update app_defaults.php

* Update ivr_menu_copy.php

* Update destination_imports.php

* Update app_defaults.php
2023-03-30 12:46:36 -06:00
fusionate a65c4cc532
Fax Server - List: Better parameter string. 2023-02-15 19:46:54 +00:00
fusionate ee466d69b0
Fax Server - List: Add Show All, fix search. 2023-02-15 19:33:11 +00:00
FusionPBX 0873d67552
Add a link to fax_queue 2023-01-14 15:05:27 -07:00
FusionPBX e5b4f36b4b
Add label-queue 2023-01-14 15:04:05 -07:00
denisent 422b41cf8f
malformed sql messed up fax server columns (#6535) 2023-01-11 15:04:34 -07:00
FusionPBX 784bdafccf
Use the time zone and format the date 2023-01-02 23:21:40 -07:00
FusionPBX ee17eb2665
Security, sanitize fax file path and name 2022-12-18 15:39:11 -07:00
chansizzle b8c2fc182a
allow fax FROM to have more characters (#6503)
Fax cover sheet FROM field - increase the number of characters
2022-12-07 11:13:16 -07:00
markjcrane d50bcb476a Replace root.php 2022-10-10 16:35:14 -06:00
markjcrane eb5c25aa35 Add insert_date, insert_user, update_date, update_user to all tables 2022-09-18 00:54:37 -06:00
FusionPBX a2cedd0513
Reduce fax originate command
- Size limit for originate command parameters around 1130 characters.
- The originate command is used in event socket and not in shell command so remove escapeshellarg.
- Remove for_fax=1 as it doesn't seem to be used anywhere.
2022-09-16 17:05:36 -06:00
emak 26b3e7893b
Add Fax Queue TX Email Variables (#6460)
* Add db field to v_fax_queue to link to fax log

* Add fax_duration field to v_fax_logs

Add fax duration to db to allow for logging of this data for fax email templates.

* Add new email variables to fax send

* Fix some logging variables and fax_log_uuid

Added back some missing session variables for the fax log.

Also update the email queue db field with the fax_log_uuid to allow us to add variables to the fax email templates later.

* Update hangup_tx.lua
2022-08-19 18:08:43 -06:00
FusionPBX a9e534f1fa
Remove playback silence_stream 2022-08-18 17:59:41 -06:00
FusionPBX de22a9121a
Security use escapeshellarg 2022-06-29 10:24:05 -06:00
FusionPBX 8c6d8a4103
Require the fax extension to be numeric. 2022-06-23 15:02:07 -06:00
FusionPBX d0d0346b42
Use fax_extension_copy permission for the copy button. 2022-06-09 19:23:28 -06:00
agree 55de8844bf
[fax] use get_accountcode function to get the accountcode (#6387) 2022-05-16 09:35:58 -06:00
FusionPBX 942212b549
Default fax smtp_from and smtp_from_name to enabled false. 2022-04-27 22:03:42 -06:00
FusionPBX 1ffc8408bd
Adjust fax mail_to_address.
For email to fax use the sender email address. Otherwise use the notify email addresses listed on the fax server edit page.
2022-04-25 13:57:58 -06:00
AlexC d3fff20f90
Update app_languages.php (#6350) 2022-04-25 13:04:39 -06:00
FusionPBX 37a0718d44
Send final tif and pdf to the sent box
Prevents having to save them to temp and then to sent box.
2022-04-23 19:37:49 -06:00
FusionPBX 2253f2c17c
Use a better way to exec which command 2022-04-23 17:59:56 -06:00
FusionPBX 5fd2ca9105
Use which command to find the path to the commands.
This fixes the FAX send notification PDF attachment.
2022-04-23 17:46:32 -06:00
FusionPBX b5c70ce8ca
Add confirm-queued and confirm-sent 2022-04-21 17:03:29 -06:00
FusionPBX e07c37795f
Update the FAX message 2022-04-21 17:02:39 -06:00
FusionPBX fb06a0a45f
Update fax_files.php
Minor changes to the select statement.
2022-04-20 20:44:01 -06:00
FusionPBX 1fc99311a5
Update fax_emails.php
Added spaces to the code to be more consistent.
2022-04-17 14:21:54 -06:00
FusionPBX 652d135452
Setting fax_send_mode not used so removing it. 2022-04-16 11:20:28 -06:00
FusionPBX 2f32ebd357
Use setting fax_queue enabled boolean. 2022-04-16 11:17:59 -06:00
FusionPBX 3f8e4328fe
Use this for now until FAX queue is prepared better. 2022-04-05 14:01:56 -06:00
FusionPBX 8b6f094e08
Use the right hangup hook. 2022-04-03 00:22:14 -06:00
FusionPBX a99395033f
Update fax_send.php
Minor changes
2022-04-02 19:06:19 -06:00
FusionPBX 71be6af0c2
Update fax_emails.php 2022-04-01 17:25:57 -06:00
FusionPBX 37f780e4e9
Add to the fax_queue_uuid common variables. 2022-03-31 22:11:00 -06:00
FusionPBX a0cb6ec4fd
Lines that were commented out failed with Dovecot IMAP
Changed the code to work around the issue we had with Dovecot on PHP 7.3
2022-03-31 19:22:27 -06:00
markjcrane 35fa6a2a08 Add a new FAX Queue 2022-03-31 12:24:00 -06:00
nyash 0bc048a634
Add/edit some polish translations (#6327)
* Add/edit some polish translations

* Minor touches to polish translations
2022-03-26 14:30:02 -06:00
FusionPBX bbf61c3950
Use contact permissions for the fax contacts if value is true. 2022-02-18 14:08:14 -07:00
agree d8bd345d3a
[fax] fix new templates not being enabled (#6290) 2022-02-07 13:15:13 -07:00
FusionPBX edcaff430b
Add more fax email templates 2022-02-04 16:10:07 -07:00
AlexC 2a74114cf2
Copy, toggle and delete buttons visible when checkbox is selected (#6242)
* Update bridges.php

* Update call_block.php

* Update call_center_queues.php

* Update call_center_agents.php

* Update call_broadcast.php

* Update call_flows.php

* Update call_recordings.php

* Update conference_centers.php

* Update conference_rooms.php

* Update conference_controls.php

* Update conference_profiles.php

* Update conferences.php

* Update contacts.php

* Update fax.php

* Update ivr_menus.php

* Update music_on_hold.php

* Update phrases.php

* Update recordings.php

* Update streams.php

* Update voicemails.php

* Update devices.php

* Update device_vendors.php

* Update device_vendor_functions.php

* Update extensions.php

* Update gateways.php

* Update dialplans.php

* Update destinations.php

* Update email_templates.php

* Update modules.php

* Update sip_profiles.php

* Update vars.php

* Update databases.php

* Update users.php

* Update default_settings.php

* Update domains.php

* Update groups.php

* Update menu.php
2022-01-13 11:37:59 -07:00
Anthony 1db3e5ba14
Removed Search Reset (#6241)
* Update default_settings.php

* Update devices.php

* Update extensions.php

* Update gateways.php

* Update users.php

* Update destinations.php

* Update dialplans.php

* Update bridges.php

* Update call_block.php

* Update call_broadcast.php

* Update call_flows.php

* Update call_forward.php

* Update call_recordings.php

* Update conference_centers.php

* Update conference_controls.php

* Update conference_profiles.php

* Update conferences.php

* Update contacts.php

* Update fax.php

* Update ivr_menus.php

* Update phrases.php

* Update recordings.php

* Update ring_groups.php

* Update time_conditions.php

* Update voicemails.php

* Update call_center_queues.php

* Update email_logs.php

* Update registrations.php

* Update user_logs.php

* Update access_controls.php

* Update domains.php

* Update email_templates.php

* Update groups.php

* Update menu.php

* Update number_translations.php

* Update sip_profiles.php

* Update database_transactions.php

* Update vars.php

* Update dashboard.php
2022-01-12 16:00:01 -07:00
FusionPBX 4c7f6d0a6b
Change mkdir to recursive. 2021-12-30 10:19:47 -07:00
FusionPBX fcf53a0976
Don't show this until its ready for production. 2021-12-15 14:37:02 -07:00
FusionPBX 15c8f0bd16
Code changes to get the code closer to consistent with the FusionPBX code base.
Still needs the following.
- Only show the current domain
- Use the text from app languages to support multi-lingual.
2021-12-10 20:25:52 -07:00
FusionPBX 3778e449f5
Change back to original fax_files.php as the fax_outbound.php is not ready. 2021-12-10 20:21:03 -07:00
FusionPBX 406cc25c70
Add a missing quote. 2021-12-06 17:17:22 -07:00
MCohenAuravox ab9140e960
Update fax_send.php (#6067)
Send redirects to new Outbox feature
2021-12-06 10:40:45 -07:00
MCohenAuravox 1c860c3114
Update fax.php (#6066)
Add menu item for outbox feature
* Add label-outbox
* Use the label-outbox
2021-12-06 10:36:40 -07:00
MCohenAuravox 378a5043f9
Create fax_outbox.php (#6068)
New Outbox feature page
2021-12-06 10:25:57 -07:00
FusionPBX dd106a6871
Replace event_socket_mkdir with php mkdir. (#6170) 2021-12-02 19:03:55 -07:00
frytimo e9288230b8
Honor toll_allow when using email-to-fax (#6128)
toll_allow should be honored for outbound routes
2021-11-22 09:09:03 -07:00
FusionPBX 487afc371e
Change the fax file name to md5 to avoid characters that present a security risk. 2021-11-03 15:30:01 -06:00
FusionPBX 0377b2152c
Force the fax_page_size to only preset allowed values. 2021-11-03 09:38:01 -06:00
FusionPBX 2d2869c1a1
Require the fax_extension to be numeric.
Need to validate that the fax_extension really is numeric. Also replace event_socket_mkdir that makes a directory with mkdir.lua and use a php mkdir function instead. We want to offload this off of FreeSWITCH and its safer to use the PHP function.
2021-11-02 21:55:15 -06:00
FusionPBX cbf5a11310
Add fax_subject, fax_message, and fax_footer to the user group. 2021-09-08 22:39:23 -06:00
FusionPBX c712b64ad4
Add fax variables t38_passthru, and fax_use_ecm. 2021-07-26 11:38:58 -06:00
FusionPBX f6f2f1c77f
Fix custom fax cover_logo. 2021-07-14 18:54:03 -06:00
agree 369324b10e
Fix fax search (#5975) 2021-06-18 14:40:54 -06:00
FusionPBX 89de896e75
Changed to maintain compatibility with newer version of ghost script.
Credit to demonspork for this fix.
2021-06-12 13:15:56 -06:00
FusionPBX c4219d7fe0
Add three new permissions fax_subject, fax_message, and fax_footer. 2021-06-09 10:56:10 -06:00
FusionPBX c5209d24e6
Add three new permissions fax_subject, fax_message, and fax_footer 2021-06-09 10:55:23 -06:00
markjcrane 014cbd1cd0 Replace data type timestamp with timestamptz 2021-05-05 20:46:53 -06:00
FusionPBX 48cffe41da
Use permission fax_extension_view instead of if_group. 2021-03-18 10:44:43 -06:00
FusionPBX d0fbbd6a2e
Use the new fax_extension_view_domain instead of if_group function 2021-03-18 10:37:38 -06:00
FusionPBX 95b5660da9
Use the new fax_extension_view_domain instead of if_group superadmin and admin. 2021-03-18 10:35:37 -06:00
FusionPBX d27c7e210e
Use the new fax fax_extension_view_domain permission.
Also selected specific fields rather than using the * wild card in the select statement.
2021-03-18 10:23:03 -06:00
FusionPBX 4ec6e5832d
Add a new permission fax_extension_view_domain 2021-03-18 09:56:07 -06:00
emaktech a894aa1aa7
Update app_languages.php
Minor french language updates
2021-01-06 15:31:51 -05:00
fusionate 0dc478ac00 Fax Server: Add ability to authorize domains for Email-to-Fax. 2020-12-02 12:20:10 -07:00
fusionate c67c8cd4c2 Destination Select - Dynamic: Clear session array on add/toggle/delete of a destination type record. 2020-11-30 14:15:57 -07:00
emaktech 5d3b2d3226
Optimize Fax Conversion Quality
Added additional command line switches to the Ghostscript command which greatly improves the output quality and legibility of converted faxes.

Now using a simple threshold method - 75% threshold to determine if a pixel will be black or white.
Dithering is turned off completely.
Also switched to newer tiffg4 compression method.
2020-11-17 16:00:23 -05:00
fusionate 4f29228768 Fax Server: Better compatibility with current libtiff-tools. 2020-11-05 16:08:27 -07:00
FusionPBX 81ff164a65
Update fax.php
Change session context to domain_name.
2020-10-22 02:19:08 -06:00
agree 73e9136344
Fix faxing to multiple numbers (#5503) 2020-10-01 17:08:53 -06:00
agree 16b34145d6
add extensions to destination class (#5501) 2020-09-29 11:43:48 -06:00
FusionPBX fe284ccebb
Remove the deprecated save_dialplan_xml function. 2020-08-14 00:17:46 -06:00
Nate 75b46b3298 Fax - Preview/Send: Better cover_logo handling. 2020-05-30 20:27:26 -06:00
Nate 44e2df3ac1 Fax Server: Modal integration. 2020-03-26 09:38:50 -06:00
racitup a1699f6fa6 Add en-gb fusionpbx language (#5192)
* Create en-gb language by copying en-us

* Add en-gb to app_configs

* Add en-gb to app_menus

* Language copy utility

* Fix missing quote mark

* Delete cp_lang.py

Co-authored-by: FusionPBX <markjcrane@gmail.com>
2020-03-20 14:47:13 -06:00
Nate e8494facee Multiple: Add IDs to form tags, remove empty action attributes. 2020-03-05 10:02:25 -07:00
Nate 029c7174b4 Multiple - Add IDs to common/default action buttons. 2020-03-05 00:05:45 -07:00
Nate 5f5a4f5509 Fax Server: Include logs and files in server/extension delete() method. 2020-02-17 20:10:36 -07:00
Nate 0f3b464937 Fax - Edit: Minor mods. 2020-02-13 13:04:26 -07:00
Nate 1bc6aea2ca Fax - Server: Remove deprecated delete script. 2020-02-13 13:03:21 -07:00
Nate 913aec9253 Fax - Files: Remove deprecated delete script. 2020-02-13 12:45:14 -07:00
Nate 4a8fe2d2d0 Fax - Logs: Remove deprecated delete script. 2020-02-13 12:30:44 -07:00
Nate 469798ad36 Fax Logs: Better refresh button. 2020-01-29 11:49:49 -07:00
Nate ee283c7ea9 Fax Logs: Fix refresh button. 2020-01-29 11:47:37 -07:00
Nate 1ceccf698e Fax Server: List view, button, bulk delete via class, etc. 2020-01-29 11:41:12 -07:00
root e9f4d5113f Added destination select permissions 2020-01-21 11:43:19 -05:00
chansizzle bdec1750a4 Update app_config.php (#5031) 2020-01-08 20:39:19 -07:00
Nate d79244b39d Fax Server: Add window titles. 2020-01-06 11:43:43 -07:00
chansizzle b18607b6ae Update fax_logs.php (#4963) 2019-12-18 20:15:02 -07:00
root 45319ef301 Set directories to 755 and files to 644 2019-12-14 17:34:17 +00:00
agree d20a403679 added toll allow to fax server (#4936) 2019-12-08 22:37:12 -07:00
Nate d1869c2895 Fax Server: Class updates. 2019-11-30 18:49:08 -07:00
Nate bec5c647c9 List View: Updates to action classes. 2019-11-30 15:18:48 -07:00
Nate aa593c03fc List Views: Minor adjustments to code. 2019-11-30 14:18:00 -07:00
Nate bfb17507f1 List Views: Simplify action handling. 2019-11-30 11:12:41 -07:00
FusionPBX 536f65859a Update fax_log_view.php 2019-11-28 03:15:03 -07:00
Nate ec3e73a9ab Fax Server: List view updates. 2019-11-21 12:58:08 -07:00
FusionPBX bfe9becfa9 Update fax_files.php 2019-11-20 09:05:10 -07:00
agree 7e6801e798 Update fax_send.php (#4844) 2019-11-14 21:56:07 -07:00
chansizzle 5d3cc98176 Update app_languages.php (#4791) 2019-10-18 12:42:40 -06:00
Nate d95ab3ea2c Update fax_edit.php 2019-09-19 13:30:32 -06:00
Nate eacb7e3822 Fix escaping on fax server description. 2019-09-19 08:41:45 -06:00
Nate 2f7fb47a76 Fax Send: Token integration. 2019-09-19 08:35:52 -06:00
FusionPBX 435b7a5810 Update fax_edit.php 2019-09-19 08:08:17 -06:00
Nate a763609b6c Fax Server: Token integration. 2019-09-19 06:27:05 -06:00
frytimo 79daf8feaa Match mixed case in "from" address (#4618)
RFC's do not specify addresses must be converted lower case by email servers. If a sender has set their "from" address set to a mixed case string, the fax send will not match the authorized senders. This corrects that by changing authorized senders list to lower case before the comparison is done.
2019-09-17 12:39:31 -06:00
frytimo 7ecf092dd6 Match mixed case in "from" address (#4619)
RFC's do not specify addresses must be converted lower case by email servers. If a sender has set their "from" address set to a mixed case string, the fax send will not match the authorized senders. This ensures newly entered authorized senders are now stored as lower case.
2019-09-17 12:38:59 -06:00
emaktech 9ed86cfae0 Modified fr-ca / fr-fr translation. (#4597) 2019-09-12 17:00:16 -06:00
frytimo 8068a89a3a Update fax_emails.php (#4529)
Change $array to $result
2019-09-09 19:10:22 -06:00
Nate fdf28ca6fc Misc: Database class integration. 2019-09-04 12:21:57 -06:00
chansizzle 499ae9b33e Update fax.php (#4493)
* Update fax.php

* Update fax.php

* Update fax.php
2019-09-04 11:29:02 -06:00
frytimo 907c1e0867 Update fax_emails.php
Add missing ';'
2019-08-30 16:32:48 -04:00
FusionPBX 1b4e3787e1 Update fax_send.php 2019-08-30 01:34:59 -06:00
FusionPBX e5bd7a6575 Update fax_edit.php 2019-08-24 09:42:02 -06:00
FusionPBX 354b909bd1 Update fax_edit.php 2019-08-24 09:40:37 -06:00
FusionPBX 71c00b0409 Update fax_copy.php 2019-08-24 09:35:42 -06:00
FusionPBX 26a81ba57f Update fax_edit.php 2019-08-24 09:33:56 -06:00
FusionPBX 9e3e85def2 Update app_config.php 2019-08-24 09:32:56 -06:00
FusionPBX 554df5ffa5 Update fax_edit.php 2019-08-24 09:26:47 -06:00
Nate 733ba98dc6 Update to Bootstrap v4.3.1, jQuery 3.4.1. Adjustments to support updates. 2019-08-20 18:15:50 -06:00
chansizzle fad4356619 Update fax_send.php (#4443)
* Update fax_send.php

* Update fax_send.php
2019-08-15 15:29:05 -06:00
Nate d23c5d84c4 Fax Server: Database class integration. 2019-08-07 18:59:26 -06:00
FusionPBX eca86a9e6a Update fax_send.php 2019-06-19 08:12:40 -06:00
ednt 4e558f7c3d convert local html characters like &Uuml; (#4069)
Foreign language html emails were sent as received.
Now all html entities should be converted to there corresponding UTF8 characters.
2019-05-07 11:29:50 -06:00