clean up login/authentication and remove unused labels

This commit is contained in:
Fernando Ontiveros
2025-04-18 07:31:14 +00:00
parent 54cfe40f90
commit e749eb9b5e
13 changed files with 33 additions and 72 deletions

View File

@@ -294,14 +294,14 @@ class EmailServerTest extends TestCase
if (is_executable($path)) {
// The data that will be sent to the method
$data = [
"FROM_EMAIL" => "admin@processmaker.com",
"FROM_EMAIL" => "info@luranasoft.com",
"FROM_NAME" => "Administrator",
"MESS_ENGINE" => "MAIL",
"MESS_SERVER" => "localhost",
"MESS_PORT" => 25,
"MESS_ACCOUNT" => "admin@processmaker.com",
"MESS_ACCOUNT" => "info@luranasoft.com",
"MESS_PASSWORD" => "",
"TO" => "admin@processmaker.com",
"TO" => "info@luranasoft.com",
"MESS_RAUTH" => true
];
@@ -329,14 +329,14 @@ class EmailServerTest extends TestCase
{
// The data that will be sent to the method
$data = [
"FROM_EMAIL" => "admin@processmaker.com",
"FROM_EMAIL" => "info@luranasoft.com",
"FROM_NAME" => "Administrator",
"MESS_ENGINE" => "PHPMAILER",
"MESS_SERVER" => "smtp.gmail.com",
"MESS_PORT" => 587,
"MESS_ACCOUNT" => "admin@processmaker.com",
"MESS_ACCOUNT" => "info@luranasoft.com",
"MESS_PASSWORD" => "",
"TO" => "admin@processmaker.com",
"TO" => "info@luranasoft.com",
"MESS_RAUTH" => false,
];