In my experience, Naive Bayes classifiers, once properly trained, are usually astonishingly accurate; the most sensitive dependence is on feature selection.
So, before optimizing by Boosting, etc., i expect you'll see a much more substantial performance boost by first optimizing your document parser; next i suggest looking a the probability calculations at the heart of the algorithm.
Data Processing/Feature Selection:
I don't know anything about the documents you are classifying or which features you are using, so i'll use examples from the most common NBC application, spam detection, though i'll try to generalize as much as possible.
So look at your parser--how does it process your documents to feed to the NBC? The most common way is probably just to parse each document on word boundaries, to reduce the document to a list of words. This list of words then, comprises your features set that the classifier is trained on.
This often works ok, but if you just consider the spam example, you can quickly see how it fails and just as quickly you can see how to improve it. For instance, above-average spam filters have nuanced features like: frequency of words in all caps, frequency of words in title, and the occurrence of exclamation point in the title. In addition, the best features are often not single words but e.g., pairs of words, or larger word groups.
Specific Classifier Optimizations:
Instead of 30 classes use a 'one-against-many' scheme--in other words, you begin with a two-class classifier (Class A and 'all else') then the results in the 'all else' class are returned to the algorithm for classification into Class B and 'all else', etc.
The Fisher Method (This is perhaps the most common way to optimize a Naive Bayes classifier.) An NBC uses the feature probabilities to construct a 'whole-document' probability. The Fisher Method calculates the probability of a category for each feature of the document then combines these feature probabilities and compares that combined probability with the probability of a random set of features. In addition, this technique gives you significantly more flexibility when selecting category boundaries.