Problem when the server needs authentication

Recently, our administration enforced authentication and I had to go into the settings of lm_prefs.php, set $smtp_auth=true and add the necessary details in the following two parameters ($smtp_host, $smtp_port). Now the problem is that the unsubscribe process is not working properly. Specifically, when the user clicks on the unsubscribe link, (i) an empty page in browser opens with no content, (ii) the user doesn't receive an email that he has unsubscribed and the link to re-subscribe, (iii) the admin doesn't receive a notification that the user has unsubscribed. The unsubscribe link per se works and the user is removed from the list. Can you please help here? Thanks.
 

stanbusk

Administrator
Staff member
What version of MLM are you using? The version is inside the lm.php file. The current version is 3.2.3:

PHP:
//-- INTERNAL PARAMETERS -------------------------------------------------------

$script_name     = "Maxprog List Manager";
$script_version  = "3.2.3";
$script_rev_date = "2020-06-03";
$copyright       = "Copyright (c) 2008 - 2020";
$languages       = array( 'en', 'fr', 'de', 'es', 'it', 'nl', 'cz', 'ru' );
 
Yes, we use the latest version. The problem was solved. Apparently, we needed to install a PHP package that wasn't on our server and play with some parameters. Thanks.
 
Last edited:
Top