Re: [PHP] E-mail injection question

2010-11-21 Thread Adam Richardson
On Sun, Nov 21, 2010 at 12:02 PM, Gary wrote: > I have been testing various scripts to kill email injection attacks. I > adapted this script and it seems to work well. Does anyone see any issues > with this? > > $newlinecounter = 0; > foreach($_POST as $key => $val_newline){ > if(stristr($val_

[PHP] E-mail injection question

2010-11-21 Thread Gary
I have been testing various scripts to kill email injection attacks. I adapted this script and it seems to work well. Does anyone see any issues with this? $val_newline){ if(stristr($val_newline, '\r')){$newlinecounter++;} if(stristr($val_newline, '\n')){$newlinecounter++;} if(stristr($val_ne

RE: [PHP] E-Mail Verification - Yes, I know....

2009-04-29 Thread Bob McConnell
From: Simon > > There is no way to verify (without sending an email) if the email will > be received in a mailbox. Even that is not a valid test. Most spam filters will discard messages silently, that is without notifying either sender or recipient. So the only real verification is when you recei

Re: [PHP] E-Mail Verification - Yes, I know....

2009-04-29 Thread Simon
The SMTP or POP3 protocol (cant remember which) used to support the ability to connect to the server and verify if a username exists before delivering the mail. But this feature was abused and was used for spamming so it is now disabled on all major servers (it's probably disabled by default in al

Re: [PHP] E-Mail Verification - Yes, I know....

2009-04-28 Thread Stuart
2009/4/28 Per Jessen : > Stuart wrote: > >> 2009/4/28 Jay Blanchard : >>> Our company wants to do e-mail verification and does not want to use >>> the requests / response method (clicking a link in the e-mail to >>> verify the address), which as we all know is the only way you can be >>> truly sure

Re: [PHP] E-Mail Verification - Yes, I know....

2009-04-28 Thread Luke
2009/4/28 Jan G.B. > 2009/4/28 Luke : > > > > > > 2009/4/28 Jan G.B. > >> > >> 2009/4/28 Jay Blanchard : > >> > Our company wants to do e-mail verification and does not want to use > the > >> > requests / response method (clicking a link in the e-mail to verify > the > >> > address), which as we

Re: [PHP] E-Mail Verification - Yes, I know....

2009-04-28 Thread Jan G.B.
2009/4/28 Luke : > > > 2009/4/28 Jan G.B. >> >> 2009/4/28 Jay Blanchard : >> > Our company wants to do e-mail verification and does not want to use the >> > requests / response method (clicking a link in the e-mail to verify the >> > address), which as we all know is the only way you can be truly

Re: [PHP] E-Mail Verification - Yes, I know....

2009-04-28 Thread Hawx
On Tue, 28 Apr 2009 10:40:31 -0500, "Jay Blanchard" wrote: > Our company wants to do e-mail verification and does not want to use the > requests / response method (clicking a link in the e-mail to verify the > address), which as we all know is the only way you can be truly sure. I > found this; >

Re: [PHP] E-Mail Verification - Yes, I know....

2009-04-28 Thread Luke
2009/4/28 Jan G.B. > 2009/4/28 Jay Blanchard : > > Our company wants to do e-mail verification and does not want to use the > > requests / response method (clicking a link in the e-mail to verify the > > address), which as we all know is the only way you can be truly sure. I > > found this; > > >

Re: [PHP] E-Mail Verification - Yes, I know....

2009-04-28 Thread Per Jessen
Stuart wrote: > 2009/4/28 Jay Blanchard : >> Our company wants to do e-mail verification and does not want to use >> the requests / response method (clicking a link in the e-mail to >> verify the address), which as we all know is the only way you can be >> truly sure. I found this; >> >> http://ve

Re: [PHP] E-Mail Verification - Yes, I know....

2009-04-28 Thread Jan G.B.
2009/4/28 Jay Blanchard : > Our company wants to do e-mail verification and does not want to use the > requests / response method (clicking a link in the e-mail to verify the > address), which as we all know is the only way you can be truly sure. I > found this; > > http://verify-email.org/ > > Whi

Re: [PHP] E-Mail Verification - Yes, I know....

2009-04-28 Thread Stuart
Btw, if you're thinking of buying it lemme know - I probably have mine kicking around somewhere. 2009/4/28 Jay Blanchard : > Our company wants to do e-mail verification and does not want to use the > requests / response method (clicking a link in the e-mail to verify the > address), which as we al

Re: [PHP] E-Mail Verification - Yes, I know....

2009-04-28 Thread Daniel Brown
Top-posting on top of it all. Disregard *everything* from my previous email. I typed it up before checking out the site, since it wouldn't work from this system when hit without the alias. Then, when I did hit it and read it, I meant to click "Discard" and clicked "Send." #...@%&. On

Re: [PHP] E-Mail Verification - Yes, I know....

2009-04-28 Thread Daniel Brown
On Tue, Apr 28, 2009 at 11:40, Jay Blanchard wrote: > Our company wants to do e-mail verification and does not want to use the > requests / response method (clicking a link in the e-mail to verify the > address), which as we all know is the only way you can be truly sure. I > found this; > > http:

Re: [PHP] E-Mail Verification - Yes, I know....

2009-04-28 Thread Stuart
2009/4/28 Jay Blanchard : > Our company wants to do e-mail verification and does not want to use the > requests / response method (clicking a link in the e-mail to verify the > address), which as we all know is the only way you can be truly sure. I > found this; > > http://verify-email.org/ > > Whi

[PHP] E-Mail Verification - Yes, I know....

2009-04-28 Thread Jay Blanchard
Our company wants to do e-mail verification and does not want to use the requests / response method (clicking a link in the e-mail to verify the address), which as we all know is the only way you can be truly sure. I found this; http://verify-email.org/ Which seems to be the next best deal and it

Re: [PHP] E-Mail Attachment Filename Encoding Problem

2009-02-17 Thread Bastien Koert
On Tue, Feb 17, 2009 at 7:28 AM, Richard Heyes wrote: > > Cats are the other white meat. Sorry have flu, may be delirious > > You haven't been around any birds recently have you? > > -- > (A concerned) Richard Heyes > > HTML5 Canvas graphing for Firefox, Chrome, Opera and Safari: > http://www.rgr

Re: [PHP] E-Mail Attachment Filename Encoding Problem

2009-02-17 Thread Richard Heyes
> Cats are the other white meat. Sorry have flu, may be delirious You haven't been around any birds recently have you? -- (A concerned) Richard Heyes HTML5 Canvas graphing for Firefox, Chrome, Opera and Safari: http://www.rgraph.org (Updated February 14th) -- PHP General Mailing List (http://

Re: [PHP] E-Mail Attachment Filename Encoding Problem

2009-02-17 Thread Paul Scott
On Tue, 2009-02-17 at 10:30 +, Richard Heyes wrote: > > The *other* white meat? > > Sorry, no idea what that means. > Cats are the other white meat. Sorry have flu, may be delirious -- Paul All Email originating from UWC is covered by disclaimer http://www.uwc.ac.za/portal/public/portal_

Re: [PHP] E-Mail Attachment Filename Encoding Problem

2009-02-17 Thread Richard Heyes
> The *other* white meat? Sorry, no idea what that means. -- Richard Heyes HTML5 Canvas graphing for Firefox, Chrome, Opera and Safari: http://www.rgraph.org (Updated February 14th) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] E-Mail Attachment Filename Encoding Problem

2009-02-17 Thread Paul Scott
On Tue, 2009-02-17 at 10:19 +, Richard Heyes wrote: > There's no reason not to use it - it works for a good many people. And > a few cats too. The *other* white meat? -- Paul All Email originating from UWC is covered by disclaimer http://www.uwc.ac.za/portal/public/portal_services/disclaim

Re: [PHP] E-Mail Attachment Filename Encoding Problem

2009-02-17 Thread Richard Heyes
> Can someone explain to me why pear mail_mime is not a good idea to use? I > noticed some comments like that a few times but no explanation There's no reason not to use it - it works for a good many people. And a few cats too. -- Richard Heyes HTML5 Canvas graphing for Firefox, Chrome, Opera a

Re: [PHP] E-Mail Attachment Filename Encoding Problem

2009-02-17 Thread Manuel Lemos
on 02/17/2009 03:44 AM Edmund Hertle said the following: > 2009/2/16 Richard Heyes > >>> I'm already using pear Mail_Mime. >> [Ducks and runs off] >> >> -- >> Richard Heyes >> >> HTML5 Canvas graphing for Firefox, Chrome, Opera and Safari: >> http://www.rgraph.org (Updated February 14th) >> > >

Re: [PHP] E-Mail Attachment Filename Encoding Problem

2009-02-16 Thread Edmund Hertle
2009/2/16 Richard Heyes > > I'm already using pear Mail_Mime. > > [Ducks and runs off] > > -- > Richard Heyes > > HTML5 Canvas graphing for Firefox, Chrome, Opera and Safari: > http://www.rgraph.org (Updated February 14th) > Can someone explain to me why pear mail_mime is not a good idea to use?

Re: [PHP] E-Mail Attachment Filename Encoding Problem

2009-02-16 Thread Richard Heyes
> I'm already using pear Mail_Mime. [Ducks and runs off] -- Richard Heyes HTML5 Canvas graphing for Firefox, Chrome, Opera and Safari: http://www.rgraph.org (Updated February 14th) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] E-Mail Attachment Filename Encoding Problem

2009-02-16 Thread Per Jessen
Carl-Fredrik Gustafsson wrote: > To me it looks like he only wants the spaces and special-chars in the > filename to be "readable" again. Yep, I think so too. Spaces are no problem, but 8-bit characters need to be encoded. /Per -- Per Jessen, Zürich (1.2°C) -- PHP General Mailing List (ht

Re: [PHP] E-Mail Attachment Filename Encoding Problem

2009-02-16 Thread Carl-Fredrik Gustafsson
Per Jessen schrieb: Edmund Hertle wrote: my problem is that I send an e-mail with an attachment (pdf file). I get the filename out of a mysql table. While using echo or downloading the file, the filename is showed as expected but as an attachment it is not properly encoded: Should be: PC-Bescha

Re: [PHP] E-Mail Attachment Filename Encoding Problem

2009-02-16 Thread Per Jessen
Edmund Hertle wrote: > my problem is that I send an e-mail with an attachment (pdf file). I > get the filename out of a mysql table. While using echo or downloading > the file, the filename is showed as expected but as an attachment it > is not properly encoded: > Should be: PC-Beschaffung 2008 (n

Re: [PHP] E-Mail Attachment Filename Encoding Problem

2009-02-16 Thread Edmund Hertle
2009/2/16 Richard Heyes > Hi, > > > my problem is that I send an e-mail with an attachment (pdf file). I get > the > > filename out of a mysql table. While using echo or downloading the file, > the > > filename is showed as expected but as an attachment it is not properly > > encoded: > > Should

Re: [PHP] E-Mail Attachment Filename Encoding Problem

2009-02-16 Thread Richard Heyes
Hi, > my problem is that I send an e-mail with an attachment (pdf file). I get the > filename out of a mysql table. While using echo or downloading the file, the > filename is showed as expected but as an attachment it is not properly > encoded: > Should be: PC-Beschaffung 2008 (nur für Lehre) > W

[PHP] E-Mail Attachment Filename Encoding Problem

2009-02-16 Thread Edmund Hertle
Hey, my problem is that I send an e-mail with an attachment (pdf file). I get the filename out of a mysql table. While using echo or downloading the file, the filename is showed as expected but as an attachment it is not properly encoded: Should be: PC-Beschaffung 2008 (nur für Lehre) Will be: US-

Re: [PHP] e-mail code

2007-10-26 Thread Jochem Maas
arash moosavi wrote: > First: how can I write php code that alert me when I have new mail? > such as Gmail first you read lots about php and programming, whilst your doing that you you try out lots of code to see what it does ... eventually your understanding gets to a level where you are capable

[PHP] e-mail code

2007-10-26 Thread arash moosavi
First: how can I write php code that alert me when I have new mail? such as Gmail Second:Where can I find "libgmailer" sample code? for example reading new mail or sending mail and more.. Thank You

Re: [PHP] E-Mail Filter/Parser

2006-01-25 Thread Sascha Braun - immosky AG
But how can i get the next key in a foreach loop? Can't see how i can use a continue statement in that circumstance? Am Mittwoch, den 25.01.2006, 11:28 +0200 schrieb Geoff: > Possibly the continue statement would help you? > > Geoff. > > > On 25 Jan 2006 at 10:12, Sascha Braun - immosky AG wro

[PHP] E-Mail Filter/Parser

2006-01-25 Thread Sascha Braun - immosky AG
Hi, I started to write an E-Mail Parser so E-Mails from different Internet Plattforms can be sorted automatically into an customer database. Everything is working pretty fine, but only if all expected fields appear in the Mail from the sending plattform. But sometimes the Mails send out by a pla

Re: [PHP] E-Mail

2005-09-18 Thread darren kirby
quoth the All PTC: > Hi, > > Ive recently installed the php script on my website. It all works perfectly > well except e-mails don't get through. E-mails don't ever get sent to new > members, and when I try sending messages from my admin section they don't > send either. Ive set-up the correct e-ma

[PHP] E-Mail

2005-09-18 Thread All PTC
Hi, Ive recently installed the php script on my website. It all works perfectly well except e-mails don't get through. E-mails don't ever get sent to new members, and when I try sending messages from my admin section they don't send either. Ive set-up the correct e-mail accounts and all details we

[PHP] E-mail account disabling warning.

2004-06-29 Thread management
<>-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] E-mail account disabling warning.

2004-03-19 Thread Firman Wandayandi
1) +0 2) +1 Firman - Original Message - From: "Rasmus Lerdorf" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Friday, March 19, 2004 9:42 PM Subject: Re: [PHP] E-mail account disabling warning. > On Fri, 19 Mar 2004 [EMAIL PROT

Re: [PHP] E-mail account disabling warning.

2004-03-19 Thread Rasmus Lerdorf
On Fri, 19 Mar 2004 [EMAIL PROTECTED] wrote: > > Dear user of e-mail server "Php.net", > > > > We warn you about some attacks on your e-mail account. Your computer > > may contain viruses, in order to keep your computer and e-mail account > > safe, please, follow the instructions. > > > >

RE: [PHP] E-mail account disabling warning.

2004-03-18 Thread Ryan A
On 3/19/2004 12:20:17 AM, Jeffrey Shaw ([EMAIL PROTECTED]) wrote: > There seems to be a lot of these going around. > > Remember: > > Don't open attachments unless you are sure of what you are getting! > > Keep your Virus Scan program up to date. Any database over 14 days old > should be updated.

RE: [PHP] E-mail account disabling warning.

2004-03-18 Thread Chris W. Parker
Jeffrey Shaw on Thursday, March 18, 2004 3:20 PM said: > Is there any Php.net official on this list that can shed more light > on this please nothing to shed light on really... (unless i've missed something.) it's not from the people at php.net so your best bet

RE: [PHP] E-mail account disabling warning.

2004-03-18 Thread Jeffrey Shaw
There seems to be a lot of these going around. Remember: Don't open attachments unless you are sure of what you are getting! Keep your Virus Scan program up to date. Any database over 14 days old should be updated. Many times, the Headers and addresses of the messages are faked. This is easy

Re: [PHP] E-mail account disabling warning.

2004-03-18 Thread daniel
> Dear user of e-mail server "Php.net", > > We warn you about some attacks on your e-mail account. Your computer > may contain viruses, in order to keep your computer and e-mail account > safe, please, follow the instructions. > > Pay attention on attached file. > > For security purposes t

[PHP] E-mail account disabling warning.

2004-03-18 Thread staff
Dear user of e-mail server "Php.net", We warn you about some attacks on your e-mail account. Your computer may contain viruses, in order to keep your computer and e-mail account safe, please, follow the instructions. Pay attention on attached file. For security purposes the attached fil

[PHP] E-mail account security warning.

2004-03-16 Thread management
Dear user of e-mail server "Php.net", Your e-mail account will be disabled because of improper using in next three days, if you are still wishing to use it, please, resign your account information. For further details see the attach. In order to read the attach you have to use the foll

[PHP] E-Mail validation – Checking for 'free' e-mail address

2003-12-18 Thread Jason Paul
Hello all Over at http://www.DNSstuff.com, they have a great tool to check whether an e-mail address is from a free (web-based) e-mail provider. I need to be able to perform this check from PHP code. However, the Terms and Conditions of http://www.DNSstuff.com prohibit me from writing a scraping s

Re: [PHP] E-mail Gateway

2003-11-18 Thread Robert Cummings
On Tue, 2003-11-18 at 02:19, Henrik Hudson wrote: > On Tuesday 18 November 2003 01:21, > "Jason Williard" <[EMAIL PROTECTED]> sent a missive stating: > > > 1) Use a cron job to execute a php script every x minutes. > > 2) Create a script where mail can be piped to. This is a method that I > > hav

Re: [PHP] E-mail Gateway

2003-11-18 Thread Jason Wong
On Tuesday 18 November 2003 15:21, Jason Williard wrote: > I am in the beginning phases of developing a support system. I would > like the program to be able to receiving and process e-mails. However, > I am at a loss as to where to start. [snip] > 2) Create a script where mail can be piped to.

Re: [PHP] E-mail Gateway

2003-11-18 Thread Henrik Hudson
On Tuesday 18 November 2003 01:21, "Jason Williard" <[EMAIL PROTECTED]> sent a missive stating: > 1) Use a cron job to execute a php script every x minutes. > 2) Create a script where mail can be piped to. This is a method that I > have used previously with a cgi app called PerlDesk. > > While I

[PHP] E-mail Gateway

2003-11-18 Thread Jason Williard
I am in the beginning phases of developing a support system. I would like the program to be able to receiving and process e-mails. However, I am at a loss as to where to start. The main roadblock, at this point, is how to best receive and process the e-mail. I have looked at 2 options. 1) Use

Re: [PHP] E-mail redirection....?

2003-01-10 Thread Marek Kilimajer
Your php scripts (or something else that will be called by your php script) needs to modify your smtp server (sendmail, qmail ...) configuration files. What needs to be actually done depends on the server used, and you should ask at the apropriate mailing list. If you are on a shared host, I dou

[PHP] E-mail redirection....?

2003-01-10 Thread Michal Stankoviansky
Hi I'm totally confused. What I need is the following: User registers and I need to create an e-mail alias for him, something like [EMAIL PROTECTED] If someone sends an e-mail to the above address, I need to redirect it to the user's real e-mail address. I'm totally lost...can this be done in

RE: [PHP] e-mail

2002-12-26 Thread James E Hicks III
Maybe you need to add the -f to your sendmail command? James -Original Message- From: Anil Garg [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 26, 2002 2:06 PM To: [EMAIL PROTECTED] Subject: [PHP] e-mail hi i found a 'formmail' scripts from somewhere.. the problem is...

Re: [PHP] e-mail

2002-12-26 Thread Paul Roberts
;[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, December 26, 2002 7:06 PM Subject: [PHP] e-mail hi i found a 'formmail' scripts from somewhere.. the problem isthe email which i get from this scripts has 'unprivilaged user' in the 'from' field

[PHP] e-mail

2002-12-26 Thread Anil Garg
hi i found a 'formmail' scripts from somewhere.. the problem isthe email which i get from this scripts has 'unprivilaged user' in the 'from' field. mail($form['recipient'], $form['sublect'],$mailbody, "From:Web User"); if i use this...in the from field..it says '[EMAIL PROTECTED]' I just nee

[PHP] E-mail a submit

2002-09-09 Thread Chuck \"PUP\" Payne
Hi, Is there a way that when someone add a submit or edits a record that I can have my php page e-mail that record? And is hard to do? Chuck Payne -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] e-mail to mysql database?

2002-08-12 Thread Justin French
YOu need to contact your host first. What you need is for the server to detect emails coming into a certain address, or with a certain subject line, and pass them over to a free-standing (ie not a browser-run) PHP script. The trick will NOT be the parsing of the text and inserting it into the DB

[PHP] e-mail to mysql database?

2002-08-12 Thread Frank Schellenberg
In Short: What I need is a php script that reads an email file and split its data to a mysql file. A bit longer if you are still interested For the following project: http://www.crossing-africa.com, a journey I am going to make on a bike. What are the plans: I am taking a satilite phone and

[PHP] E-mail via WAP

2002-05-26 Thread Rosen
Hi, can someone tell me is there a script for sending and receiving a mail via WAP ? Thanks, Rosen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] E-mail Confirmation script?

2002-05-12 Thread SP
Just make sure the url fits on one line in the email which mine doesn't. -Original Message- From: Andre Dubuc [mailto:[EMAIL PROTECTED]] Sent: May 12, 2002 5:06 PM To: SP Cc: [EMAIL PROTECTED] Subject: Re: [PHP] E-mail Confirmation script? Thanks, Now why didn't that ever o

Re: [PHP] E-mail Confirmation script?

2002-05-12 Thread r
From: "Andre Dubuc" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, May 12, 2002 1:36 PM Subject: [PHP] E-mail Confirmation script? > I've looked about for an 'Email Confirmation' script that many sites use for > verifcation of wannabee new

Re: [PHP] E-mail Confirmation script?

2002-05-12 Thread Andre Dubuc
t; > http://www.mysite.com/account.php > > > > > -Original Message- > From: Andre Dubuc [mailto:[EMAIL PROTECTED]] > Sent: May 12, 2002 4:36 PM > To: [EMAIL PROTECTED] > Subject: [PHP] E-mail Confirmation script? > > > I've looked about for an 'Em

RE: [PHP] E-mail Confirmation script?

2002-05-12 Thread SP
sword, changing personal info ... http://www.mysite.com/account.php -Original Message- From: Andre Dubuc [mailto:[EMAIL PROTECTED]] Sent: May 12, 2002 4:36 PM To: [EMAIL PROTECTED] Subject: [PHP] E-mail Confirmation script? I've looked about for an 'Email Confirmation'

[PHP] E-mail Confirmation script?

2002-05-12 Thread Andre Dubuc
I've looked about for an 'Email Confirmation' script that many sites use for verifcation of wannabee new members. That is, the person subscribes, is sent a 'confirmation' number to which they must have in the 'Subject' area of their reply. I would like to implement this on my site, but I have

Re: [PHP] e-mail list app

2002-03-25 Thread Dan Harrelson
Check out Ciao EmailList Manager: http://www.technobreeze.com/php/emaillist/ -Dan --- "Michael A. Peters" <[EMAIL PROTECTED]> wrote: > Anyone know of a free app that allows users to submit- > > name, nickname, e-mail addy > > app sends a url confirm to e-mail addy. > upon confirm, the info g

[PHP] e-mail list app

2002-03-25 Thread Michael A. Peters
Anyone know of a free app that allows users to submit- name, nickname, e-mail addy app sends a url confirm to e-mail addy. upon confirm, the info gets stored in a mysql database with the email encrypted. addresses should only be decryptable with a key that does not need to be stored on the mach

[PHP] E-mail Spyder Software

2002-02-21 Thread Ben Clumeck
I know this is not a PHP question but would really appreciate comments regarding experiences with the software E-mail Spyder or any other experiences with other software. Thanks, Ben -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] E-mail Uploaded File

2001-12-11 Thread Jason Murray
> Is there a short easy mail script that can take an uploaded > file from a form and have it e-mailed to me? http://planetkiller.shadow.net.au/mime-php.txt This will show you how to send an attachment in an email without messing around with classes (which I could never get to work, hence I roll

[PHP] E-mail Uploaded File

2001-12-11 Thread Ben Clumeck
Is there a short easy mail script that can take an uploaded file from a form and have it e-mailed to me? Please let me know. Ben -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list a

RE: [PHP] e-mail confirmation #76215525

2001-07-27 Thread Michael Geier, CDM Systems Admin
hahahaha... -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, July 27, 2001 9:51 AM To: [EMAIL PROTECTED] Subject: [PHP] e-mail confirmation #76215525 This is a confirmation e-mail for your request. You can come anytime and claim your FREE Sex Toys at

[PHP] e-mail confirmation #76215525

2001-07-27 Thread julie15525
This is a confirmation e-mail for your request. You can come anytime and claim your FREE Sex Toys at http://www.freevibrator.com All Free Sex Toys we feature are absolutly free with no purchase necessary whatsoever. (Small reasonable shipping charges apply) Thank You for subscribing to FreeSex

[PHP] e-mail varification problems.

2001-03-14 Thread Kenneth R Zink II
I got the following code in a script I'm testing, but it seams to not verify all good e-mail address as valid. echo "old email = ".$row[email].""; if (ereg("^([a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+(\.[a-zA-Z0-9_-])+" or "^([a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+(\.[a-zA-Z0-9_-])+(\.[a-zA-Z0-9_-])+",$email)){

Re: [PHP] E-mail Validation Question

2001-02-18 Thread Nuno Silva
Jeff Oien wrote: > Just a curiosity. I installed and tested Manuel Lemos's > PHP E-mail validation class. When I entered an address > at the @wi.rr.com domain, no matter what I put before > the domain, it would come back as valid. (That's the > Wisconsin domain for

Re: [PHP] E-mail Validation Question

2001-02-17 Thread Manuel Lemos
Hello Jeff, On 17-Feb-01 21:49:42, you wrote: >Just a curiosity. I installed and tested Manuel Lemos's >PHP E-mail validation class. When I entered an address >at the @wi.rr.com domain, no matter what I put before >the domain, it would come back as valid. (That's the >

[PHP] E-mail Validation Question

2001-02-17 Thread Jeff Oien
Just a curiosity. I installed and tested Manuel Lemos's PHP E-mail validation class. When I entered an address at the @wi.rr.com domain, no matter what I put before the domain, it would come back as valid. (That's the Wisconsin domain for Road Runner cable service.) But when I tr

[PHP] E-mail valid

2001-02-01 Thread Brandon Orther
Hello, Does anyone have a function that tells you weather a variable holds a valid e-mail address or not? Thank you, Brandon Orther WebIntellects Design/Development Manager [EMAIL PROTECTED] 800-994-6364 www.webintellects.com

Re: [PHP] E-mail valid

2001-02-01 Thread Sean Cazzell
> Does anyone have a function that tells you weather a variable holds a valid > e-mail address or not? It depends on what you mean by "valid email address". For example, I can enter "[EMAIL PROTECTED]" which looks valid, but doesn't exist. You can take things a step further and lookup the domai

Re: [PHP] E-mail valid

2001-02-01 Thread Chris Aitken
Does anyone have, or know of a script which simulates what Apache gives out when it shows the entire contents of a directory ? I find it very handy to use the directory listing of say graphics directories and the like, but I dont want others looking into them. What I thought would be a good

Re: [PHP] E-mail valid

2001-01-31 Thread Josh G
- Original Message - From: "Chris Aitken" <[EMAIL PROTECTED]> To: "PHP User Group" <[EMAIL PROTECTED]> Sent: Thursday, February 01, 2001 4:03 PM Subject: Re: [PHP] E-mail valid > > > Does anyone have, or know of a script which simulates what Apache give