Re: [rt-users] Use of Bcc field?

2009-05-29 Thread Fran Fabrizio
Jo Rhett wrote: > Simple. You get one notification for being the owner. You get > another for being a watcher of the queue, which is the Bcc message. > There's no way to avoid that I've found. The queue has no watchers in this case. The problem does seem to have disappeared since the upgrade

Re: [rt-users] Custom action - http://wiki.bestpractical.com/view/AutoCcOwner

2009-05-29 Thread Gavin Henry
2009/5/29 Ruslan Zakirov : > 1) may be you forgot to set action to "user defined" Nope, checked that. > 2) RT::User->new(); should be called with current user: RT::User->new( > $self->TicketObj->CurrentUser ); OK, changed. > 3) you don't check any errors For example? Should they be more wrappe

Re: [rt-users] sending notification with values of cutom fields

2009-05-29 Thread Ruslan Zakirov
http://wiki.bestpractical.com/view/Template On Fri, May 29, 2009 at 6:18 PM, hanane ourdani wrote: > hi all, > > is it possible to send a notification with a value of cutom field, > > thank you > > ___ > http://lists.bestpractical.com/cgi-bin/mailman/li

Re: [rt-users] Custom action - http://wiki.bestpractical.com/view/AutoCcOwner

2009-05-29 Thread Ruslan Zakirov
1) may be you forgot to set action to "user defined" 2) RT::User->new(); should be called with current user: RT::User->new( $self->TicketObj->CurrentUser ); 3) you don't check any errors On Sat, May 30, 2009 at 1:59 AM, Gavin Henry wrote: > Hi, > > Should this work on 3.8.3? > > I'm trying it wit

[rt-users] Custom action - http://wiki.bestpractical.com/view/AutoCcOwner

2009-05-29 Thread Gavin Henry
Hi, Should this work on 3.8.3? I'm trying it with this in the Custom Action: $RT::Logger->info("AutoCcOwnerScrip"); my $last_id = $self->TransactionObj->NewValue; my $temp_user = RT::User->new(); $temp_user->Load($last_id); my $last_email = $temp_user->EmailAddress(); $RT::Logger->info("$last_em

Re: [rt-users] R: RT Queue Subject Tag problem

2009-05-29 Thread Jesse Vincent
On Fri, May 29, 2009 at 12:22:15PM +0200, Guadagnino Cristiano wrote: > Hi all, > I am having the same problem as Jeremy here. Nobody replied since january... > can somebody help please? > > We just added some queues to out RT installation; these queues are to be used > by an entirely new set

Re: [rt-users] Unable to assign an e-mail address, already in use

2009-05-29 Thread Richard Knowles
Thanks, That was the problem. The user was autocreated when added as a watcher which was a mistake. I cleared the email line and disabled the user and things are fine now. Richard Knowles On Fri, 29 May 2009, Jeff Voskamp wrote: > On 05/29/2009 01:16 PM, Richard Knowles wrote: > > Hello,

Re: [rt-users] Unable to assign an e-mail address, already in use

2009-05-29 Thread Ken Crocker
Richard, Are you using the LDAP authorization extension? If so, they could only be added if your configuration settings had "Set($LdapAutoCreateNonLdapUsers, 1);" & "Set($CanonicalizeOnCreate , 1);".. This would mean that the email creating the ticket also caused the CC email address to be

[rt-users] RT configuration for SMTP Relay?

2009-05-29 Thread juggler
On a legacy system, I have RT configured to use Sendmail or Postfix (not sure) for sending/receiving e-mail. On a new system (replacing the legacy system), can RT be configured to send/receive e-mail via SMTP relay? If so, how would I accomplish this? Would additional configuration need to be don

Re: [rt-users] Unable to assign an e-mail address, already in use

2009-05-29 Thread Jeff Voskamp
On 05/29/2009 01:16 PM, Richard Knowles wrote: > Hello, > > I am running 3.8.1 and early on during testing tickets were created with > an e-mail address in the CC: field to a person not yet an RT-user. > Later when trying to add that person as a user > (Configuration->Users->Create) the create user

[rt-users] Unable to assign an e-mail address, already in use

2009-05-29 Thread Richard Knowles
Hello, I am running 3.8.1 and early on during testing tickets were created with an e-mail address in the CC: field to a person not yet an RT-user. Later when trying to add that person as a user (Configuration->Users->Create) the create user will fail with the message: User xyz: Email address

Re: [rt-users] Question regarding SysLog

2009-05-29 Thread Ruslan Zakirov
Log to syslog and configure it or to screen and configure apache logs On Fri, May 29, 2009 at 8:49 PM, Mathew wrote: > So instead of using $LogToFile I should use $LogToSyslog and configure syslog > to separate everything out? > > Ruslan Zakirov wrote: >> It will stop, but separate file is bad f

Re: [rt-users] Question regarding SysLog

2009-05-29 Thread Mathew
So instead of using $LogToFile I should use $LogToSyslog and configure syslog to separate everything out? Ruslan Zakirov wrote: > It will stop, but separate file is bad for production. Use syslog or screen. > > On Fri, May 29, 2009 at 7:28 PM, Mathew wrote: >> If I set RT_SiteConfig.pm with ($L

Re: [rt-users] Question regarding SysLog

2009-05-29 Thread Ruslan Zakirov
It will stop, but separate file is bad for production. Use syslog or screen. On Fri, May 29, 2009 at 7:28 PM, Mathew wrote: > If I set RT_SiteConfig.pm with ($LogToSyslog, undef) and /etc/syslog.conf to > rt.none will it stop sending the log entries to /var/log/messages?  I have a > separate lo

Re: [rt-users] sending notification with values of cutom fields

2009-05-29 Thread Ken Crocker
Hunane, Here's a copy of a template we use for resolved tickets. It includes Ticket info, CF info and any comments made while resolving the ticket: Subject: Request Titled: "{$Ticket->Subject}" has been Resolved! This ticket has been resolved. DO NOT REPLY to this message! ---

Re: [rt-users] sending notification with values of cutom fields

2009-05-29 Thread Raed El-Hames
Try {$Ticket->FirstCustomFieldValue('Your_Custom_Field_Name')} in the body of the template! Regards; Roy hanane ourdani wrote: > hi all, > > is it possible to send a notification with a value of cutom field, > > thank you ___ http://lists.bestpractical

[rt-users] Question regarding SysLog

2009-05-29 Thread Mathew
If I set RT_SiteConfig.pm with ($LogToSyslog, undef) and /etc/syslog.conf to rt.none will it stop sending the log entries to /var/log/messages? I have a separate log file set up and I don't want to see the information being written twice. -Mathew -- Keep up with my goings on at http://feeds.f

[rt-users] Create tickets with a body template?

2009-05-29 Thread John Arends
Does anyone have a suggestion on creating a template for ticket creation that fills in specific AdminCCs and places a template in the body? I've had some pretty good luck using RTFM for canned replies to tickets, but I don't see an obvious way to use data from RTFM for ticket creation. _

Re: [rt-users] Ticket will not accept comments or replys

2009-05-29 Thread John Arends
RT 3.8 seems to handle HTML a lot better, as the issue we were having went away after updating. The update to 3.8.2 from 3.6.5 had been planning for several months, so we went ahead and were pleasantly surprised that the update resolved the problem. We did a little more troubleshooting, and it

Re: [rt-users] Change ticket status to "Waiting for approval"

2009-05-29 Thread Kevin Falcone
On May 29, 2009, at 9:42 AM, Jeremy Winder wrote: > Normally I wouldn't ask this question without doing some more research > on my own, but I'm under the gun to get this setup as soon as > possible. > > I have done a fresh installation of RT 3.8.3, enabled the ___Approvals > queue, added the fo

[rt-users] sending notification with values of cutom fields

2009-05-29 Thread hanane ourdani
hi all, is it possible to send a notification with a value of cutom field, thank you ___ http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-users Community help: http://wiki.bestpractical.com Commercial support: sa...@bestpractical.com Discov

[rt-users] Change ticket status to "Waiting for approval"

2009-05-29 Thread Jeremy Winder
Normally I wouldn't ask this question without doing some more research on my own, but I'm under the gun to get this setup as soon as possible. I have done a fresh installation of RT 3.8.3, enabled the ___Approvals queue, added the following scrip and templates: Description: Create CR Approval Co

Re: [rt-users] Double line space on Comment

2009-05-29 Thread Kevin Falcone
On May 28, 2009, at 11:01 PM, H Manohar rayker wrote: > Please suggest what I can do with this or where might the chances of > misconfiguration of RT? I am using basic method of authentication for > apache. It sounds like you've misconfigured RT's WebExternalAuth, because you're not getting a Cu

[rt-users] RT 3.8.3 comment

2009-05-29 Thread Simon Dray
Hi, minor comment in the version box at the bottom of the screen the copyright message is out of date says RT 3.8.3 Copyright 1996-2008 Simon ___ http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-users Community help: http://wiki.bestpractic

[rt-users] R: RT Queue Subject Tag problem

2009-05-29 Thread Guadagnino Cristiano
Hi all, I am having the same problem as Jeremy here. Nobody replied since january... can somebody help please? We just added some queues to out RT installation; these queues are to be used by an entirely new set of users, and we need then to have a different subject tag. If I understand correc

[rt-users] Rights issue on Configuration -> Global -> RT at a glance on RT 3.8.2

2009-05-29 Thread Carlos Garcia Montoro
Hello, I've a question/request about RT that I have been neither able to resolve from myself, nor have I found it at the RT wiki or googling this mailing list. I'm newbie using RT. I'm installing an organizational RT (ver. 3.8.2). We have some departments that are autonomous of each other. T