Search found 340 matches

by mushu
12 Jul 2022, 16:55
Forum: Help
Topic: How can I filter viewed tickets by status?
Replies: 2
Views: 1087

How can I filter viewed tickets by status?

mantis 2.25.2

I'd like to filter out the deferred tickets from my visible tickets on the main screen, is there a way to do that?
by mushu
30 Jun 2022, 23:25
Forum: EmailReporting
Topic: Trying to get O365 workaround working but don't know php
Replies: 5
Views: 39652

Re: Trying to get O365 workaround working but don't know php

I believe I've got it all working! Code changes I made ended up being simple: In mail_api.php private function process_pop3_mailbox() { # added these following three lines of code $_argv1 = file_get_contents( "EmailFileName.txt", FALSE ); # grab filename of email message text $t_msg = file...
by mushu
30 Jun 2022, 16:52
Forum: EmailReporting
Topic: Trying to get O365 workaround working but don't know php
Replies: 5
Views: 39652

Re: Trying to get O365 workaround working but don't know php

So, my problem with losing the command-line parameter is stupid and I'm blind. I am calling the bug_report_mail.php script but EDITING THE CODE in mail_api.php which means that the script I'm calling isn't passing the arguments on to the one I'm editing. Duh. One problem solved... EDIT: so in bug_re...
by mushu
30 Jun 2022, 16:29
Forum: EmailReporting
Topic: Trying to get O365 workaround working but don't know php
Replies: 5
Views: 39652

Re: Trying to get O365 workaround working but don't know php

Thanks so much! Will do this this morning and post the results...or the errors lol. EDIT: however, do you know why the command-line parameter $argv[1] is blank? it is there up higher in the script, so something in PHP or the script code is clearing that out. I don't know PHP to know what to look for...
by mushu
29 Jun 2022, 23:55
Forum: EmailReporting
Topic: Trying to get O365 workaround working but don't know php
Replies: 5
Views: 39652

Trying to get O365 workaround working but don't know php

Windows, Mantis 2.25.2, EmailReporting 0.10.1 So I'm trying to trick the bug_report_mail.php script into thinking it is connecting to a mail server and reading a new message from the inbox. I commented out the code in private function process_pop3_mailbox() and added the following code instead: echo...
by mushu
27 Jun 2022, 14:32
Forum: General Plugin Discussion
Topic: Email output could be much prettier
Replies: 72
Views: 196984

Re: Email output could be much prettier

Thank you! We may not be using Mantis shortly, sadly, since I cannot get it to support OAuth because everything here has been moved to Azure and we no longer are allowed on-prem mailboxes. Since there appears to be a google OAuth plugin for Mantis I'm trying to see if they will allow us to forward t...
by mushu
23 Jun 2022, 21:05
Forum: General Plugin Discussion
Topic: Email output could be much prettier
Replies: 72
Views: 196984

Re: Email output could be much prettier

Outlook 2016 on Windows 10 The HTML entered in a ticket note was this: Example HTML output: <meta property="og:image:alt" content="A shiny red apple with a bite taken out" /> And the email output in Outlook looks like this: mantis-email-template-html.JPG You can see in the screen...
by mushu
23 Jun 2022, 18:47
Forum: General Plugin Discussion
Topic: Email output could be much prettier
Replies: 72
Views: 196984

Re: Email output could be much prettier

So not sure where to report a bug for this new (awesome!) template system. The notes being sent in email need to have any HTML escaped because they won't display, in Outlook at least, and that means that Outlook is open to someone putting nastiness in HTML code and then it will execute in the mail c...
by mushu
23 Jun 2022, 16:23
Forum: Help
Topic: Mantisbt Email notification will not work in Microsoft exchange Modern authentication
Replies: 5
Views: 2294

Re: Mantisbt Email notification will not work in Microsoft exchange Modern authentication

We are not able to turn off security on any O365 accounts. I have been trying to see what needs to be changed in the code for EmailReporting plugin but it does not seem to be easy to pipe a text file of the email message to that plugin. Trying to "fake" it out so it thinks it is getting a ...
by mushu
16 Jun 2022, 19:08
Forum: EmailReporting
Topic: Exchange Online (Office365) email issues?
Replies: 17
Views: 36238

Re: Exchange Online (Office365) email issues?

Found this but even Wayback Machine doesn't have it, anyone happen to have the code for this? https://www.mantisbt.org/bugs/view.php?id=11219

EDIT: think this is it: https://sourceforge.net/projects/helios ... /MantisBt/
by mushu
16 Jun 2022, 18:55
Forum: EmailReporting
Topic: Exchange Online (Office365) email issues?
Replies: 17
Views: 36238

Re: Exchange Online (Office365) email issues?

I was talking to our network admins about that very thing just a few minutes ago lol. They don't think the "big bosses" will allow us to run a "rogue" mailer. otherwise you're right, it would solve this problem by just setting up a forward from the O365 mailbox to our internal ma...
by mushu
16 Jun 2022, 18:11
Forum: EmailReporting
Topic: Exchange Online (Office365) email issues?
Replies: 17
Views: 36238

Re: Exchange Online (Office365) email issues?

Learned a bit more. Apparently if the mailbox is on premises (on-prem) then EmailReporting will work just fine. But when the mailbox is migrated to "the cloud" in O365, it requires MFA/2FA and Mantis does not have that authentication method built in. The POP3/IMAP method will no longer acc...
by mushu
14 Jun 2022, 18:30
Forum: EmailReporting
Topic: O365 (with app-password) issue
Replies: 11
Views: 12628

Re: O365 (with app-password) issue

Well, the disk file literally grabs every byte from the server and stuffs it into a file. The Mantis plugin wouldn't really know that it wasn't getting the data from a server unless it grabs each message one-by-one, or queries the server for how many messages to expect, or stuff like that. EDIT: her...
by mushu
13 Jun 2022, 22:30
Forum: EmailReporting
Topic: O365 (with app-password) issue
Replies: 11
Views: 12628

Re: O365 (with app-password) issue

Wondering how difficult it would be to get EmailReporting to be able to be "piped" email messages from a text file on disk instead of having it connect to a mail server? Since I don't know PHP it would take me a long time of trial/error to figure out how to do this and we only have until t...