• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Linux Lost Account

marcos16

Falkhonn
Joined
May 4, 2012
Messages
224
Reaction score
1
Hello. I have the following error when trying to recover the password by email in the lost account. I'm using Gesior on ubuntu.

An error occurred while sending email! Try again or contact with admin.

# Emails Config
$config['site']['send_emails'] = true;
$config['site']['mail_address'] = "######@gmail.com";
$config['site']['smtp_enabled'] = true;
$config['site']['smtp_host'] = "smtp.gmail.com";
$config['site']['smtp_port'] = 587;
$config['site']['smtp_auth'] = true;
$config['site']['smtp_user'] = "######@gmail.com";
$config['site']['smtp_pass'] = "######";

Could someone tell me how to solve this problem? Thank you very much in advance

up

up
 
Last edited by a moderator:
Did you login to the email on gmail.com once to activate the email?

I use this setting for gmail smtp
Code:
# Emails Config
$config['site']['send_emails'] = true;
$config['site']['mail_address'] = "####@gmail.com";
$config['site']['smtp_enabled'] = true;
$config['site']['smtp_host'] = "ssl://smtp.gmail.com";
$config['site']['smtp_port'] = 465;
$config['site']['smtp_auth'] = true;
$config['site']['smtp_user'] = "####@gmail.com";
$config['site']['smtp_pass'] = "####";
 
Back
Top