diff --git a/app/fax/app_languages.php b/app/fax/app_languages.php index 619fe17da7..1932ad8beb 100644 --- a/app/fax/app_languages.php +++ b/app/fax/app_languages.php @@ -3978,15 +3978,15 @@ $text['description-email_outbound_subject_tag']['zh-cn'] = "设置出站传真 $text['description-email_outbound_subject_tag']['ja-jp'] = "送信 FAX の電子メール件名タグを設定します。"; $text['description-email_outbound_subject_tag']['ko-kr'] = "아웃바운드 팩스에 대한 이메일 제목 태그를 설정합니다."; -$text['description-email_outbound_authorized_senders']['en-us'] = "Define the email address(es) allowed to send faxes through this server."; -$text['description-email_outbound_authorized_senders']['en-gb'] = "Define the email address(es) allowed to send faxes through this server."; +$text['description-email_outbound_authorized_senders']['en-us'] = "Define the email address(es) allowed to send faxes through this server. You may also enter a domain name to allow any sender from the domain."; +$text['description-email_outbound_authorized_senders']['en-gb'] = "Define the email address(es) allowed to send faxes through this server. You may also enter a domain name to allow any sender from the domain."; $text['description-email_outbound_authorized_senders']['ar-eg'] = "(أ) تحديد العنوان الإلكتروني (البريد الإلكتروني) الذي يسمح بإرسال الفاكس عبر هذا الخادم."; $text['description-email_outbound_authorized_senders']['de-at'] = "Geben Sie die Email Addresse(n) an, von welchen Faxe gesendet werden dürfen."; $text['description-email_outbound_authorized_senders']['de-ch'] = "Geben Sie die Email Addresse(n) an, von welchen Faxe gesendet werden dürfen."; $text['description-email_outbound_authorized_senders']['de-de'] = "Geben Sie die Email Addresse(n) an, von welchen Faxe gesendet werden dürfen."; $text['description-email_outbound_authorized_senders']['el-gr'] = "Καθορίστε τις διευθύνσεις email που επιτρέπεται να στέλνουν φαξ μέσω αυτού του διακομιστή."; -$text['description-email_outbound_authorized_senders']['es-cl'] = "Definir la dirección de correo electrónico(es) pueden enviar faxes a través de este servidor."; -$text['description-email_outbound_authorized_senders']['es-mx'] = "Definir la dirección de correo electrónico(es) pueden enviar faxes a través de este servidor."; +$text['description-email_outbound_authorized_senders']['es-cl'] = "Definir la dirección de correo electrónico(es) pueden enviar faxes a través de este servidor. También puede ingresar un nombre de dominio para permitir cualquier remitente del dominio."; +$text['description-email_outbound_authorized_senders']['es-mx'] = "Definir la dirección de correo electrónico(es) pueden enviar faxes a través de este servidor. También puede ingresar un nombre de dominio para permitir cualquier remitente del dominio."; $text['description-email_outbound_authorized_senders']['fr-ca'] = "Définir l'adresse e-mail(s) autorisé à envoyer des télécopies via ce serveur."; $text['description-email_outbound_authorized_senders']['fr-fr'] = "Définir l'adresse e-mail(s) autorisé à envoyer des télécopies via ce serveur."; $text['description-email_outbound_authorized_senders']['he-il'] = "הגדרת כתובת הדואר האלקטרוני (es) מותר לשלוח פקסים דרך שרת זה."; diff --git a/app/fax/fax_emails.php b/app/fax/fax_emails.php index a526360881..74f1bb793a 100644 --- a/app/fax/fax_emails.php +++ b/app/fax/fax_emails.php @@ -35,6 +35,7 @@ require_once "resources/classes/text.php"; $sql = "select * from v_fax "; $sql .= "where fax_email_connection_host <> '' "; $sql .= "and fax_email_connection_host is not null "; +$sql .= "and fax_email_outbound_subject_tag is not null "; $database = new database; $result = $database->select($sql, null, 'all'); unset($sql);