Scouter wrote:
I don't get the email telling me they joined,
Well, as I said, you should get a copy. A theory would be that you use
sendmail for email notifications, while your web host has configured
sendmail to not send bcc copies.
This is line 530 in rlmain.pm:
print MAIL "bcc: $bcc\n" if $bcc;
I suggest that you try removing the first 'b', so it reads:
print MAIL "cc: $bcc\n" if $bcc;
Optionally, provided that you have direct access to the SMTP server, you
can try the SMTP option (in rlconfig.pm) instead of sendmail.
I'm now using a form to mail, for the new sites to fill out. ... I
then check the sites submitted to see if they are real ones and if
can belong to my ring. I then add the info to the ring system myself
and then program sents them an email with info to join the ring.
Why don't you let them add the info to the the ring system themselves?
The only info you need to be able to check a site is the URL. When you
are satisfied, you could just send them a message with the URL to
newsite.pl.
/ Gunnar