05-24-2016, 08:53 AM
Hello Brian (and mudmin of course), thank you for your reply.
My provider is based here in The Netherlands. Whenever I create a new mailaddress the info provided to me says SSL on Port 465. They never speak about TLS. I suppose I could ask them about it
In regards to the missing http://
I mistyped one of the paths, but they can be found in:
users/views/_email_template_verify.php” and in “users/views/_email_template_forgot_password.php
and
Which should be:
and
Maybe there should be a choice to either use SSL or TLS in the email settings?
My provider is based here in The Netherlands. Whenever I create a new mailaddress the info provided to me says SSL on Port 465. They never speak about TLS. I suppose I could ask them about it
In regards to the missing http://
I mistyped one of the paths, but they can be found in:
users/views/_email_template_verify.php” and in “users/views/_email_template_forgot_password.php
Code:
<p><a href="<?=$results->verify_url?>?email=<?=$email;?>&vericode=<?=$vericode;?>">Verify Your Email</a></p>
and
Code:
<p><a href="<?=$_SERVER['HTTP_HOST'].$us_url_root?>users/forgot_password_reset.php?email=<?=$email;?>&vericode=<?=$vericode;?>&reset=1">Reset Password</a></p>
Which should be:
Code:
<p><a href="http://<?=$results->verify_url?>?email=<?=$email;?>&vericode=<?=$vericode;?>">Verify Your Email</a></p>
and
Code:
<p><a href="http://<?=$_SERVER['HTTP_HOST'].$us_url_root?>users/forgot_password_reset.php?email=<?=$email;?>&vericode=<?=$vericode;?>&reset=1">Reset Password</a></p>
Maybe there should be a choice to either use SSL or TLS in the email settings?