Bugzilla: Email::MIME::Modifier module is missing

I have recently update FreeBSD system and have encountered a problem with Bugzilla 3.2.2 and perl 5.8.9

After running checksetup.pl I’ve got the message, that required module Email::MIME::Modifier is missing and script suggested me to install it with the following command:

/usr/bin/perl -MCPAN -e ‘install “Email::MIME::Modifier”‘

I did it several times, but nothing happened. After some digging I found that the real culprit is a missing dependency from Email::MIME::Modifier to Email::MessageId.

So, you have to run the following command:

/usr/bin/perl -MCPAN -e ‘install “Email::MessageID”‘

or I prefer to use ports:
mail/p5-Email-MessageID

And everything will be just fine.

Leave a Reply