Search found 226 matches

by istvanb
13 Mar 2012, 15:04
Forum: Help
Topic: MantisBT 1.2.8 will not send notification email
Replies: 16
Views: 17124

Re: MantisBT 1.2.8 will not send notification email

I think I went thru this... without remembering the solution. I would consider this as a bug though. Somewhat similar: http://www.mantisbt.org/bugs/view.php?id=6598 Can you check the checkbox "status change - new" as well? I am wondering if you get an email then since the auto assigned iss...
by istvanb
13 Mar 2012, 15:00
Forum: Help
Topic: MantisBT 1.2.8 will not send notification email
Replies: 16
Views: 17124

Re: MantisBT 1.2.8 will not send notification email

Cool! But dont call it administrator. Admin account is for administering the site itself. Call it supervisor, or even manager and assign the proper credentials on a project basis. Later if you use mantis often you will see whats the benefit of this, but even if you dont get it now, its better to use...
by istvanb
13 Mar 2012, 14:51
Forum: Help
Topic: MantisBT 1.2.8 will not send notification email
Replies: 16
Views: 17124

Re: MantisBT 1.2.8 will not send notification email

Try this: create a new issue without auto-assign and then assign it to "pitto". Check if admin receives a mail. If so then it means the auto assign option doesnt trigger a "status change - assigned". Worth to try.

I think (but not sure at all) I have faced this issue earlier.
by istvanb
13 Mar 2012, 14:46
Forum: Help
Topic: MantisBT 1.2.8 will not send notification email
Replies: 16
Views: 17124

Re: MantisBT 1.2.8 will not send notification email

Try to set it at manage/manage configuration/email notifications.

Also sending emails to the admin will end up flooding the admin mailbox. (not an issue if there only very limited number of issues are submitted, or for experimental purposes, but not recommended on the long run)
by istvanb
13 Mar 2012, 08:39
Forum: Help
Topic: Notifications on new bug
Replies: 2
Views: 2915

Re: Notifications on new bug

Try to set it at manage/manage configuration/email notifications You will face troubles if you want to notify the reporters as well, since by default every user is a reporter in every project, which means EVERYBODY will recieve mails about the new issue even if they would never use that given project.
by istvanb
13 Mar 2012, 07:25
Forum: Help
Topic: Deny access to a project on a user basis
Replies: 2
Views: 4318

Deny access to a project on a user basis

I am wondering if I can restrict the visibility of certain projects on an user basis. My idea was to create a new user credentials called "none". $g_access_levels_enum_string = '1:none,10:viewer,25:reporter,40:updater,55:developer,70:manager,90:administrator'; $s_access_levels_enum_string ...
by istvanb
12 Mar 2012, 12:36
Forum: Help
Topic: Change assigned to when user is disabled
Replies: 14
Views: 10785

Re: Change assigned to when user is disabled

Oh I see... sorry about that. I have a testbox only, with very limited amount of users, so I saw the disabled user as well, but never tried to filter. Yeah... its a legit problem. Try the scripts written by Cas, most likely they will work. Worst case scenario, enable the user until you assign his/he...
by istvanb
12 Mar 2012, 09:33
Forum: Help
Topic: Reading default language of email recipient
Replies: 1
Views: 2344

Re: Reading default language of email recipient

I think this could help. This is coming from the account_pref_update.php

$f_user_id = gpc_get_int( 'user_id' );
$t_prefs = user_pref_get( $f_user_id );


then

echo($t_prefs->language);

will give you the language of the current user.
by istvanb
09 Mar 2012, 09:53
Forum: Help
Topic: Attaching files when changing state?
Replies: 0
Views: 2683

Attaching files when changing state?

In our environment most of the times we have to attach files right when we moving the issues to a new state. I am wondering if there is a way to make the attach file field visible there as well?
by istvanb
07 Mar 2012, 20:32
Forum: Help
Topic: Custom Form for Reporter role
Replies: 2
Views: 3570

Re: Custom Form for Reporter role

You have to modify the source code to do this.
by istvanb
07 Mar 2012, 12:40
Forum: Help
Topic: Change assigned to when user is disabled
Replies: 14
Views: 10785

Re: Change assigned to when user is disabled

I am not able to reproduce your problem. I had no issues at all to select the issues with the checkboxes. Try this: 1, select a certain project 2, filter the issues for the disabled user 3, select all the issues (again, I dont understand why would you have a problem with that) 4, click assign You ha...
by istvanb
07 Mar 2012, 08:44
Forum: Help
Topic: Change assigned to when user is disabled
Replies: 14
Views: 10785

Re: Change assigned to when user is disabled

I am not aware of any automation which does that for you. What you can do is to list all the issues assigned to the disabled user, hit the select all checkbox, and select "move" in the pull down menu. Then you can move all the issues in one go, which is not too bad. (I guess you have to ha...
by istvanb
05 Mar 2012, 17:46
Forum: Help
Topic: Prevent "Reporter" to ReOpen Bug
Replies: 2
Views: 2860

Re: Prevent "Reporter" to ReOpen Bug

1, Log in as admin
2, Click Manage
3, Click Manage Configuration
4, Click Workflow thresholds
5, Uncheck the "Allow Reporter to re-open Issue" checkbox

Make sure you apply this on the "all project" if you want this to be a global rule.
by istvanb
01 Mar 2012, 15:31
Forum: Help
Topic: Tickets list and ticket creation by anonymous - possible?
Replies: 2
Views: 2917

Re: Tickets list and ticket creation by anonymous - possible

Yes ,its possible. You should create a user with reporter credentials and then add the following lines to your config_inc.php

$g_allow_anonymous_login = ON;
$g_anonymous_account = 'the username you have created';

Its possible, I find it somewhat dangerous though.
by istvanb
29 Feb 2012, 14:29
Forum: Help
Topic: What is "feedback" status for
Replies: 2
Views: 6189

Re: What is "feedback" status for

thx, I will try how it works.