Use of oauth for smtp is available (tested only with google)
This commit is contained in:
parent
6b5fac432f
commit
a990480ba6
@ -89,6 +89,12 @@ if ($action == 'update' && !$cancel) {
|
|||||||
dolibarr_set_const($db, "MAIN_MAIL_SMTP_SERVER", GETPOST("MAIN_MAIL_SMTP_SERVER", 'alphanohtml'), 'chaine', 0, '', $conf->entity);
|
dolibarr_set_const($db, "MAIN_MAIL_SMTP_SERVER", GETPOST("MAIN_MAIL_SMTP_SERVER", 'alphanohtml'), 'chaine', 0, '', $conf->entity);
|
||||||
dolibarr_set_const($db, "MAIN_MAIL_SMTPS_ID", GETPOST("MAIN_MAIL_SMTPS_ID", 'alphanohtml'), 'chaine', 0, '', $conf->entity);
|
dolibarr_set_const($db, "MAIN_MAIL_SMTPS_ID", GETPOST("MAIN_MAIL_SMTPS_ID", 'alphanohtml'), 'chaine', 0, '', $conf->entity);
|
||||||
dolibarr_set_const($db, "MAIN_MAIL_SMTPS_PW", GETPOST("MAIN_MAIL_SMTPS_PW", 'none'), 'chaine', 0, '', $conf->entity);
|
dolibarr_set_const($db, "MAIN_MAIL_SMTPS_PW", GETPOST("MAIN_MAIL_SMTPS_PW", 'none'), 'chaine', 0, '', $conf->entity);
|
||||||
|
if (GETPOSTISSET("MAIN_MAIL_SMTPS_USE_OAUTH")) {
|
||||||
|
dolibarr_set_const($db, "MAIN_MAIL_SMTPS_USE_OAUTH", GETPOST("MAIN_MAIL_SMTPS_USE_OAUTH", 'none'), 'chaine', 0, '', $conf->entity);
|
||||||
|
$method = GETPOST("MAIN_MAIL_SMTPS_USE_OAUTH", 'aZ09') == 1 ? 'XOAUTH2' : 'LOGIN';
|
||||||
|
dolibarr_set_const($db, "MAIL_SMTP_AUTH_TYPE", $method, 'chaine', 0, '', $conf->entity);
|
||||||
|
}
|
||||||
|
dolibarr_set_const($db, "MAIN_MAIL_SMTPS_OAUTH_SERVICE", GETPOST("MAIN_MAIL_SMTPS_OAUTH_SERVICE", 'none'), 'chaine', 0, '', $conf->entity);
|
||||||
dolibarr_set_const($db, "MAIN_MAIL_EMAIL_TLS", GETPOST("MAIN_MAIL_EMAIL_TLS", 'int'), 'chaine', 0, '', $conf->entity);
|
dolibarr_set_const($db, "MAIN_MAIL_EMAIL_TLS", GETPOST("MAIN_MAIL_EMAIL_TLS", 'int'), 'chaine', 0, '', $conf->entity);
|
||||||
dolibarr_set_const($db, "MAIN_MAIL_EMAIL_STARTTLS", GETPOST("MAIN_MAIL_EMAIL_STARTTLS", 'int'), 'chaine', 0, '', $conf->entity);
|
dolibarr_set_const($db, "MAIN_MAIL_EMAIL_STARTTLS", GETPOST("MAIN_MAIL_EMAIL_STARTTLS", 'int'), 'chaine', 0, '', $conf->entity);
|
||||||
dolibarr_set_const($db, "MAIN_MAIL_EMAIL_SMTP_ALLOW_SELF_SIGNED", GETPOST("MAIN_MAIL_EMAIL_SMTP_ALLOW_SELF_SIGNED", 'int'), 'chaine', 0, '', $conf->entity);
|
dolibarr_set_const($db, "MAIN_MAIL_EMAIL_SMTP_ALLOW_SELF_SIGNED", GETPOST("MAIN_MAIL_EMAIL_SMTP_ALLOW_SELF_SIGNED", 'int'), 'chaine', 0, '', $conf->entity);
|
||||||
@ -171,6 +177,23 @@ if (version_compare(phpversion(), '7.0', '>=')) {
|
|||||||
$listofmethods['swiftmailer'] = 'Swift Mailer socket library';
|
$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);
|
||||||
|
|
||||||
|
$oauthservices[$key] = $name." (".$provider.")";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if ($action == 'edit') {
|
if ($action == 'edit') {
|
||||||
if ($conf->use_javascript_ajax) {
|
if ($conf->use_javascript_ajax) {
|
||||||
@ -195,6 +218,8 @@ if ($action == 'edit') {
|
|||||||
jQuery("#MAIN_MAIL_EMAIL_DKIM_PRIVATE_KEY").prop("disabled", true);
|
jQuery("#MAIN_MAIL_EMAIL_DKIM_PRIVATE_KEY").prop("disabled", true);
|
||||||
jQuery(".smtp_method").hide();
|
jQuery(".smtp_method").hide();
|
||||||
jQuery(".dkim").hide();
|
jQuery(".dkim").hide();
|
||||||
|
jQuery(".smtp_oauth_service").hide();
|
||||||
|
jQuery(".smtp_use_oauth").hide();
|
||||||
';
|
';
|
||||||
if ($linuxlike) {
|
if ($linuxlike) {
|
||||||
print '
|
print '
|
||||||
@ -237,6 +262,8 @@ if ($action == 'edit') {
|
|||||||
jQuery("#smtp_port_mess").hide();
|
jQuery("#smtp_port_mess").hide();
|
||||||
jQuery(".smtp_method").show();
|
jQuery(".smtp_method").show();
|
||||||
jQuery(".dkim").hide();
|
jQuery(".dkim").hide();
|
||||||
|
jQuery(".smtp_oauth_service").show();
|
||||||
|
jQuery(".smtp_use_oauth").show();
|
||||||
}
|
}
|
||||||
if (jQuery("#MAIN_MAIL_SENDMODE").val()==\'swiftmailer\')
|
if (jQuery("#MAIN_MAIL_SENDMODE").val()==\'swiftmailer\')
|
||||||
{
|
{
|
||||||
@ -264,12 +291,28 @@ if ($action == 'edit') {
|
|||||||
jQuery("#smtp_port_mess").hide();
|
jQuery("#smtp_port_mess").hide();
|
||||||
jQuery(".smtp_method").show();
|
jQuery(".smtp_method").show();
|
||||||
jQuery(".dkim").show();
|
jQuery(".dkim").show();
|
||||||
|
jQuery(".smtp_oauth_service").hide();
|
||||||
|
jQuery(".smtp_use_oauth").hide();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
function change_smtp_oauth_service() {
|
||||||
|
console.log(jQuery("#MAIN_MAIL_SMTPS_USE_OAUTH").val());
|
||||||
|
if (jQuery("#MAIN_MAIL_SMTPS_USE_OAUTH").val() == 1) {
|
||||||
|
jQuery(".smtp_oauth_service").show();
|
||||||
|
jQuery(".smtp_pw").hide();
|
||||||
|
} else {
|
||||||
|
jQuery(".smtp_oauth_service").hide();
|
||||||
|
jQuery(".smtp_pw").show();
|
||||||
|
}
|
||||||
|
}
|
||||||
initfields();
|
initfields();
|
||||||
|
change_smtp_oauth_service();
|
||||||
jQuery("#MAIN_MAIL_SENDMODE").change(function() {
|
jQuery("#MAIN_MAIL_SENDMODE").change(function() {
|
||||||
initfields();
|
initfields();
|
||||||
});
|
});
|
||||||
|
jQuery("#MAIN_MAIL_SMTPS_USE_OAUTH").change(function() {
|
||||||
|
change_smtp_oauth_service();
|
||||||
|
});
|
||||||
jQuery("#MAIN_MAIL_EMAIL_TLS").change(function() {
|
jQuery("#MAIN_MAIL_EMAIL_TLS").change(function() {
|
||||||
if (jQuery("#MAIN_MAIL_EMAIL_TLS").val() == 1)
|
if (jQuery("#MAIN_MAIL_EMAIL_TLS").val() == 1)
|
||||||
jQuery("#MAIN_MAIL_EMAIL_STARTTLS").val(0);
|
jQuery("#MAIN_MAIL_EMAIL_STARTTLS").val(0);
|
||||||
@ -369,6 +412,20 @@ if ($action == 'edit') {
|
|||||||
}
|
}
|
||||||
print '</tr>';
|
print '</tr>';
|
||||||
|
|
||||||
|
// OAUTH
|
||||||
|
if (!empty($conf->use_javascript_ajax) || (isset($conf->global->MAIN_MAIL_SENDMODE) && in_array($conf->global->MAIN_MAIL_SENDMODE, array('smtps', 'swiftmailer')))) {
|
||||||
|
print '<tr class="oddeven smtp_use_oauth"><td>'.$form->textwithpicto($langs->trans("MAIN_MAIL_SMTPS_USE_OAUTH"), $langs->trans("OauthNotAvailableForAll")).'</td><td>';
|
||||||
|
if (empty($conf->multicompany->enabled) || ($user->admin && !$user->entity)) {
|
||||||
|
print $form->selectyesno('MAIN_MAIL_SMTPS_USE_OAUTH', (!empty($conf->global->MAIN_MAIL_SMTPS_USE_OAUTH) ? $conf->global->MAIN_MAIL_SMTPS_USE_OAUTH : 0), 1);
|
||||||
|
} else {
|
||||||
|
$value = yn($conf->global->MAIN_MAIL_SMTPS_USE_OAUTH);
|
||||||
|
$htmltext = $langs->trans("ContactSuperAdminForChange");
|
||||||
|
print $form->textwithpicto($text, $htmltext, 1, 'superadmin');
|
||||||
|
print '<input type="hidden" id="MAIN_MAIL_SMTPS_USE_OAUTH" name="MAIN_MAIL_SMTPS_USE_OAUTH" value="'.$value.'">';
|
||||||
|
}
|
||||||
|
print '</td></tr>';
|
||||||
|
}
|
||||||
|
|
||||||
// Port
|
// Port
|
||||||
print '<tr class="oddeven"><td>';
|
print '<tr class="oddeven"><td>';
|
||||||
if (!$conf->use_javascript_ajax && $linuxlike && $conf->global->MAIN_MAIL_SENDMODE == 'mail') {
|
if (!$conf->use_javascript_ajax && $linuxlike && $conf->global->MAIN_MAIL_SENDMODE == 'mail') {
|
||||||
@ -416,7 +473,7 @@ if ($action == 'edit') {
|
|||||||
// PW
|
// PW
|
||||||
if (!empty($conf->use_javascript_ajax) || (isset($conf->global->MAIN_MAIL_SENDMODE) && in_array($conf->global->MAIN_MAIL_SENDMODE, array('smtps', 'swiftmailer')))) {
|
if (!empty($conf->use_javascript_ajax) || (isset($conf->global->MAIN_MAIL_SENDMODE) && in_array($conf->global->MAIN_MAIL_SENDMODE, array('smtps', 'swiftmailer')))) {
|
||||||
$mainsmtppw = (!empty($conf->global->MAIN_MAIL_SMTPS_PW) ? $conf->global->MAIN_MAIL_SMTPS_PW : '');
|
$mainsmtppw = (!empty($conf->global->MAIN_MAIL_SMTPS_PW) ? $conf->global->MAIN_MAIL_SMTPS_PW : '');
|
||||||
print '<tr class="drag drop oddeven"><td>';
|
print '<tr class="drag drop oddeven smtp_pw"><td>';
|
||||||
print $form->textwithpicto($langs->trans("MAIN_MAIL_SMTPS_PW"), $langs->trans("WithGMailYouCanCreateADedicatedPassword"));
|
print $form->textwithpicto($langs->trans("MAIN_MAIL_SMTPS_PW"), $langs->trans("WithGMailYouCanCreateADedicatedPassword"));
|
||||||
print '</td><td>';
|
print '</td><td>';
|
||||||
// SuperAdministrator access only
|
// SuperAdministrator access only
|
||||||
@ -430,6 +487,24 @@ if ($action == 'edit') {
|
|||||||
print '</td></tr>';
|
print '</td></tr>';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// OAUTH service provider
|
||||||
|
if (!empty($conf->use_javascript_ajax) || (isset($conf->global->MAIN_MAIL_SENDMODE) && in_array($conf->global->MAIN_MAIL_SENDMODE, array('smtps')))) {
|
||||||
|
print '<tr class="oddeven smtp_oauth_service"><td>'.$form->textwithpicto($langs->trans("MAIN_MAIL_SMTPS_OAUTH_SERVICE"), $langs->trans("DontForgetCreateTokenOauthMod")).'</td><td>';
|
||||||
|
|
||||||
|
// SuperAdministrator access only
|
||||||
|
if ((empty($conf->global->MAIN_MODULE_MULTICOMPANY)) || ($user->admin && !$user->entity)) {
|
||||||
|
print $form->selectarray('MAIN_MAIL_SMTPS_OAUTH_SERVICE', $oauthservices, $conf->global->MAIN_MAIL_SMTPS_OAUTH_SERVICE);
|
||||||
|
} else {
|
||||||
|
$text = $oauthservices[$conf->global->MAIN_MAIL_SMTPS_OAUTH_SERVICE];
|
||||||
|
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_SMTPS_OAUTH_SERVICE" value="'.$conf->global->MAIN_MAIL_SMTPS_OAUTH_SERVICE.'">';
|
||||||
|
}
|
||||||
|
print '</td></tr>';
|
||||||
|
}
|
||||||
// TLS
|
// TLS
|
||||||
print '<tr class="oddeven"><td>'.$langs->trans("MAIN_MAIL_EMAIL_TLS").'</td><td>';
|
print '<tr class="oddeven"><td>'.$langs->trans("MAIN_MAIL_EMAIL_TLS").'</td><td>';
|
||||||
if (!empty($conf->use_javascript_ajax) || (isset($conf->global->MAIN_MAIL_SENDMODE) && in_array($conf->global->MAIN_MAIL_SENDMODE, array('smtps', 'swiftmailer')))) {
|
if (!empty($conf->use_javascript_ajax) || (isset($conf->global->MAIN_MAIL_SENDMODE) && in_array($conf->global->MAIN_MAIL_SENDMODE, array('smtps', 'swiftmailer')))) {
|
||||||
@ -601,6 +676,11 @@ if ($action == 'edit') {
|
|||||||
print '<tr class="oddeven"><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) ? $conf->global->MAIN_MAIL_SMTP_SERVER : '').'</td></tr>';
|
print '<tr class="oddeven"><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) ? $conf->global->MAIN_MAIL_SMTP_SERVER : '').'</td></tr>';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Use OAUTH
|
||||||
|
if (isset($conf->global->MAIN_MAIL_SENDMODE) && in_array($conf->global->MAIN_MAIL_SENDMODE, array('smtps'))) {
|
||||||
|
print '<tr class="oddeven"><td>'.$langs->trans("MAIN_MAIL_SMTPS_USE_OAUTH").'</td><td>'.yn($conf->global->MAIN_MAIL_SMTPS_USE_OAUTH).'</td></tr>';
|
||||||
|
}
|
||||||
|
|
||||||
// Port
|
// Port
|
||||||
if ($linuxlike && (isset($conf->global->MAIN_MAIL_SENDMODE) && $conf->global->MAIN_MAIL_SENDMODE == 'mail')) {
|
if ($linuxlike && (isset($conf->global->MAIN_MAIL_SENDMODE) && $conf->global->MAIN_MAIL_SENDMODE == 'mail')) {
|
||||||
print '<tr class="oddeven"><td>'.$langs->trans("MAIN_MAIL_SMTP_PORT_NotAvailableOnLinuxLike").'</td><td><span class="opacitymedium">'.$langs->trans("SeeLocalSendMailSetup").'</span></td></tr>';
|
print '<tr class="oddeven"><td>'.$langs->trans("MAIN_MAIL_SMTP_PORT_NotAvailableOnLinuxLike").'</td><td><span class="opacitymedium">'.$langs->trans("SeeLocalSendMailSetup").'</span></td></tr>';
|
||||||
@ -614,10 +694,19 @@ if ($action == 'edit') {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// SMTPS PW
|
// SMTPS PW
|
||||||
if (isset($conf->global->MAIN_MAIL_SENDMODE) && in_array($conf->global->MAIN_MAIL_SENDMODE, array('smtps', 'swiftmailer'))) {
|
if (isset($conf->global->MAIN_MAIL_SENDMODE) && in_array($conf->global->MAIN_MAIL_SENDMODE, array('smtps', 'swiftmailer')) && (!(isset($conf->global->MAIL_SMTP_AUTH_TYPE) && $conf->global->MAIL_SMTP_AUTH_TYPE === "XOAUTH2"))) {
|
||||||
print '<tr class="oddeven"><td>'.$langs->trans("MAIN_MAIL_SMTPS_PW").'</td><td>'.preg_replace('/./', '*', $conf->global->MAIN_MAIL_SMTPS_PW).'</td></tr>';
|
print '<tr class="oddeven"><td>'.$langs->trans("MAIN_MAIL_SMTPS_PW").'</td><td>'.preg_replace('/./', '*', $conf->global->MAIN_MAIL_SMTPS_PW).'</td></tr>';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// SMTPS oauth service
|
||||||
|
if (isset($conf->global->MAIL_SMTP_AUTH_TYPE) && $conf->global->MAIL_SMTP_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>';
|
||||||
|
}
|
||||||
|
|
||||||
// TLS
|
// TLS
|
||||||
print '<tr class="oddeven"><td>'.$langs->trans("MAIN_MAIL_EMAIL_TLS").'</td><td>';
|
print '<tr class="oddeven"><td>'.$langs->trans("MAIN_MAIL_EMAIL_TLS").'</td><td>';
|
||||||
if (isset($conf->global->MAIN_MAIL_SENDMODE) && in_array($conf->global->MAIN_MAIL_SENDMODE, array('smtps', 'swiftmailer'))) {
|
if (isset($conf->global->MAIN_MAIL_SENDMODE) && in_array($conf->global->MAIN_MAIL_SENDMODE, array('smtps', 'swiftmailer'))) {
|
||||||
|
|||||||
@ -30,6 +30,7 @@
|
|||||||
* \brief File of class to send emails (with attachments or not)
|
* \brief File of class to send emails (with attachments or not)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
use OAuth\Common\Storage\DoliStorage;
|
||||||
/**
|
/**
|
||||||
* Class to send emails (with attachments or not)
|
* Class to send emails (with attachments or not)
|
||||||
* Usage: $mailfile = new CMailFile($subject,$sendto,$replyto,$message,$filepath,$mimetype,$filename,$cc,$ccc,$deliveryreceipt,$msgishtml,$errors_to,$css,$trackid,$moreinheader,$sendcontext,$replyto);
|
* Usage: $mailfile = new CMailFile($subject,$sendto,$replyto,$message,$filepath,$mimetype,$filename,$cc,$ccc,$deliveryreceipt,$msgishtml,$errors_to,$css,$trackid,$moreinheader,$sendcontext,$replyto);
|
||||||
@ -657,6 +658,8 @@ class CMailFile
|
|||||||
}
|
}
|
||||||
|
|
||||||
$keyforsmtpserver = 'MAIN_MAIL_SMTP_SERVER';
|
$keyforsmtpserver = 'MAIN_MAIL_SMTP_SERVER';
|
||||||
|
$keyforsmtpuseoauth = "MAIN_MAIL_SMTPS_USE_OAUTH";
|
||||||
|
$keyforsmtpoauthservice = "MAIN_MAIL_SMTPS_OAUTH_SERVICE";
|
||||||
$keyforsmtpport = 'MAIN_MAIL_SMTP_PORT';
|
$keyforsmtpport = 'MAIN_MAIL_SMTP_PORT';
|
||||||
$keyforsmtpid = 'MAIN_MAIL_SMTPS_ID';
|
$keyforsmtpid = 'MAIN_MAIL_SMTPS_ID';
|
||||||
$keyforsmtppw = 'MAIN_MAIL_SMTPS_PW';
|
$keyforsmtppw = 'MAIN_MAIL_SMTPS_PW';
|
||||||
@ -832,6 +835,36 @@ class CMailFile
|
|||||||
$this->smtps->setPW($loginpass);
|
$this->smtps->setPW($loginpass);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!empty($conf->global->$keyforsmtpuseoauth)) {
|
||||||
|
require_once DOL_DOCUMENT_ROOT.'/core/lib/oauth.lib.php'; // define $supportedoauth2array
|
||||||
|
$keyforsupportedoauth2array = $conf->global->$keyforsmtpoauthservice;
|
||||||
|
if (preg_match('/^.*-/', $keyforsupportedoauth2array)) {
|
||||||
|
$keyforprovider = preg_replace('/^.*-/', '', $keyforsupportedoauth2array);
|
||||||
|
} else {
|
||||||
|
$keyforprovider = '';
|
||||||
|
}
|
||||||
|
$keyforsupportedoauth2array = preg_replace('/-.*$/', '', $keyforsupportedoauth2array);
|
||||||
|
$keyforsupportedoauth2array = 'OAUTH_'.$keyforsupportedoauth2array.'_NAME';
|
||||||
|
|
||||||
|
$OAUTH_SERVICENAME = (empty($supportedoauth2array[$keyforsupportedoauth2array]['name']) ? 'Unknown' : $supportedoauth2array[$keyforsupportedoauth2array]['name'].($keyforprovider ? '-'.$keyforprovider : ''));
|
||||||
|
|
||||||
|
require_once DOL_DOCUMENT_ROOT.'/includes/OAuth/bootstrap.php';
|
||||||
|
|
||||||
|
$storage = new DoliStorage($db, $conf);
|
||||||
|
try {
|
||||||
|
$tokenobj = $storage->retrieveAccessToken($OAUTH_SERVICENAME);
|
||||||
|
if (is_object($tokenobj)) {
|
||||||
|
$this->smtps->setToken($tokenobj->getAccessToken());
|
||||||
|
} else {
|
||||||
|
$this->error = "Token not found";
|
||||||
|
}
|
||||||
|
} catch (Exception $e) {
|
||||||
|
// Return an error if token not found
|
||||||
|
$this->error = $e->getMessage();
|
||||||
|
dol_syslog("CMailFile::sendfile: mail end error=".$this->error, LOG_ERR);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
$res = true;
|
$res = true;
|
||||||
$from = $this->smtps->getFrom('org');
|
$from = $this->smtps->getFrom('org');
|
||||||
if ($res && !$from) {
|
if ($res && !$from) {
|
||||||
|
|||||||
@ -68,6 +68,11 @@ class SMTPs
|
|||||||
*/
|
*/
|
||||||
private $_smtpsPW = null;
|
private $_smtpsPW = null;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Token in case we use OAUTH2
|
||||||
|
*/
|
||||||
|
private $_smtpsToken = null;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Who sent the Message
|
* Who sent the Message
|
||||||
* This can be defined via a INI file or via a setter method
|
* This can be defined via a INI file or via a setter method
|
||||||
@ -583,9 +588,10 @@ class SMTPs
|
|||||||
break;
|
break;
|
||||||
case 'XOAUTH2':
|
case 'XOAUTH2':
|
||||||
// "user=$email\1auth=Bearer $token\1\1"
|
// "user=$email\1auth=Bearer $token\1\1"
|
||||||
$token = 'xxx';
|
$user = $this->_smtpsID;
|
||||||
$xxxx = "user=".$this->_smtpsID."\1auth=Bearer ".$token."\1\1";
|
$token = $this->_smtpsToken;
|
||||||
$_retVal = $this->socket_send_str('AUTH XOAUTH2 '.base64_encode($xxxx), '235');
|
$initRes = "user=".$user."\001auth=Bearer ".$token."\001\001";
|
||||||
|
$_retVal = $this->socket_send_str('AUTH XOAUTH2 '.base64_encode($initRes), '235');
|
||||||
if (!$_retVal) {
|
if (!$_retVal) {
|
||||||
$this->_setErr(130, 'Error when asking for AUTH XOAUTH2');
|
$this->_setErr(130, 'Error when asking for AUTH XOAUTH2');
|
||||||
}
|
}
|
||||||
@ -631,7 +637,7 @@ class SMTPs
|
|||||||
// Connect to Server
|
// Connect to Server
|
||||||
if ($this->socket = $this->_server_connect()) {
|
if ($this->socket = $this->_server_connect()) {
|
||||||
// If a User ID *and* a password is given, assume Authentication is desired
|
// If a User ID *and* a password is given, assume Authentication is desired
|
||||||
if (!empty($this->_smtpsID) && !empty($this->_smtpsPW)) {
|
if (!empty($this->_smtpsID) && (!empty($this->_smtpsPW) || !empty($this->_smtpsToken))) {
|
||||||
// Send the RFC2554 specified EHLO.
|
// Send the RFC2554 specified EHLO.
|
||||||
$_retVal = $this->_server_authenticate();
|
$_retVal = $this->_server_authenticate();
|
||||||
} else {
|
} else {
|
||||||
@ -923,6 +929,27 @@ class SMTPs
|
|||||||
return $this->_smtpsPW;
|
return $this->_smtpsPW;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* User token for OAUTH2
|
||||||
|
*
|
||||||
|
* @param string $_strToken User token
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function setToken($_strToken)
|
||||||
|
{
|
||||||
|
$this->_smtpsToken = $_strToken;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Retrieves the User token for OAUTH2
|
||||||
|
*
|
||||||
|
* @return string User token for OAUTH2
|
||||||
|
*/
|
||||||
|
public function getToken()
|
||||||
|
{
|
||||||
|
return $this->_smtpsToken;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Character set used for current message
|
* Character set used for current message
|
||||||
* Character set is defaulted to 'iso-8859-1';
|
* Character set is defaulted to 'iso-8859-1';
|
||||||
@ -1866,7 +1893,7 @@ class SMTPs
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (!(substr($server_response, 0, 3) == $response)) {
|
if (!(substr($server_response, 0, 3) == $response)) {
|
||||||
$this->_setErr(120, "Ran into problems sending Mail.\r\nResponse: $server_response");
|
$this->_setErr(120, "Ran into problems sending Mail.\r\nResponse:".$server_response);
|
||||||
$_retVal = false;
|
$_retVal = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -2286,4 +2286,8 @@ DoesNotWorkWithAllThemes=Will not work with all themes
|
|||||||
NoName=No name
|
NoName=No name
|
||||||
ShowAdvancedOptions= Show advanced options
|
ShowAdvancedOptions= Show advanced options
|
||||||
HideAdvancedoptions= Hide advanced options
|
HideAdvancedoptions= Hide advanced options
|
||||||
CIDLookupURL=The module brings an URL that can be used by an external tool to get the name of a thirdparty or contact from its phone number. URL to use is:
|
CIDLookupURL=The module brings an URL that can be used by an external tool to get the name of a thirdparty or contact from its phone number. URL to use is:
|
||||||
|
MAIN_MAIL_SMTPS_USE_OAUTH=Use OAUTH2 authentication
|
||||||
|
OauthNotAvailableForAll=OAUTH2 authentication is not available for all hosts
|
||||||
|
MAIN_MAIL_SMTPS_OAUTH_SERVICE=OAUTH2 authentication service
|
||||||
|
DontForgetCreateTokenOauthMod=A token with the right permissions must have been created upstream with the OAUTH module
|
||||||
@ -2286,3 +2286,8 @@ NoName=Sans nom
|
|||||||
ShowAdvancedOptions= Show advanced options
|
ShowAdvancedOptions= Show advanced options
|
||||||
HideAdvancedoptions= Hide advanced options
|
HideAdvancedoptions= Hide advanced options
|
||||||
CIDLookupURL=The module brings an URL that can be used by an external tool to get the name of a thirdparty or contact from its phone number. URL to use is:
|
CIDLookupURL=The module brings an URL that can be used by an external tool to get the name of a thirdparty or contact from its phone number. URL to use is:
|
||||||
|
DoesNotWorkWithAllThemes=Ne fonctionne pas avec tous les thèmes
|
||||||
|
MAIN_MAIL_SMTPS_USE_OAUTH=Utilisation de l'authentification OAUTH2
|
||||||
|
OauthNotAvailableForAll=L'authentification OAUTH2 n'est pas disponible pour tous les hôtes
|
||||||
|
MAIN_MAIL_SMTPS_OAUTH_SERVICE=Service d'authentification OAUTH2
|
||||||
|
DontForgetCreateTokenOauthMod=Un jeton avec les bonnes permissions doit avoir été créé en amont avec le module OAUTH
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user