I am looking at how naive Bayes works and I see that it goes over all the classes and finds the probability that maximizes: $\log(\operatorname{Pr}[Y=y]) + \sum_{i=1}^d \log(\operatorname{Pr}[X_i=x_i|Y=y])$ So it looks like the probability for each feature is calculated separately.
So, my question is, is it possible that the distribution for each feature will be different? (For example $x_1\sim N(0,1)$ and $x_2\sim\mbox{Laplace}(\mu, b) $?