Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Enhanced AppleScript rule to check Mail against blackhole lists' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Enhanced AppleScript rule to check Mail against blackhole lists
Authored by: DaveCC on May 28, '03 08:04:39PM

Excellent, just the sort of more intelligent IP Parsing I was looking for (but wasn't good enough with AppleScript to do myself).

Is there a Typo with this line:
if (HeaderStart2 ? 0) then

As this does not compile. Haven't been able to try it out because of this.

Dave C

---
I'm much calmer now that I don't use WinBlow$ anymore.



[ Reply to This | # ]
Enhanced AppleScript rule to check Mail against blackhole lists
Authored by: msk on May 29, '03 02:07:17PM

Side effect of pasting AppleScript into these windows--some of the characters get messed up. In this case the character is do not equals (option-= on a Mac keyboard).

I sent Dave the actual script compressed in a StuffIt file and when I remember I'll post the code at <http://users.starpower.net/mkluskens/eims/>.



[ Reply to This | # ]
Enhanced AppleScript rule to check Mail against blackhole lists
Authored by: msk on May 29, '03 04:58:11PM

The > character can also be used in that location, as in:

set HeaderStart2 to the (offset of ":" in Header2)
if (HeaderStart2 > 0) then
set HeaderName2 to (characters 1 thru HeaderStart2 of Header2) as string



[ Reply to This | # ]