Search found 9 matches

by Nycto
01 Nov 2007, 15:48
Forum: Customizations
Topic: My view question
Replies: 4
Views: 6581

I have recently posted a patch to accomplish this:

http://www.mantisbt.org/bugs/view.php?id=7840
by Nycto
30 Oct 2007, 15:49
Forum: Help
Topic: N/A value for $g_default_bug_reproducibility
Replies: 2
Views: 3028

Code: Select all

# Default bug reproducibility when reporting a new bug
$g_default_bug_reproducibility = REPRODUCIBILITY_NOTAPPLICABLE;
by Nycto
30 Oct 2007, 15:46
Forum: Help
Topic: recipients=() - No mails from mantis
Replies: 1
Views: 2555

There shouldn't be quotes around the values for two of those settings you listed. They should be:

$g_phpMailer_method = 0;
$g_email_receive_own = ON;


Also, try playing with this setting to help with debugging:

# Used for debugging e-mail feature, when set to OFF the emails work as normal ...
by Nycto
24 Oct 2007, 15:57
Forum: Help
Topic: Getting Password Reset and Signup Emails, but no other.
Replies: 4
Views: 3702

Mantis has a handy e-mail log that will tell you what events are being triggered, who e-mails are being sent to, who they aren't being sent to and why. Add this to your config:


$g_log_level = LOG_EMAIL | LOG_EMAIL_RECIPIENT;
$g_log_destination = "emailEvents.log";


From there, it should be ...
by Nycto
24 Oct 2007, 15:54
Forum: General Discussion
Topic: Looking for Mantis "Best Practices" Guide
Replies: 3
Views: 5742

This doesn't cover all the topics you're asking about, but they are good reads as far as bug reporting goes:

How to Report Bugs Effectively:
http://www.chiark.greenend.org.uk/~sgtatham/bugs.html

Mozilla's Bug writing guidelines:
http://developer.mozilla.org/en/docs/Bug_writing_guidelines

PHPs ...
by Nycto
23 Oct 2007, 18:01
Forum: Customizations
Topic: Custom 'My View'
Replies: 1
Views: 5217

I cleaned this up a bit, added a few configuration settings and submitted it as a patch. You can download the necessaries from the ticket:

http://www.mantisbt.org/bugs/view.php?id=7840
by Nycto
18 Oct 2007, 21:07
Forum: Customizations
Topic: Custom 'My View'
Replies: 1
Views: 5217

Custom 'My View'

After posting another snippet I coded while setting up Mantis for my company, I thought I would isolate and share a cooler one: a customized "My View" page.

This patch has not been stress tested, so don't freak out if you run in to bugs. I wouldn't be surprised if they exist.

It has been tested on ...
by Nycto
18 Oct 2007, 15:33
Forum: Customizations
Topic: Full name in bugassign box
Replies: 1
Views: 3675

Add this to your config file:

Code: Select all

$g_show_realname = ON;
this will work in 1.1.0rc1, I have not tested it in earlier versions.
by Nycto
17 Oct 2007, 20:37
Forum: Customizations
Topic: Email when Moved
Replies: 2
Views: 5137

Email when Moved

I am implementing Mantis for my company right now, and I thought I would share a snippet we needed.

Basically, I added a flag to email people when a bug is moved.

If you're curious about the practical application, here is why:
To make sure bugs go through the right people, we had to tighten down ...