I'm trying to create an application to keep an eye on some email servers I 
have and alert me if they stop responding.  It's working, but I'm going 
*crazy*!


Try this from the Rebol prompt

a1: [ a: "aaa" b: "bbb" ]

a2: [
        fox: "fox"
        box: "box"
]

find a1 a
== none

find a2 box
== [ "box"
]

This is crazy.

My other craziness is that a key (host:) can't be found (as in FIND) in a 
block, but a key named host2 can be.

        [
                scheme: 'pop
                user: "brad"
                pass: "wort"
                host: "mail.aneusdamith.com"
                alert: [EMAIL PROTECTED]
                host2: "mail.aneusdamith.com"
        ]

I end up with the duplicate host2 so I can know the host's name if there is 
an error connecting.  The random'ish behavior is so frustrating.

Brad Emerson

Reply via email to