CGI and Exchange 2000

2003-03-17 Thread Liebert, Sander
I know this is slightly off topic, but I have yet to find someone that can answer this. I have a new Exchange 2000 server, since it was installed, the cgi scripts on my ISP's server will not send mail from my scripts anymore. Relaying is disabled in Exchange 2000 and I have read that in order for i

Free cgi-bin?

2003-03-17 Thread Liebert, Sander
> Does anyone know of a free cgi-bin. I am having some problems with a > script and wanted to narrow it down to rule out email. I don't need a > free website, just a place that can run and execute my script. I have > searched on google, but I'm only coming up with free web hosts. > -- To unsu

Splitting Output into multiple messages

2003-03-13 Thread Liebert, Sander
Hello everyone, I have a cgi script that sends a text message to a specified user's cell phone or pager. The cell phones are only capable to accepting 130 character messages, which is rather short. The pager company's automatically split the messages if they are over a specified length. I was wond

Regular Expression's and punctuation

2003-01-27 Thread Liebert, Sander
I have a script that is used for text messaging. I added a line of code to check to make sure that input is in a field before the message is sent. My code is as follows: if($b !~ m/^\w[\w\s]*\w$/) { $error .= "Enter a message \n"; } This fails if the field has any punctuation characters. I have

Easiest way to disable the ENTER key on a from

2003-01-24 Thread Liebert, Sander
I would like to disable the RETURN key on my form so users cannot accidentally submit it before they are finished. I have if statements that check to see if all the fields have input, but many users will complain since they are used to hitting RETURN instead of TAB. The submit button will need to o

RE: Quick regex prob

2003-01-23 Thread Liebert, Sander
/^\w(?:[\w\s]*\w)?$/ works well for multiple words, but how do I check a date that is in the format 01/22/03 I think that it is hanging up on the / Thanks for everyone's help. Sander -Original Message- From: Dan Muey [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 23, 2003 1:09 PM