Phplist 3.2.4 with self signed (warning: TLS library problem: 105071:error:14094418:SSL routines:SSL3_READ_BYTES:tlsv1 alert unknown ca:s3_pkt.c:1259:SSL alert number 48:)

Dear Team,

I am using phplist 3.2.4 on php 7 with postfix ( 2.10.x) having self signed certificate. I am getting below error when sending email from phplist else from outlook and Thunderbird it is working without any issue.

warning: TLS library problem: 105071:error:14094418:SSL routines:SSL3_READ_BYTES:tlsv1 alert unknown ca:s3_pkt.c:1259:SSL alert number 48:

I added below lines to last of config.php so that it will not check cert but no luck, will really appropriate if someone help me to fix same .

thanks in advance .

$GLOBALS[‘phpmailer_smtpoptions’] = array(
‘ssl’ => array(
‘verify_peer’ => false,
‘verify_peer_name’ => false,
‘allow_self_signed’ => true
)
);

Regards’
Anupam narayan

conf:
define(‘PHPMAILERHOST’, ‘email-1.rechargemagic.com’);
$phpmailer_smtpuser = ‘user@rechargemagic.com’;
$phpmailer_smtppassword = ‘password’;

port on which mail server communicate default is 587

@anupam4881 $phpmailer_smtpoptions was added in release 3.2.5 so you need to upgrade phplist if you want to use that.

Thanks it’s working now.