# File lib/god/condition.rb, line 23
    def self.valid?(condition)
      valid = true
      if condition.notify
        begin
          Contact.normalize(condition.notify)
        rescue ArgumentError => e
          valid &= Configurable.complain("Attribute 'notify' " + e.message, condition)
        end
      end
      valid
    end