AND is a PHP logical operator.
($config === NULL) and $config = Kohana::config('email');
has equivalent outcome (but has a lesser operator precedence) to
($config === NULL) && $config = Kohana::config('email');
Personally, to avoid any confusion I would use your second approach.