Error on Email Plugin Install
Posted: 06 Feb 2026, 20:00
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
'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