123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584 |
- <?php
- /* Copyright (C) 2007-2017 Laurent Destailleur <eldy@users.sourceforge.net>
- * Copyright (C) 2009-2012 Regis Houssin <regis.houssin@inodbox.com>
- * Copyright (C) 2013 Juanjo Menent <jmenent@2byte.es>
- * Copyright (C) 2016 Jonathan TISSEAU <jonathan.tisseau@86dev.fr>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
- */
- /**
- * \file htdocs/admin/mails_ticket.php
- * \brief Page to setup mails for ticket
- */
- require '../main.inc.php';
- require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
- require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
- // Load translation files required by the page
- $langs->loadLangs(array('companies', 'products', 'admin', 'mails', 'other', 'errors'));
- $action = GETPOST('action', 'aZ09');
- $cancel = GETPOST('cancel', 'alpha');
- $usersignature = $user->signature;
- // For action = test or send, we ensure that content is not html, even for signature, because this we want a test with NO html.
- if ($action == 'test' || $action == 'send') {
- $usersignature = dol_string_nohtmltag($usersignature);
- }
- $substitutionarrayfortest = array(
- '__LOGIN__' => $user->login,
- '__ID__' => 'TESTIdRecord',
- '__EMAIL__' => 'TESTEMail',
- '__LASTNAME__' => 'TESTLastname',
- '__FIRSTNAME__' => 'TESTFirstname',
- '__USER_SIGNATURE__' => (($user->signature && empty($conf->global->MAIN_MAIL_DO_NOT_USE_SIGN)) ? $usersignature : ''),
- //'__PERSONALIZED__' => 'TESTPersonalized' // Hiden because not used yet
- );
- complete_substitutions_array($substitutionarrayfortest, $langs);
- // Security check
- if (!$user->admin) {
- accessforbidden();
- }
- /*
- * Actions
- */
- if ($action == 'update' && !$cancel) {
- // Send mode parameters
- dolibarr_set_const($db, "MAIN_MAIL_SENDMODE_TICKET", GETPOST("MAIN_MAIL_SENDMODE_TICKET"), 'chaine', 0, '', $conf->entity);
- dolibarr_set_const($db, "MAIN_MAIL_SMTP_PORT_TICKET", GETPOST("MAIN_MAIL_SMTP_PORT_TICKET"), 'chaine', 0, '', $conf->entity);
- dolibarr_set_const($db, "MAIN_MAIL_SMTP_SERVER_TICKET", GETPOST("MAIN_MAIL_SMTP_SERVER_TICKET"), 'chaine', 0, '', $conf->entity);
- dolibarr_set_const($db, "MAIN_MAIL_SMTPS_ID_TICKET", GETPOST("MAIN_MAIL_SMTPS_ID_TICKET"), 'chaine', 0, '', $conf->entity);
- dolibarr_set_const($db, "MAIN_MAIL_SMTPS_PW_TICKET", GETPOST("MAIN_MAIL_SMTPS_PW_TICKET"), 'chaine', 0, '', $conf->entity);
- dolibarr_set_const($db, "MAIN_MAIL_EMAIL_TLS_TICKET", GETPOST("MAIN_MAIL_EMAIL_TLS_TICKET"), 'chaine', 0, '', $conf->entity);
- dolibarr_set_const($db, "MAIN_MAIL_EMAIL_STARTTLS_TICKET", GETPOST("MAIN_MAIL_EMAIL_STARTTLS_TICKET"), 'chaine', 0, '', $conf->entity);
- header("Location: ".$_SERVER["PHP_SELF"]."?mainmenu=home&leftmenu=setup");
- exit;
- }
- // Actions to send emails
- $id = 0;
- $actiontypecode = ''; // Not an event for agenda
- $triggersendname = ''; // Disable triggers
- $paramname = 'id';
- $mode = 'emailfortest';
- $trackid = (($action == 'testhtml') ? "testhtml" : "test");
- $sendcontext = 'ticket'; // Force to use dedicated context of setup for ticket
- include DOL_DOCUMENT_ROOT.'/core/actions_sendmails.inc.php';
- if ($action == 'presend' && GETPOST('trackid') == 'test') {
- $action = 'test';
- }
- if ($action == 'presend' && GETPOST('trackid') == 'testhtml') {
- $action = 'testhtml';
- }
- /*
- * View
- */
- $form = new Form($db);
- $linuxlike = 1;
- if (preg_match('/^win/i', PHP_OS)) {
- $linuxlike = 0;
- }
- if (preg_match('/^mac/i', PHP_OS)) {
- $linuxlike = 0;
- }
- if (empty($conf->global->MAIN_MAIL_SENDMODE_TICKET)) {
- $conf->global->MAIN_MAIL_SENDMODE_TICKET = 'default';
- }
- $port = !empty($conf->global->MAIN_MAIL_SMTP_PORT_TICKET) ? $conf->global->MAIN_MAIL_SMTP_PORT_TICKET : ini_get('smtp_port');
- if (!$port) {
- $port = 25;
- }
- $server = !empty($conf->global->MAIN_MAIL_SMTP_SERVER_TICKET) ? $conf->global->MAIN_MAIL_SMTP_SERVER_TICKET : ini_get('SMTP');
- if (!$server) {
- $server = '127.0.0.1';
- }
- $wikihelp = 'EN:Setup_EMails|FR:Paramétrage_EMails|ES:Configuración_EMails';
- llxHeader('', $langs->trans("Setup"), $wikihelp);
- print load_fiche_titre($langs->trans("EMailsSetup"), '', 'title_setup');
- $head = email_admin_prepare_head();
- // List of sending methods
- $listofmethods = array();
- $listofmethods['default'] = $langs->trans('DefaultOutgoingEmailSetup');
- $listofmethods['mail'] = 'PHP mail function';
- //$listofmethods['simplemail']='Simplemail class';
- $listofmethods['smtps'] = 'SMTP/SMTPS socket library';
- if (version_compare(phpversion(), '7.0', '>=')) {
- $listofmethods['swiftmailer'] = 'Swift Mailer socket library';
- }
- if ($action == 'edit') {
- if ($conf->use_javascript_ajax) {
- print "\n".'<script type="text/javascript">';
- print 'jQuery(document).ready(function () {
- function initfields()
- {
- if (jQuery("#MAIN_MAIL_SENDMODE_TICKET").val()==\'default\')
- {
- jQuery(".hideifdefault").hide();
- }
- else
- {
- jQuery(".hideifdefault").show();
- }
- if (jQuery("#MAIN_MAIL_SENDMODE_TICKET").val()==\'mail\')
- {
- jQuery(".drag").hide();
- jQuery("#MAIN_MAIL_EMAIL_TLS_TICKET").val(0);
- jQuery("#MAIN_MAIL_EMAIL_TLS_TICKET").prop("disabled", true);
- jQuery("#MAIN_MAIL_EMAIL_STARTTLS_TICKET").val(0);
- jQuery("#MAIN_MAIL_EMAIL_STARTTLS_TICKET").prop("disabled", true);
- ';
- if ($linuxlike) {
- print '
- jQuery("#MAIN_MAIL_SMTP_SERVER_TICKET").hide();
- jQuery("#MAIN_MAIL_SMTP_PORT_TICKET").hide();
- jQuery("#smtp_server_mess").show();
- jQuery("#smtp_port_mess").show();
- ';
- } else {
- print '
- jQuery("#MAIN_MAIL_SMTP_SERVER_TICKET").prop("disabled", true);
- jQuery("#MAIN_MAIL_SMTP_PORT_TICKET").prop("disabled", true);
- jQuery("#smtp_server_mess").hide();
- jQuery("#smtp_port_mess").hide();
- ';
- }
- print '
- }
- if (jQuery("#MAIN_MAIL_SENDMODE_TICKET").val()==\'smtps\')
- {
- jQuery(".drag").show();
- jQuery("#MAIN_MAIL_EMAIL_TLS_TICKET").val('.$conf->global->MAIN_MAIL_EMAIL_TLS_TICKET.');
- jQuery("#MAIN_MAIL_EMAIL_TLS_TICKET").removeAttr("disabled");
- jQuery("#MAIN_MAIL_EMAIL_STARTTLS_TICKET").val('.$conf->global->MAIN_MAIL_EMAIL_STARTTLS_TICKET.');
- jQuery("#MAIN_MAIL_EMAIL_STARTTLS_TICKET").removeAttr("disabled");
- jQuery("#MAIN_MAIL_SMTP_SERVER_TICKET").removeAttr("disabled");
- jQuery("#MAIN_MAIL_SMTP_PORT_TICKET").removeAttr("disabled");
- jQuery("#MAIN_MAIL_SMTP_SERVER_TICKET").show();
- jQuery("#MAIN_MAIL_SMTP_PORT_TICKET").show();
- jQuery("#smtp_server_mess").hide();
- jQuery("#smtp_port_mess").hide();
- }
- if (jQuery("#MAIN_MAIL_SENDMODE_TICKET").val()==\'swiftmailer\')
- {
- jQuery(".drag").show();
- jQuery("#MAIN_MAIL_EMAIL_TLS_TICKET").val('.$conf->global->MAIN_MAIL_EMAIL_TLS_TICKET.');
- jQuery("#MAIN_MAIL_EMAIL_TLS_TICKET").removeAttr("disabled");
- jQuery("#MAIN_MAIL_EMAIL_STARTTLS_TICKET").val('.$conf->global->MAIN_MAIL_EMAIL_STARTTLS_TICKET.');
- jQuery("#MAIN_MAIL_EMAIL_STARTTLS_TICKET").removeAttr("disabled");
- jQuery("#MAIN_MAIL_SMTP_SERVER_TICKET").removeAttr("disabled");
- jQuery("#MAIN_MAIL_SMTP_PORT_TICKET").removeAttr("disabled");
- jQuery("#MAIN_MAIL_SMTP_SERVER_TICKET").show();
- jQuery("#MAIN_MAIL_SMTP_PORT_TICKET").show();
- jQuery("#smtp_server_mess").hide();
- jQuery("#smtp_port_mess").hide();
- }
- }
- initfields();
- jQuery("#MAIN_MAIL_SENDMODE_TICKET").change(function() {
- initfields();
- });
- jQuery("#MAIN_MAIL_EMAIL_TLS").change(function() {
- if (jQuery("#MAIN_MAIL_EMAIL_STARTTLS_TICKET").val() == 1)
- jQuery("#MAIN_MAIL_EMAIL_STARTTLS_TICKET").val(0);
- });
- jQuery("#MAIN_MAIL_EMAIL_STARTTLS_TICKET").change(function() {
- if (jQuery("#MAIN_MAIL_EMAIL_TLS_TICKET").val() == 1)
- jQuery("#MAIN_MAIL_EMAIL_TLS_TICKET").val(0);
- });
- })';
- print '</script>'."\n";
- }
- print '<form method="post" action="'.$_SERVER["PHP_SELF"].'">';
- print '<input type="hidden" name="token" value="'.newToken().'">';
- print '<input type="hidden" name="action" value="update">';
- print dol_get_fiche_head($head, 'common_ticket', '', -1);
- print '<span class="opacitymedium">'.$langs->trans("EMailsDesc")."</span><br>\n";
- print "<br><br>\n";
- clearstatcache();
- print '<table class="noborder centpercent">';
- print '<tr class="liste_titre"><td class="titlefieldmiddle">'.$langs->trans("Parameter").'</td><td>'.$langs->trans("Value").'</td></tr>';
- // Method
- print '<tr class="oddeven"><td>'.$langs->trans("MAIN_MAIL_SENDMODE").'</td><td>';
- // SuperAdministrator access only
- if ((empty($conf->global->MAIN_MODULE_MULTICOMPANY)) || ($user->admin && !$user->entity)) {
- print $form->selectarray('MAIN_MAIL_SENDMODE_TICKET', $listofmethods, $conf->global->MAIN_MAIL_SENDMODE_TICKET);
- } else {
- $text = $listofmethods[$conf->global->MAIN_MAIL_SENDMODE_TICKET];
- if (empty($text)) {
- $text = $langs->trans("Undefined");
- }
- $htmltext = $langs->trans("ContactSuperAdminForChange");
- print $form->textwithpicto($text, $htmltext, 1, 'superadmin');
- print '<input type="hidden" name="MAIN_MAIL_SENDMODE_TICKET" value="'.$conf->global->MAIN_MAIL_SENDMODE_TICKET.'">';
- }
- print '</td></tr>';
- // Host server
- print '<tr class="oddeven hideifdefault"><td>';
- if (!$conf->use_javascript_ajax && $linuxlike && $conf->global->MAIN_MAIL_SENDMODE_TICKET == 'mail') {
- print $langs->trans("MAIN_MAIL_SMTP_SERVER_NotAvailableOnLinuxLike");
- print '</td><td>';
- print $langs->trans("SeeLocalSendMailSetup");
- } else {
- $mainserver = (!empty($conf->global->MAIN_MAIL_SMTP_SERVER_TICKET) ? $conf->global->MAIN_MAIL_SMTP_SERVER_TICKET : '');
- $smtpserver = ini_get('SMTP') ?ini_get('SMTP') : $langs->transnoentities("Undefined");
- if ($linuxlike) {
- print $langs->trans("MAIN_MAIL_SMTP_SERVER_NotAvailableOnLinuxLike");
- } else {
- print $langs->trans("MAIN_MAIL_SMTP_SERVER", $smtpserver);
- }
- print '</td><td>';
- // SuperAdministrator access only
- if (empty($conf->multicompany->enabled) || ($user->admin && !$user->entity)) {
- print '<input class="flat" id="MAIN_MAIL_SMTP_SERVER_TICKET" name="MAIN_MAIL_SMTP_SERVER_TICKET" size="18" value="'.$mainserver.'">';
- print '<input type="hidden" id="MAIN_MAIL_SMTP_SERVER_TICKET_sav" name="MAIN_MAIL_SMTP_SERVER_TICKET_sav" value="'.$mainserver.'">';
- print '<span id="smtp_server_mess">'.$langs->trans("SeeLocalSendMailSetup").'</span>';
- } else {
- $text = !empty($mainserver) ? $mainserver : $smtpserver;
- $htmltext = $langs->trans("ContactSuperAdminForChange");
- print $form->textwithpicto($text, $htmltext, 1, 'superadmin');
- print '<input type="hidden" id="MAIN_MAIL_SMTP_SERVER_TICKET" name="MAIN_MAIL_SMTP_SERVER_TICKET" value="'.$mainserver.'">';
- }
- }
- print '</td></tr>';
- // Port
- print '<tr class="oddeven hideifdefault"><td>';
- if (!$conf->use_javascript_ajax && $linuxlike && $conf->global->MAIN_MAIL_SENDMODE_TICKET == 'mail') {
- print $langs->trans("MAIN_MAIL_SMTP_PORT_NotAvailableOnLinuxLike");
- print '</td><td>';
- print $langs->trans("SeeLocalSendMailSetup");
- } else {
- $mainport = (!empty($conf->global->MAIN_MAIL_SMTP_PORT_TICKET) ? $conf->global->MAIN_MAIL_SMTP_PORT_TICKET : '');
- $smtpport = ini_get('smtp_port') ?ini_get('smtp_port') : $langs->transnoentities("Undefined");
- if ($linuxlike) {
- print $langs->trans("MAIN_MAIL_SMTP_PORT_NotAvailableOnLinuxLike");
- } else {
- print $langs->trans("MAIN_MAIL_SMTP_PORT", $smtpport);
- }
- print '</td><td>';
- // SuperAdministrator access only
- if (empty($conf->multicompany->enabled) || ($user->admin && !$user->entity)) {
- print '<input class="flat" id="MAIN_MAIL_SMTP_PORT_TICKET" name="MAIN_MAIL_SMTP_PORT_TICKET" size="3" value="'.$mainport.'">';
- print '<input type="hidden" id="MAIN_MAIL_SMTP_PORT_TICKET_sav" name="MAIN_MAIL_SMTP_PORT_TICKET_sav" value="'.$mainport.'">';
- print '<span id="smtp_port_mess">'.$langs->trans("SeeLocalSendMailSetup").'</span>';
- } else {
- $text = (!empty($mainport) ? $mainport : $smtpport);
- $htmltext = $langs->trans("ContactSuperAdminForChange");
- print $form->textwithpicto($text, $htmltext, 1, 'superadmin');
- print '<input type="hidden" id="MAIN_MAIL_SMTP_PORT_TICKET" name="MAIN_MAIL_SMTP_PORT_TICKET" value="'.$mainport.'">';
- }
- }
- print '</td></tr>';
- // ID
- if (!empty($conf->use_javascript_ajax) || (isset($conf->global->MAIN_MAIL_SENDMODE_TICKET) && in_array($conf->global->MAIN_MAIL_SENDMODE_TICKET, array('smtps', 'swiftmailer')))) {
- $mainstmpid = (!empty($conf->global->MAIN_MAIL_SMTPS_ID_TICKET) ? $conf->global->MAIN_MAIL_SMTPS_ID_TICKET : '');
- print '<tr class="drag drop oddeven hideifdefault"><td>'.$langs->trans("MAIN_MAIL_SMTPS_ID").'</td><td>';
- // SuperAdministrator access only
- if (empty($conf->multicompany->enabled) || ($user->admin && !$user->entity)) {
- print '<input class="flat" name="MAIN_MAIL_SMTPS_ID_TICKET" size="32" value="'.$mainstmpid.'">';
- } else {
- $htmltext = $langs->trans("ContactSuperAdminForChange");
- print $form->textwithpicto($conf->global->MAIN_MAIL_SMTPS_ID_TICKET, $htmltext, 1, 'superadmin');
- print '<input type="hidden" name="MAIN_MAIL_SMTPS_ID_TICKET" value="'.$mainstmpid.'">';
- }
- print '</td></tr>';
- }
- // PW
- if (!empty($conf->use_javascript_ajax) || (isset($conf->global->MAIN_MAIL_SENDMODE_TICKET) && in_array($conf->global->MAIN_MAIL_SENDMODE_TICKET, array('smtps', 'swiftmailer')))) {
- $mainsmtppw = (!empty($conf->global->MAIN_MAIL_SMTPS_PW_TICKET) ? $conf->global->MAIN_MAIL_SMTPS_PW_TICKET : '');
- print '<tr class="drag drop oddeven hideifdefault"><td>'.$langs->trans("MAIN_MAIL_SMTPS_PW").'</td><td>';
- // SuperAdministrator access only
- if (empty($conf->multicompany->enabled) || ($user->admin && !$user->entity)) {
- print '<input class="flat" type="password" name="MAIN_MAIL_SMTPS_PW_TICKET" size="32" value="'.$mainsmtppw.'">';
- } else {
- $htmltext = $langs->trans("ContactSuperAdminForChange");
- print $form->textwithpicto($conf->global->MAIN_MAIL_SMTPS_PW_TICKET, $htmltext, 1, 'superadmin');
- print '<input type="hidden" name="MAIN_MAIL_SMTPS_PW_TICKET" value="'.$mainsmtppw.'">';
- }
- print '</td></tr>';
- }
- // TLS
- print '<tr class="oddeven hideifdefault"><td>'.$langs->trans("MAIN_MAIL_EMAIL_TLS").'</td><td>';
- if (!empty($conf->use_javascript_ajax) || (isset($conf->global->MAIN_MAIL_SENDMODE_TICKET) && in_array($conf->global->MAIN_MAIL_SENDMODE_TICKET, array('smtps', 'swiftmailer')))) {
- if (function_exists('openssl_open')) {
- print $form->selectyesno('MAIN_MAIL_EMAIL_TLS_TICKET', (!empty($conf->global->MAIN_MAIL_EMAIL_TLS_TICKET) ? $conf->global->MAIN_MAIL_EMAIL_TLS_TICKET : 0), 1);
- } else {
- print yn(0).' ('.$langs->trans("YourPHPDoesNotHaveSSLSupport").')';
- }
- } else {
- print yn(0).' ('.$langs->trans("NotSupported").')';
- }
- print '</td></tr>';
- // STARTTLS
- print '<tr class="oddeven hideifdefault"><td>'.$langs->trans("MAIN_MAIL_EMAIL_STARTTLS").'</td><td>';
- if (!empty($conf->use_javascript_ajax) || (isset($conf->global->MAIN_MAIL_SENDMODE_TICKET) && in_array($conf->global->MAIN_MAIL_SENDMODE_TICKET, array('smtps', 'swiftmailer')))) {
- if (function_exists('openssl_open')) {
- print $form->selectyesno('MAIN_MAIL_EMAIL_STARTTLS_TICKET', (!empty($conf->global->MAIN_MAIL_EMAIL_STARTTLS_TICKET) ? $conf->global->MAIN_MAIL_EMAIL_STARTTLS_TICKET : 0), 1);
- } else {
- print yn(0).' ('.$langs->trans("YourPHPDoesNotHaveSSLSupport").')';
- }
- } else {
- print yn(0).' ('.$langs->trans("NotSupported").')';
- }
- print '</td></tr>';
- print '</table>';
- print dol_get_fiche_end();
- print $form->buttonsSaveCancel();
- print '</form>';
- } else {
- print dol_get_fiche_head($head, 'common_ticket', '', -1);
- print '<span class="opacitymedium">'.$langs->trans("EMailsDesc")."</span><br>\n";
- print "<br><br>\n";
- print '<table class="noborder centpercent">';
- print '<tr class="liste_titre"><td class="titlefieldmiddle">'.$langs->trans("Parameter").'</td><td>'.$langs->trans("Value").'</td></tr>';
- // Method
- print '<tr class="oddeven"><td>'.$langs->trans("MAIN_MAIL_SENDMODE").'</td><td>';
- $text = $listofmethods[getDolGlobalString('MAIN_MAIL_SENDMODE_TICKET')];
- if (empty($text)) {
- $text = $langs->trans("Undefined").img_warning();
- }
- if (getDolGlobalString('MAIN_MAIL_SENDMODE_TICKET') == 'default') {
- print '<span class="opacitymedium">'.$text.'</span>';
- } else {
- print $text;
- }
- print '</td></tr>';
- if (!empty($conf->global->MAIN_MAIL_SENDMODE_TICKET) && $conf->global->MAIN_MAIL_SENDMODE_TICKET != 'default') {
- // Host server
- if ($linuxlike && (isset($conf->global->MAIN_MAIL_SENDMODE_TICKET) && $conf->global->MAIN_MAIL_SENDMODE_TICKET == 'mail')) {
- print '<tr class="oddeven hideifdefault"><td>'.$langs->trans("MAIN_MAIL_SMTP_SERVER_NotAvailableOnLinuxLike").'</td><td>'.$langs->trans("SeeLocalSendMailSetup").'</td></tr>';
- } else {
- print '<tr class="oddeven hideifdefault"><td>'.$langs->trans("MAIN_MAIL_SMTP_SERVER", ini_get('SMTP') ?ini_get('SMTP') : $langs->transnoentities("Undefined")).'</td><td>'.(!empty($conf->global->MAIN_MAIL_SMTP_SERVER_TICKET) ? $conf->global->MAIN_MAIL_SMTP_SERVER_TICKET : '').'</td></tr>';
- }
- // Port
- if ($linuxlike && (isset($conf->global->MAIN_MAIL_SENDMODE_TICKET) && $conf->global->MAIN_MAIL_SENDMODE_TICKET == 'mail')) {
- print '<tr class="oddeven hideifdefault"><td>'.$langs->trans("MAIN_MAIL_SMTP_PORT_NotAvailableOnLinuxLike").'</td><td>'.$langs->trans("SeeLocalSendMailSetup").'</td></tr>';
- } else {
- print '<tr class="oddeven hideifdefault"><td>'.$langs->trans("MAIN_MAIL_SMTP_PORT", ini_get('smtp_port') ?ini_get('smtp_port') : $langs->transnoentities("Undefined")).'</td><td>'.(!empty($conf->global->MAIN_MAIL_SMTP_PORT_TICKET) ? $conf->global->MAIN_MAIL_SMTP_PORT_TICKET : '').'</td></tr>';
- }
- // SMTPS ID
- if (isset($conf->global->MAIN_MAIL_SENDMODE_TICKET) && in_array($conf->global->MAIN_MAIL_SENDMODE_TICKET, array('smtps', 'swiftmailer'))) {
- print '<tr class="oddeven hideifdefault"><td>'.$langs->trans("MAIN_MAIL_SMTPS_ID").'</td><td>'.$conf->global->MAIN_MAIL_SMTPS_ID_TICKET.'</td></tr>';
- }
- // SMTPS PW
- if (isset($conf->global->MAIN_MAIL_SENDMODE_TICKET) && in_array($conf->global->MAIN_MAIL_SENDMODE_TICKET, array('smtps', 'swiftmailer'))) {
- print '<tr class="oddeven hideifdefault"><td>'.$langs->trans("MAIN_MAIL_SMTPS_PW").'</td><td>'.preg_replace('/./', '*', $conf->global->MAIN_MAIL_SMTPS_PW_TICKET).'</td></tr>';
- }
- // TLS
- print '<tr class="oddeven hideifdefault"><td>'.$langs->trans("MAIN_MAIL_EMAIL_TLS").'</td><td>';
- if (isset($conf->global->MAIN_MAIL_SENDMODE_TICKET) && in_array($conf->global->MAIN_MAIL_SENDMODE_TICKET, array('smtps', 'swiftmailer'))) {
- if (function_exists('openssl_open')) {
- print yn($conf->global->MAIN_MAIL_EMAIL_TLS_TICKET);
- } else {
- print yn(0).' ('.$langs->trans("YourPHPDoesNotHaveSSLSupport").')';
- }
- } else {
- print yn(0).' ('.$langs->trans("NotSupported").')';
- }
- print '</td></tr>';
- // STARTTLS
- print '<tr class="oddeven hideifdefault"><td>'.$langs->trans("MAIN_MAIL_EMAIL_STARTTLS").'</td><td>';
- if (isset($conf->global->MAIN_MAIL_SENDMODE_TICKET) && in_array($conf->global->MAIN_MAIL_SENDMODE_TICKET, array('smtps', 'swiftmailer'))) {
- if (function_exists('openssl_open')) {
- print yn($conf->global->MAIN_MAIL_EMAIL_STARTTLS_TICKET);
- } else {
- print yn(0).' ('.$langs->trans("YourPHPDoesNotHaveSSLSupport").')';
- }
- } else {
- print yn(0).' ('.$langs->trans("NotSupported").')';
- }
- print '</td></tr>';
- }
- print '</table>';
- print dol_get_fiche_end();
- if ($conf->global->MAIN_MAIL_SENDMODE_TICKET == 'mail' && empty($conf->global->MAIN_FIX_FOR_BUGGED_MTA)) {
- print '<br>';
- /*
- // Warning 1
- if ($linuxlike)
- {
- $sendmailoption=ini_get('mail.force_extra_parameters');
- if (empty($sendmailoption) || ! preg_match('/ba/',$sendmailoption))
- {
- print info_admin($langs->trans("SendmailOptionNotComplete"));
- }
- }*/
- // Warning 2
- print info_admin($langs->trans("SendmailOptionMayHurtBuggedMTA"));
- }
- // Buttons for actions
- print '<div class="tabsAction">';
- print '<a class="butAction" href="'.$_SERVER["PHP_SELF"].'?action=edit&token='.newToken().'">'.$langs->trans("Modify").'</a>';
- if (!empty($conf->global->MAIN_MAIL_SENDMODE_TICKET) && $conf->global->MAIN_MAIL_SENDMODE_TICKET != 'default') {
- if ($conf->global->MAIN_MAIL_SENDMODE_TICKET != 'mail' || !$linuxlike) {
- if (function_exists('fsockopen') && $port && $server) {
- print '<a class="butAction" href="'.$_SERVER["PHP_SELF"].'?action=testconnect">'.$langs->trans("DoTestServerAvailability").'</a>';
- }
- } else {
- print '<a class="butActionRefused classfortooltip" href="#" title="'.$langs->trans("FeatureNotAvailableOnLinux").'">'.$langs->trans("DoTestServerAvailability").'</a>';
- }
- print '<a class="butAction" href="'.$_SERVER["PHP_SELF"].'?action=test&mode=init">'.$langs->trans("DoTestSend").'</a>';
- if (!empty($conf->fckeditor->enabled)) {
- print '<a class="butAction" href="'.$_SERVER["PHP_SELF"].'?action=testhtml&mode=init">'.$langs->trans("DoTestSendHTML").'</a>';
- }
- }
- print '</div>';
- if ($conf->global->MAIN_MAIL_SENDMODE_TICKET == 'mail' && !in_array($action, array('testconnect', 'test', 'testhtml'))) {
- $text = $langs->trans("WarningPHPMail");
- print info_admin($text);
- }
- // Run the test to connect
- if ($action == 'testconnect') {
- print load_fiche_titre($langs->trans("DoTestServerAvailability"));
- include_once DOL_DOCUMENT_ROOT.'/core/class/CMailFile.class.php';
- $mail = new CMailFile('', '', '', '', array(), array(), array(), '', '', 0, '', '', '', '', $trackid, $sendcontext);
- $result = $mail->check_server_port($server, $port);
- if ($result) {
- print '<div class="ok">'.$langs->trans("ServerAvailableOnIPOrPort", $server, $port).'</div>';
- } else {
- $errormsg = $langs->trans("ServerNotAvailableOnIPOrPort", $server, $port);
- if ($mail->error) {
- $errormsg .= ' - '.$mail->error;
- }
- setEventMessages($errormsg, null, 'errors');
- }
- print '<br>';
- }
- // Show email send test form
- if ($action == 'test' || $action == 'testhtml') {
- print '<div id="formmailbeforetitle" name="formmailbeforetitle"></div>';
- print load_fiche_titre($action == 'testhtml' ? $langs->trans("DoTestSendHTML") : $langs->trans("DoTestSend"));
- print dol_get_fiche_head('');
- // Cree l'objet formulaire mail
- include_once DOL_DOCUMENT_ROOT.'/core/class/html.formmail.class.php';
- $formmail = new FormMail($db);
- $formmail->fromname = (GETPOSTISSET('fromname') ? GETPOST('fromname') : $conf->global->MAIN_MAIL_EMAIL_FROM);
- $formmail->frommail = (GETPOSTISSET('frommail') ? GETPOST('frommail') : $conf->global->MAIN_MAIL_EMAIL_FROM);
- $formmail->trackid = (($action == 'testhtml') ? "testhtml" : "test");
- $formmail->withfromreadonly = 0;
- $formmail->withsubstit = 0;
- $formmail->withfrom = 1;
- $formmail->witherrorsto = 1;
- $formmail->withto = (GETPOSTISSET('sendto') ? GETPOST('sendto', 'restricthtml') : ($user->email ? $user->email : 1));
- $formmail->withtocc = (GETPOSTISSET('sendtocc') ? GETPOST('sendtocc', 'restricthtml') : 1);
- $formmail->withtoccc = (GETPOSTISSET('sendtoccc') ? GETPOST('sendtoccc', 'restricthtml') : 1);
- $formmail->withtopic = (GETPOSTISSET('subject') ? GETPOST('subject') : $langs->trans("Test"));
- $formmail->withtopicreadonly = 0;
- $formmail->withfile = 2;
- $formmail->withbody = (GETPOSTISSET('message') ? GETPOST('message', 'restricthtml') : ($action == 'testhtml' ? $langs->transnoentities("PredefinedMailTestHtml") : $langs->transnoentities("PredefinedMailTest")));
- $formmail->withbodyreadonly = 0;
- $formmail->withcancel = 1;
- $formmail->withdeliveryreceipt = 1;
- $formmail->withfckeditor = ($action == 'testhtml' ? 1 : 0);
- $formmail->ckeditortoolbar = 'dolibarr_mailings';
- // Tableau des substitutions
- $formmail->substit = $substitutionarrayfortest;
- // Tableau des parametres complementaires du post
- $formmail->param["action"] = "send";
- $formmail->param["models"] = "body";
- $formmail->param["mailid"] = 0;
- $formmail->param["returnurl"] = $_SERVER["PHP_SELF"];
- // Init list of files
- if (GETPOST("mode") == 'init') {
- $formmail->clear_attached_files();
- }
- print $formmail->get_form('addfile', 'removefile');
- print dol_get_fiche_end();
- }
- }
- // End of page
- llxFooter();
- $db->close();
|