• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

error email gesior

xLosT

Member
Joined
Jan 11, 2010
Messages
1,021
Reaction score
13
Location
Brasil, Rio Grande do Sul
have a 8.6 server with the old version of Gesior my smtp server works perfectly, I am configuring a new server on tfs 1.0 and the new Gesior however sending email not working
i dont using firewall

PHP:
An error occorred while sending email

PHP:
# Emails Config
$config['site']['send_emails'] = true;
$config['site']['mail_address'] = "[email protected]";
$config['site']['smtp_enabled'] = true;
$config['site']['smtp_host'] = "64.31.30.90";
$config['site']['smtp_port'] = 25;
$config['site']['smtp_auth'] = true;
$config['site']['smtp_user'] = "[email protected]";
$config['site']['smtp_pass'] = "xxxxx";
 
Last edited:
1. Do you test it in 'account lost interface' [it should always send e-mails, so it's good place to test] ?
2. Does it show any message on www when it should send e-mail? (like: Cannot send e-mail.)
--
If it shows message about e-mail problem you should edit some file to make it show error message with reason (add me on Skype: phoowned, i will edit that file for you).
Before you message me you could test if it fix problem: change $config['site']['smtp_auth'] = true; to $config['site']['smtp_auth'] = false;
 
Back
Top