• 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!

Lost account how to configure?

TKO

Syphero Owner!
Joined
Mar 10, 2008
Messages
2,252
Reaction score
27
Location
Sweden
Hello i need some help to config The lost account settings i wanna know how i can set it up any Tutorial for this?
 
First of all, create a new e-mail with gmx.com (their service seems to be working really well it the Lost Account interface)

Once you do that, open config/config.php and find a block of text starting with:

HTML:
// E-MAIL config
$config['site']['send_emails'] = 1;

You have to edit all the info in this block for your Lost Account interface to work properly. For example, let's say my gmx account is [email protected]. The configuration would look like this:

HTML:
// E-MAIL config
$config['site']['send_emails'] = 1; // is acc. maker configured to send e-mails?
$config['site']['mail_address'] = "[email protected]"; // e-mail address
$config['site']['smtp_enabled'] = "yes"; // send by smtp or mail function (set 0 if use mail function)
$config['site']['smtp_host'] = "mail.gmx.com"; // address
$config['site']['smtp_port'] = 25; // port
$config['site']['smtp_auth'] = "yes"; // need authorization? (set 0 if not need auth)
$config['site']['smtp_user'] = "[email protected]"; // login
$config['site']['smtp_pass'] = "relic123"; // password


Hope that helps!
 
okey if i use gmail how do i do then?

// E-MAIL config
$config['site']['send_emails'] = 1; // is acc. maker configured to send e-mails?
$config['site']['mail_address'] = "[email protected]"; // e-mail address
$config['site']['smtp_enabled'] = "yes"; // send by smtp or mail function (set 0 if use mail function)
$config['site']['smtp_host'] = "gmail.com"; // address
$config['site']['smtp_port'] = 25; // port
$config['site']['smtp_auth'] = "yes"; // need authorization? (set 0 if not need auth)
$config['site']['smtp_user'] = "[email protected]"; // login
$config['site']['smtp_pass'] = "pw"; // password

i got this error:

Warning: fsockopen() [function.fsockopen]: unable to connect to gmail.com:25 (Anslutningsf�rs�ket misslyckades eftersom den anslutna datorn inte svarade inom en viss tid eller p� grund av att den etablerade anslutningen till v�rddatorn inte l�ngre fungerar. ) in C:\xampp\htdocs\phpmailer\class.smtp.php on line 105
 
ahh, sorry, ssl not smtp, whatever
Code:
$config['site']['send_emails'] = 1; // is acc. maker configured to send e-mails?
$config['site']['smtp_enabled'] = "yes"; // send by smtp or mail function (set 0 if use mail function)
$config['site']['smtp_host'] = "ssl://smtp.gmail.com"; // address
$config['site']['smtp_port'] = 465; // port
$config['site']['smtp_auth'] = "1"; // need authorization? (set 0 if not need auth)
 
Back
Top