Warning: include_once(/home/tabrez/www/talk/mtrefsearch.php) [function.include-once]: failed to open stream: No such file or directory in /home/tabrezsyed/mandalivia.com/talk/archives/000216.php on line 118
Warning: include_once() [function.include]: Failed opening '/home/tabrez/www/talk/mtrefsearch.php' for inclusion (include_path='.:/usr/local/lib/php:/usr/local/php5/lib/pear') in /home/tabrezsyed/mandalivia.com/talk/archives/000216.php on line 118
August 16, 2002
Doh! Outlook
Guess what? If you turn on Outlook Junk mail filtering then it uses an "algorithm" to determine if an email is junk. The algorithm appears to be:
if(!strstr(subject,"Free") && !strstr(subject,"!"))
junk = true;
if(strstr(subject,"Free") && strstr(subject,"!"))
junk=true;
mea culpa
Essentially if the subject contains "Free" and the "!" then its junk.
So please don't send me email with the subject "Free Stuff!"
Comments
Is it me, or is it because you're no longer a developer? Your code is buggy (which must the case with Outlook too :)
if (strstr(subject,"Free") && strstr(subject,"!"))
junk = true;
Sorry but I had to post this.
Posted by: on August 16, 2002 05:16 PMPost a comment