Jump to content
  • 0

Flux CP Email Verification Problem


Question

Posted (edited)

"Your account has been created, but unfortunately we failed to send an e-mail due to technical difficulties. Please contact a staff member and request for assistance."

how to fix this?

Here's my Application.php

 'RequireEmailConfirm'  => true,					// Require e-mail confirmation during registration.
'RequireChangeConfirm' => false,					// Require confirmation when changing e-mail addresses.
'EmailConfirmExpire'   => 48,					   // E-mail confirmations expire hours. Unconfirmed accounts will expire after this period of time.
'MailerFromAddress'	=> ,[email protected]',	  // The e-mail address displayed in the From field.
'MailerFromName'	   => 'TestRO Account Confirmation',			 // The name displayed with the From e-mail address.
'MailerUseSMTP'		=> true,					// Whether or not to use a separate SMTP server for sending mail.
'MailerSMTPUseSSL'	 => false,					// Whether or not mailer should connect using SSL (yes for GMail).
'MailerSMTPUseTLS'	 => false,					// Same as above SSL setting, but for TLS.  This setting will override the SSL setting.
'MailerSMTPPort'	   => 465,					 // When MailerUseSMTP is true: SMTP server port (mailer will default to 25).
'MailerSMTPHosts'	  => null,					 // When MailerUseSMTP is true: A string host or array of hosts (e.g., 'host1' or array('host1', 'backuphost')).
'MailerSMTPUsername'   => testro,					 // When MailerUseSMTP is true: Authorized username for SMTP server.
'MailerSMTPPassword'   => 123456,					 // When MailerUseSMTP is true: Authorized password for SMTP server (for above user).

And BTW, I'm using Yahoo Mail.

Edited by Rage

20 answers to this question

Recommended Posts

Posted (edited)

This is my configuration. is this correct?

'RequireEmailConfirm'  => true,					// Require e-mail confirmation during registration.
'RequireChangeConfirm' => false,					// Require confirmation when changing e-mail addresses.
'EmailConfirmExpire'   => 48,					   // E-mail confirmations expire hours. Unconfirmed accounts will expire after this period of time.
'MailerFromAddress'	=> 'noreply@localhost',	  // The e-mail address displayed in the From field.
'MailerFromName'	   => 'MailerName',			 // The name displayed with the From e-mail address.
'MailerUseSMTP'		=> true,					// Whether or not to use a separate SMTP server for sending mail.
'MailerSMTPUseSSL'	 => false,					// Whether or not mailer should connect using SSL (yes for GMail).
'MailerSMTPUseTLS'	 => true,					// Same as above SSL setting, but for TLS.  This setting will override the SSL setting.
'MailerSMTPPort'	   => 465,					 // When MailerUseSMTP is true: SMTP server port (mailer will default to 25).
'MailerSMTPHosts'	  => 'smtp.gmail.com',					 // When MailerUseSMTP is true: A string host or array of hosts (e.g., 'host1' or array('host1', 'backuphost')).
'MailerSMTPUsername'   => '[email protected]',					 // When MailerUseSMTP is true: Authorized username for SMTP server.
'MailerSMTPPassword'   => 'password',					 // When MailerUseSMTP is true: Authorized password for SMTP server (for above user).

Edited by ngek202
Posted

Hi ngek202,

You have incorrectly assigned the GMail SMTP server in your 'application.php'.

For the GMail's SSL SMTP, it should be...

'MailerUseSMTP' => true, // Whether or not to use a separate SMTP server for sending mail.
'MailerSMTPUseSSL'  => true, // Whether or not mailer should connect using SSL (yes for GMail).
'MailerSMTPUseTLS'  => false, // Same as above SSL setting, but for TLS.  This setting will override the SSL setting.
'MailerSMTPPort'    => 465,  // When MailerUseSMTP is true: SMTP server port (mailer will default to 25).
'MailerSMTPHosts'   => 'smtp.gmail.com',  // When MailerUseSMTP is true: A string host or array of hosts (e.g., 'host1' or array('host1', 'backuphost')).
'MailerSMTPUsername'   => '[email protected]',  // When MailerUseSMTP is true: Authorized username for SMTP server.
'MailerSMTPPassword'   => 'password',  // When MailerUseSMTP is true: Authorized password for SMTP server (for above user).

For the GMail's TLS SMTP, it should be...

'MailerUseSMTP' => true, // Whether or not to use a separate SMTP server for sending mail.
'MailerSMTPUseSSL'  => false, // Whether or not mailer should connect using SSL (yes for GMail).
'MailerSMTPUseTLS'  => true, // Same as above SSL setting, but for TLS.  This setting will override the SSL setting.
'MailerSMTPPort'    => 587,  // When MailerUseSMTP is true: SMTP server port (mailer will default to 25).
'MailerSMTPHosts'   => 'smtp.gmail.com',  // When MailerUseSMTP is true: A string host or array of hosts (e.g., 'host1' or array('host1', 'backuphost')).
'MailerSMTPUsername'   => '[email protected]',  // When MailerUseSMTP is true: Authorized username for SMTP server.
'MailerSMTPPassword'   => 'password',  // When MailerUseSMTP is true: Authorized password for SMTP server (for above user).

If the SSL SMTP setting does not work properly, try using...

'MailerSMTPHosts'   => 'ssl://smtp.gmail.com',  // When MailerUseSMTP is true: A string host or array of hosts (e.g., 'host1' or array('host1', 'backuphost')).

Posted (edited)

Hi ngek202,

You have incorrectly assigned the GMail SMTP server in your 'application.php'.

For the GMail's SSL SMTP, it should be...

'MailerUseSMTP' => true, // Whether or not to use a separate SMTP server for sending mail.
'MailerSMTPUseSSL'  => true, // Whether or not mailer should connect using SSL (yes for GMail).
'MailerSMTPUseTLS'  => false, // Same as above SSL setting, but for TLS.  This setting will override the SSL setting.
'MailerSMTPPort'	=> 465,  // When MailerUseSMTP is true: SMTP server port (mailer will default to 25).
'MailerSMTPHosts'   => 'smtp.gmail.com',  // When MailerUseSMTP is true: A string host or array of hosts (e.g., 'host1' or array('host1', 'backuphost')).
'MailerSMTPUsername'   => '[email protected]',  // When MailerUseSMTP is true: Authorized username for SMTP server.
'MailerSMTPPassword'   => 'password',  // When MailerUseSMTP is true: Authorized password for SMTP server (for above user).

For the GMail's TLS SMTP, it should be...

'MailerUseSMTP' => true, // Whether or not to use a separate SMTP server for sending mail.
'MailerSMTPUseSSL'  => false, // Whether or not mailer should connect using SSL (yes for GMail).
'MailerSMTPUseTLS'  => true, // Same as above SSL setting, but for TLS.  This setting will override the SSL setting.
'MailerSMTPPort'	=> 587,  // When MailerUseSMTP is true: SMTP server port (mailer will default to 25).
'MailerSMTPHosts'   => 'smtp.gmail.com',  // When MailerUseSMTP is true: A string host or array of hosts (e.g., 'host1' or array('host1', 'backuphost')).
'MailerSMTPUsername'   => '[email protected]',  // When MailerUseSMTP is true: Authorized username for SMTP server.
'MailerSMTPPassword'   => 'password',  // When MailerUseSMTP is true: Authorized password for SMTP server (for above user).

If the SSL SMTP setting does not work properly, try using...

'MailerSMTPHosts'   => 'ssl://smtp.gmail.com',  // When MailerUseSMTP is true: A string host or array of hosts (e.g., 'host1' or array('host1', 'backuphost')).

i have error sir.

'MailerSMTPUsername'   => '[email protected]',  // When MailerUseSMTP is true: Authorized username for SMTP server.[font=monospace]

[/font]

in "@".. i think in the username.. i will not use @.

Edited by Emistry
Change Codebox to Code to wrap short content
Posted (edited)

does anyone know how this thing works, i have tried several settings using my yahoo mail and gmail but still cant make the email verification to work. i have also read through many guide. need help

Edited by Myrmiddon
Posted

does anyone know how this thing works, i have tried several settings using my yahoo mail and gmail but still cant make the email verification to work. i have also read through many guide. need help

Hi Kanage,

Can you show up a copy of your configuration for the gmail? Also, have you enabled POP for your gmail account?

http://support.google.com/mail/bin/answer.py?hl=en&answer=13287

Enable POP: https://support.google.com/mail/bin/answer.py?hl=en&answer=13273

Posted (edited)

Fixed. NVM I used TSL configuration. Works fine :)

Here are my settings. any help?

*POP enabled in Gmail. LINK to config

'RequireEmailConfirm'  => false,
'RequireChangeConfirm' => false,
'EmailConfirmExpire'   => 48,
'MailerFromAddress'	=> '[email protected]',
'MailerFromName'	   => 'OracleRO',
'MailerUseSMTP'		=> true,
'MailerSMTPUseSSL'	 => true,
'MailerSMTPUseTLS'	 => false,
'MailerSMTPPort'	   => 465,
'MailerSMTPHosts'	  => 'ssl://smtp.gmail.com',
'MailerSMTPUsername'   => '[email protected]',

Edited by pandaplaygames
Posted

Help..
having problem with email verification also.. i already enabled POP in my Gmail account and this is my configuration

 

'RequireEmailConfirm' => true,
'RequireChangeConfirm' => false,
'EmailConfirmExpire' => 48,
'MailerFromAddress'    => '[email protected]',
'MailerFromName'     => 'KyrosRO',
'MailerUseSMTP'        => true,
'MailerSMTPUseSSL'     => true,
'MailerSMTPUseTLS'     => false,
'MailerSMTPPort'     => 465,
'MailerSMTPHosts'     => 'ssl://smtp.gmail.com',
'MailerSMTPUsername' => '[email protected]',
Posted

Help..

having problem with email verification also.. i already enabled POP in my Gmail account and this is my configuration

 

'RequireEmailConfirm' => true,
'RequireChangeConfirm' => false,
'EmailConfirmExpire' => 48,
'MailerFromAddress'    => '[email protected]',
'MailerFromName'     => 'KyrosRO',
'MailerUseSMTP'        => true,
'MailerSMTPUseSSL'     => true,
'MailerSMTPUseTLS'     => false,
'MailerSMTPPort'     => 465,
'MailerSMTPHosts'     => 'ssl://smtp.gmail.com',
'MailerSMTPUsername' => '[email protected]',

Hi Erba,

 

Use PHP mail instead of SMTP; switch 'MailerUseSMTP' to false.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...