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

Help with email in gesior!

bleeblahblork

New Member
Joined
Aug 12, 2009
Messages
117
Reaction score
0
// 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'] = "smtp.gmail.com"; // address
$config['site']['smtp_port'] = 465; // 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'] = "****"; // password


Whats wrong?

When I try recover an account the page just doesnt load.

No errors
 
// 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'] = "smtp.gmail.com"; // address
$config['site']['smtp_port'] = 465; // 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'] = "****"; // password


Whats wrong?

When I try recover an account the page just doesnt load.

No errors

Why dont just use a mail server program like qksmtp or argosoft mail server?

They're small applications that dont use so much resources, and works fine, at least for me ;)
 
yea i dont know how to confirm it
btw
Code:
bleeblahblork has chosen not to receive private messages or may not be allowed to receive private messages. Therefore you may not send your message to him/her.

If you are trying to send this message to multiple recipients, remove bleeblahblork from the recipient list and send the message again.
lol
 
The easiest way is to have your settings like this:

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

Then download a mail server called:
QK SMTP Server 3

Use port 25, and make sure you open this port using your port forwarding.

Btw if you need to message me I made sure I enabled my private messages!

Sorry about that.
 
// 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'] = "ssl://smtp.gmail.com"; // address
$config['site']['smtp_port'] = 465; // 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'] = "accountpassword"; // password

This is correct configuration.

If still does working
Unlock ports 465 UDP in your Firewall..

And do not forgot give me Rep++ ;d
 
Back
Top