Регистрация пользователей.

i can't send mail. Google say error and privatemail.com
Failed sending email: Connection could not be established with host "ssl://smtp.mail.ru:587": stream_socket_client(): SSL operation failed with code 1. OpenSSL Error messages: error:0A00010B:SSL routines::wrong version number
 
you can disable email comfrim registration:

You can change like this!

#1:
============================================================
$bb_cfg['reg_email_activation'] = false; // Demand to activate profile by email confirmation
============================================================

#2:
========================================
// Email
$bb_cfg['emailer'] = [
'enabled' => false,
'sendmail_command' => '/usr/sbin/sendmail -bs',
'smtp' => [
'enabled' => false, // send email via external SMTP server
=========================================

#3:
==============================================================
$bb_cfg['extended_email_validation'] = false; // DNS & RFC checks for entered email addresses
==============================================================
 
Back
Top