mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2025-12-30 00:53:50 +00:00
Fix issue with some emails not getting pulled from IMAP (#6969)
* Fix issue with some emails not getting pulled from IMAP * alert users of the ability to enter a domain name
This commit is contained in:
committed by
GitHub
parent
3c0a5ad774
commit
68b4b32519
@@ -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) מותר לשלוח פקסים דרך שרת זה.";
|
||||
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user