Error on Email Plugin Install

This plugin allows you to report an issue in MantisBT by sending an email to a particular mail account

Moderators: Developer, Contributor

Post Reply
kapee
Posts: 4
Joined: 03 Feb 2026, 06:43

Error on Email Plugin Install

Post by kapee »

I am trying to install the emailreporting plugin and getting the following error when i try to install

'define(): Argument #3 ($case_insensitive) is ignored since declaration of case-insensitive constants is no longer supported' in '/var/www/mantisbt/plugins/EmailReporting/core_pear/Net/POP3.php' line 56

After removing the 3 variable from these now the page is not working at all

define('NET_POP3_STATE_DISCONNECTED', 1, true);
define('NET_POP3_STATE_AUTHORISATION', 2, true);
define('NET_POP3_STATE_TRANSACTION', 4, true);

to the following

define('NET_POP3_STATE_DISCONNECTED', 1);
define('NET_POP3_STATE_AUTHORISATION', 2);
define('NET_POP3_STATE_TRANSACTION', 4);

the Login Page does not even show up

Any support would be appreciate
SL-Gundam
Posts: 763
Joined: 06 Jul 2011, 14:17

Re: Error on Email Plugin Install

Post by SL-Gundam »

This was fixed here: https://github.com/mantisbt-plugins/Ema ... 7d377ae511

I suggest updating to EmailReporting 0.11.0-DEV
Go here: https://github.com/mantisbt-plugins/EmailReporting
Click on "<> code" and "download zip"
Post Reply