Search found 21 matches

by NT
16 Feb 2008, 08:25
Forum: Customizations
Topic: Drupal Integration - any ideas ?
Replies: 21
Views: 44639

Re: Drupal Integration - any ideas ?

Hi What level of integration is required ? a) just automatic login/logoff from mantis when you login/logoff from Drupal. b) automatic creation of a user account in mantis to match the one in Drupal, with changes in user profile (name,email address) fed back to mantis. c) mantis using Drupal user tab...
by NT
14 Jan 2008, 13:24
Forum: Help
Topic: Colors Firefox v IE 6
Replies: 2
Views: 3113

Re: Colors Firefox v IE 6

Hi You need to put a '#' in front of the numbers. My status color codes from my 'config_inc.php' are :- # --- status color codes ---------- # $g_status_colors = array( 'new' => '#ffa0a0', # red, 'feedback' => '#ffffb0', # yellow 'acknowledged' => '#ffffb0', # yellow 'confirmed' => '#ff50a8', # purpl...
by NT
22 Nov 2007, 22:05
Forum: General Discussion
Topic: Report a bug via email
Replies: 56
Views: 73054

Re: Report a bug via email

Hi

Put your logon to the POP3 server in POP3_ACCOUNT.
The mantis account has already been set using $g_mail_reporter in your configuration file.

Nick
by NT
09 Nov 2007, 20:32
Forum: Help
Topic: Provider header information from emails
Replies: 3
Views: 2553

Re: Provider header information from emails

$t_mail_user_reporter is set at the top of function mail_get_user:- # return the user id for the mail reporting user function mail_get_user ($p_mailaddress) { $t_mail_use_reporter = config_get( 'mail_use_reporter' ); $t_mail_auto_signup = config_get( 'mail_auto_signup' ); $t_mail_reporter = config_g...
by NT
09 Nov 2007, 13:47
Forum: Help
Topic: Provider header information from emails
Replies: 3
Views: 2553

Re: Provider header information from emails

try setting

$g_mail_save_from = ON;

It gave me a line at the top of the issue Description like:-
Report from: "aaaaaa" <username@aaaaaa.xxx.yyy.zzz.com>

not great you could alter it in mail_api.php.

Nick
by NT
02 Nov 2007, 21:07
Forum: Help
Topic: See a file (.jpg) in a Reported Issue
Replies: 1
Views: 2207

Try setting $g_preview_attachments_inline_max_size in config_inc.php

$g_preview_image_extensions, $g_preview_max_width, $g_preview_max_height may also be set.

see the manual or config_defaults_inc.php for details.

Nick