[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [cobalt-users] HELP - FP 2000 extensions and form post error
- Subject: Re: [cobalt-users] HELP - FP 2000 extensions and form post error
- From: "Gerald Waugh" <gerald@xxxxxxxxx>
- Date: Wed Apr 18 10:28:06 2001
- List-id: Mailing list for users to share thoughts on Cobalt products. <cobalt-users.list.cobalt.com>
> > > Any suggestions?
> >Is there any clue in your log files?
> I don't know which log files to look at - i.e. in which directory
/var/log/maillog
----------------- copy this script --------------------
#!/usr/bin/perl
print "Content-type:text/html\n\n";
open(MAIL,"|/usr/sbin/sendmail -t");
print MAIL <<End1;
To: ryoung\@reliantaccess.net
Cc: gerald\@waugh.com
From: ryoung\@reliantaccess.net
Subject: Test
This is a test mailing from my domain
End1
close(MAIL);
exit
-------- paste into the web directory as testmail.pl -----------
chmod 711 testmail.pl
chown admin testmail.pl
perl testmail.pl
also try http://yourdomain.com/testmail.pl
This should send an email to you and to me.
If it doesn't look at /var/log/maillog
This will verify that mail can be called, and it's frontpage.
Gerald