i use validation in model like this
'email' => array( //'UniqueMail'=>array('rule' => array('checkEmailUnique', 'email' ),'message' => 'mail is used'), 'email'=>array('rule' => 'email','message' => 'mail not valid'), 'notEmpty'=>array('rule' => 'notEmpty','message' => '*'), )
and this validation for field email but in some other form idon't want to check the unique mail validation . how i can do this
regards