123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- <?php
- /* Copyright (C) 2007-2020 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_ingoing.php
- * \brief Page to setup emails entry
- */
- // Load Dolibarr environment
- 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', 'aZ09');
- $trackid = GETPOST('trackid');
- if (!$user->admin) {
- accessforbidden();
- }
- /*
- * Actions
- */
- if ($action == 'update' && !$cancel) {
- }
- /*
- * 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;
- }
- //$wikihelp = 'EN:Setup_EMails|FR:Paramétrage_EMails|ES:Configuración_EMails';
- $wikihelp = '';
- 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['mail'] = 'PHP mail function';
- $listofmethods['smtps'] = 'SMTP/SMTPS socket library';
- if (version_compare(phpversion(), '7.0', '>=')) {
- $listofmethods['swiftmailer'] = 'Swift Mailer socket library';
- }
- // List of oauth services
- $oauthservices = array();
- foreach ($conf->global as $key => $val) {
- if (!empty($val) && preg_match('/^OAUTH_.*_ID$/', $key)) {
- $key = preg_replace('/^OAUTH_/', '', $key);
- $key = preg_replace('/_ID$/', '', $key);
- if (preg_match('/^.*-/', $key)) {
- $name = preg_replace('/^.*-/', '', $key);
- } else {
- $name = $langs->trans("NoName");
- }
- $provider = preg_replace('/-.*$/', '', $key);
- $provider = ucfirst(strtolower($provider));
- $oauthservices[$key] = $name." (".$provider.")";
- }
- }
- print dol_get_fiche_head($head, 'common_ingoing', '', -1);
- print '<br>';
- print '<span class="opacitymedium">'.$langs->trans("EMailsInGoingDesc", $langs->transnoentitiesnoconv("EmailCollector"))."</span><br>\n";
- print "<br><br>\n";
- /*
- print '<div class="div-table-responsive-no-min">'; // You can use div-table-responsive-no-min if you dont need reserved height for your table
- print '<table class="noborder centpercent">';
- print '<tr class="liste_titre"><td class="titlefieldmiddle">'.$langs->trans("Parameter").'</td><td>'.$langs->trans("Value").'</td></tr>';
- print '<br>';
- print '<div class="div-table-responsive-no-min">'; // You can use div-table-responsive-no-min if you dont need reserved height for your table
- print '<table class="noborder centpercent">';
- // SMTPS oauth service
- if (in_array(getDolGlobalString('MAIN_MAIL_SENDMODE', 'mail'), array('smtps', 'swiftmailer')) && getDolGlobalString('MAIN_MAIL_SMTPS_AUTH_TYPE') === "XOAUTH2") {
- $text = $oauthservices[$conf->global->MAIN_MAIL_SMTPS_OAUTH_SERVICE];
- if (empty($text)) {
- $text = $langs->trans("Undefined").img_warning();
- }
- print '<tr class="oddeven"><td>'.$langs->trans("MAIN_MAIL_SMTPS_OAUTH_SERVICE").'</td><td>'.$text.'</td></tr>';
- }
- print '</table>';
- print '</div>';
- */
- print dol_get_fiche_end();
- // End of page
- llxFooter();
- $db->close();
|