FUDforum
Fast Uncompromising Discussions. FUDforum will get your users talking.

Home » FUDforum » FUDforum Installation Issues » Registration with URL messages not going out
Show: Today's Messages :: Polls :: Message Navigator
Switch to threaded view of this topic Create a new topic Submit Reply
Registration with URL messages not going out [message #163310] Sat, 16 October 2010 14:05 Go to next message
Dougie is currently offline  Dougie   United States
Messages: 7
Registered: October 2010
Karma: 0
Junior Member
Given the excellent instructions I had no problem getting FudForum up and running on my website (hosed at GoDaddy). HOWEVER, new registrants don't get the message with the confirmation URL in it. Nor do I get the message from the forum notifying that somebody is in the queue.

If I manually approve them, they get the message telling them they've been approved and I can send messages to them all day using the em button. Something just must not be set up right on my side...

On my admin panel, settings are:
All E-mail - Yes
Admin email - has my email address in format UUU(at)xxxx(dot)com
Admin email - has my email address in format UUU(at)xxxx(dot)com
- spearately I copied each of these into an email to line to verify spelling and all was correct
Notify w/Body - No
Smart Notification - No
Disable Welcome e-mail - No
Disable e-mail notifications - No
Moderator Notification - Yes
Use SMTP to Send e-mail - No
email confirmation - Yes

Any help would be GREATLY appreciated
No Registration emails with URLs going out [message #163311 is a reply to message #163310] Sat, 16 October 2010 14:25 Go to previous messageGo to next message
Dougie is currently offline  Dougie   United States
Messages: 7
Registered: October 2010
Karma: 0
Junior Member
I got the forum up and running on the first try! That's better than I've ever been able to do with commercial packages.

The only thing that doesn't work is that the emails going out with URLs are not being sent. NEITHER the message to the new user with his verification URL NOR the message to me (as administrator) telling me of a user in the queue were sent out. However, I can send "vanilla" emails and if I manually approve the bugger he'll get the announcement message saying "You're in" I must have something set up incorrectly.

My host is GoDaddy
IIS 7 and PHP 5.x running

Settings inside the Admin Panel:
Allow e-mail - Yes
Administrator e-mail - UUU(at)xxxx(dot)com (yes - this has been tested)
Notify From - UUU(at)xxxx(dot)com
Notify w/body - No
Smart Notification - No
Disable Welcome e-mail - No
Disable e-mail notifications - No
Moderator Notfication - Yes
Use SMTP to Send e-mail - NO
(So the other SMTP settings arent' important)
E-mail confirmation - Yes
Re: No Registration emails with URLs going out [message #163313 is a reply to message #163311] Sat, 16 October 2010 16:38 Go to previous messageGo to next message
naudefj is currently offline  naudefj   South Africa
Messages: 3771
Registered: December 2004
Karma: 28
Senior Member
Administrator
Core Developer
Noting wrong with your forum settings.
My guess is PHP (on your system) cannot send mail or the mail is somehow blocked by a spam filter.

Create a test script like this to test:
<?php
   $ok = mail('UUU(at)xxxx(dot)com', "My Subject", "Line 1\nLine 2\nLine 3");
   echo $ok?"<h1> Mail sent</h1>":"<h1> Mail was NOT send. Check your setup!</h1>";
?>

Re: No Registration emails with URLs going out [message #163317 is a reply to message #163313] Sat, 16 October 2010 19:46 Go to previous messageGo to next message
Dougie is currently offline  Dougie   United States
Messages: 7
Registered: October 2010
Karma: 0
Junior Member
Thank you .... did that and got

Warning: mail() [function.mail]: SMTP server response: 451 See http://pobox.com/~djb/docs/smtplf.html. in D:\Hosting\2777100\html\forumfiles\Send Test.php on line 2

Mail was NOT send. Check your setup!

Re: No Registration emails with URLs going out [message #163318 is a reply to message #163317] Sat, 16 October 2010 20:10 Go to previous messageGo to next message
naudefj is currently offline  naudefj   South Africa
Messages: 3771
Registered: December 2004
Karma: 28
Senior Member
Administrator
Core Developer
My mistake. Please change '\n' in the script to '\r\n' and try again (twice).
Re: No Registration emails with URLs going out [message #163320 is a reply to message #163318] Sat, 16 October 2010 20:24 Go to previous messageGo to next message
Dougie is currently offline  Dougie   United States
Messages: 7
Registered: October 2010
Karma: 0
Junior Member
No problem....changed line 2 in the script to:
$ok = mail('UUU(at)xxxx(dot)com', "My Subject", "Line 1\r\nLine 2\r\nLine 3");

Ran the script twice and got: Mail Sent both times.
Re: No Registration emails with URLs going out [message #163321 is a reply to message #163320] Sat, 16 October 2010 20:38 Go to previous messageGo to next message
Dougie is currently offline  Dougie   United States
Messages: 7
Registered: October 2010
Karma: 0
Junior Member
Let me be clear - the actual second line I used was:
$ok = mail('WebGuy(at)plainolas(dot)com', "Message From PHP", "Line 1\r\nLine 2\r\nLine 3");

It's been 4 to 5 minutes so far and I haven't received anything in the target in-basket.

[Updated on: Sat, 16 October 2010 23:17]

Report message to a moderator

Re: No Registration emails with URLs going out [message #163322 is a reply to message #163321] Sat, 16 October 2010 23:26 Go to previous messageGo to next message
Dougie is currently offline  Dougie   United States
Messages: 7
Registered: October 2010
Karma: 0
Junior Member
It went through!
I just got the "Line 1, Line 2 ... " message.

Now, what should I try?
Re: No Registration emails with URLs going out [message #163323 is a reply to message #163322] Sun, 17 October 2010 07:13 Go to previous messageGo to next message
naudefj is currently offline  naudefj   South Africa
Messages: 3771
Registered: December 2004
Karma: 28
Senior Member
Administrator
Core Developer
If your server can send e-mail, FUDforum should be able to do it as well.
Check if you see any SMTP errors (probably in /var/log/mail.log or something similar).

Re: No Registration emails with URLs going out [message #163324 is a reply to message #163323] Sun, 17 October 2010 12:11 Go to previous messageGo to next message
Dougie is currently offline  Dougie   United States
Messages: 7
Registered: October 2010
Karma: 0
Junior Member
Sorry...mebbe I wasn't clear in my first post in this thread.
The ONLY messages that don't seem to be sent are the registration verification emails.

Emails from admin account have always been able to find their way.

What does that suggest?
Re: No Registration emails with URLs going out [message #163325 is a reply to message #163324] Sun, 17 October 2010 12:16 Go to previous message
naudefj is currently offline  naudefj   South Africa
Messages: 3771
Registered: December 2004
Karma: 28
Senior Member
Administrator
Core Developer
Besides checking your spam folder, I'm out of ideas.
  Switch to threaded view of this topic Create a new topic Submit Reply
Previous Topic: Upgrade Problem: Fatal error: Allowed memory size of...
Next Topic: Upgrade problem after upgrade
Goto Forum:
  

-=] Back to Top [=-
[ Syndicate this forum (XML) ] [ RSS ]

Current Time: Mon Jun 17 00:15:37 GMT 2024

Total time taken to generate the page: 0.01887 seconds