[Nottingham] 123-reg support

Mike Cardwell nlug at lists.grepular.com
Wed Mar 11 12:19:55 UTC 2009


godfrey wrote:

> Years ago I set up some domains at 123-reg.co.uk for friends of mine. They 
> have recently gone from putting a 'mailto' link on a page (gets lots of spam) 
> to wanting a cgi script that will send a message to their own mail box.

I stopped working for that company nearly 2 and a half years ago so 
can't give you a direct answer. I can give you a generic answer of how I 
would find this information out though.

I would try:

/usr/sbin/sendmail
/usr/lib/sendmail
/usr/local/sbin/sendmail
/usr/local/lib/sendmail

If I couldn't find it at any of those locations, I'd try uploading a cgi 
containing something like this and then going to that page:

#!/usr/bin/perl
print "Content-Type: text/plain\n\n";
foreach( map {"$_/sendmail"} split( /:/, $ENV{PATH} ) ){
    print "$_\n" if -f;
}
print `whereis sendmail`;

Mike



More information about the Nottingham mailing list