Search found 722 matches

by SL-Gundam
13 Mar 2023, 21:27
Forum: EmailReporting
Topic: Update from 2.25.2 to 2.25.6 causes white screen on issue delete
Replies: 9
Views: 59998

Re: Update from 2.25.2 to 2.25.6 causes white screen on issue delete

You can always push the desired changes yourself.
Incomplete changes could also be helpful since other could provide further input or finish the work.
by SL-Gundam
13 Mar 2023, 21:20
Forum: EmailReporting
Topic: Update from 2.25.2 to 2.25.6 causes white screen on issue delete
Replies: 9
Views: 59998

Re: Update from 2.25.2 to 2.25.6 causes white screen on issue delete

Just to be sure i checked the requirements for 2.25.
They are still PHP 5.5.x.
So maybe updating EmailReporting is enough.
by SL-Gundam
13 Mar 2023, 21:11
Forum: EmailReporting
Topic: Update from 2.25.2 to 2.25.6 causes white screen on issue delete
Replies: 9
Views: 59998

Re: Update from 2.25.2 to 2.25.6 causes white screen on issue delete

I'm failing to reproduce this on MantisBT 2.26.0-dev and EmailReporting 0.11.0-DEV Please update to EmailReporting 0.11.0-DEV and see whether it still happens. Also MantisBT seems to request a minimum of PHP 7.0 https://www.mantisbt.org/docs/master/en-US/Admin_Guide/html-desktop/#admin.install.requi...
by SL-Gundam
18 Feb 2023, 02:04
Forum: EmailReporting
Topic: EmailReporting sets closed issues to Assigned no matter what we do
Replies: 4
Views: 37144

Re: EmailReporting sets closed issues to Assigned no matter what we do

I checked the code a bit more and my earlier comment is incorrect. Function bug_reopen is used in both versions mentioned. Function bug_reopen is used when bug_is_resolved. What is your setting for "bug_resolved_status_threshold"? Please check whether there are any project level settings t...
by SL-Gundam
18 Feb 2023, 00:27
Forum: EmailReporting
Topic: EmailReporting sets closed issues to Assigned no matter what we do
Replies: 4
Views: 37144

Re: EmailReporting sets closed issues to Assigned no matter what we do

EmailReporting 0.11.0-DEV is using the bug_reopen function. So it uses MantisBT code to do this. MantisBT would do exactly the same if you did the action through the MantisBT web interface. EmailReporting 0.10.1 uses the MantisBT code from MantisBT 1.3.x. The function bug_reopen did not exist at tha...
by SL-Gundam
12 Jan 2023, 18:47
Forum: EmailReporting
Topic: Keeps inserting unassigned tickets upon server command.
Replies: 1
Views: 18551

Re: Keeps inserting unassigned tickets upon server command.

Do you let email delete the emails after processing?
Are you using IMAP or POP3?

It should work as mentioned here: https://www.mantisbt.org/wiki/doku.php/ ... ilbox_type
by SL-Gundam
12 Jan 2023, 18:45
Forum: EmailReporting
Topic: CRON Errors
Replies: 3
Views: 12797

Re: CRON Errors

EmailReporting does not use an SMTP server. EmailReporting uses a POP3 or IMAP server. You can increase error reporting in MantisBT by adding the following to config_inc.php. $g_show_detailed_errors = ON; $g_display_errors = array( E_RECOVERABLE_ERROR => DISPLAY_ERROR_HALT, E_WARNING => DISPLAY_ERRO...
by SL-Gundam
21 Dec 2022, 14:26
Forum: EmailReporting
Topic: CRON Errors
Replies: 3
Views: 12797

Re: CRON Errors

This one ... https://animap.us/plugin.php?page=EmailReporting/EmailReporting/bug_report_mail ... Should be https://animap.us/plugin.php?page=EmailReporting/bug_report_mail It should at the very least show this when run Start checking all mailboxes: Wednesday 21st of December 2022 15:25:06 Done check...
by SL-Gundam
08 Dec 2022, 20:23
Forum: EmailReporting
Topic: Auto assign issue for selected user
Replies: 1
Views: 11951

Re: Auto assign issue for selected user

MantisBT supports autoassign based categories.
Make sure the mailbox in EmailReporting has that category assigned for the right project and it should work.
by SL-Gundam
08 Dec 2022, 20:22
Forum: EmailReporting
Topic: Microsoft Graph-API Email
Replies: 1
Views: 14743

Re: Microsoft Graph-API Email

Willing to have a look absolutely
What does html2text improve on compared to Markdownify and simple_html_dom?
by SL-Gundam
18 Nov 2022, 21:38
Forum: EmailReporting
Topic: Is EmailReporting-0.11.0 ready for release?
Replies: 5
Views: 35003

Re: Is EmailReporting-0.11.0 ready for release?

EmailReporting-0.11.0 is ready and stable. Just has not been officially released.
Office365 does not work anymore though because of a lack of modern authentication support on the EmailReporting side
by SL-Gundam
18 Nov 2022, 21:34
Forum: EmailReporting
Topic: Help needed with EmailReporting connection
Replies: 1
Views: 24879

Re: Help needed with EmailReporting connection

Based on the errors i would say that the exchange pop3 service is disabled (either on server or user level): https://learn.microsoft.com/en-us/exchange/clients/pop3-and-imap4/configure-pop3?view=exchserver-2016 Use a normal mail client to test and make sure. If a normal mail client can connect witho...
by SL-Gundam
23 Oct 2022, 13:26
Forum: EmailReporting
Topic: OAuth2 email authentication method needed
Replies: 31
Views: 163528

Re: OAuth2 email authentication method needed

I tried getting this working but it seems that because EmailReporting is still using PEAR Imap packages and not the PHP Imap extension this is problematic. EmailReporting code first needs to be changed so that it uses the PHP Imap extension. After that support can be added for OAuth. So i'm sorry th...
by SL-Gundam
20 Jul 2022, 12:59
Forum: EmailReporting
Topic: OAuth2 email authentication method needed
Replies: 31
Views: 163528

Re: OAuth2 email authentication method needed

EmailReporting uses an older PHP PEAR Net_IMAP package.
So it's not as easy as renaming a couple functions.
But thanks for this. It should help future development.