Re: [rt-users] Including latest transactions in RSS-Feed

2015-08-19 Thread Markus . Wildbolz
Is anybody out there who could lead me into the right direction?
Maybe der is already a plugin handling this???

BR,
Markus


Re: [rt-users] Quick Search

2015-08-19 Thread Zoey Schutt
Greetings,

You can change the order in which the tickets show up for the quick search by 
editing the search, then modifying the "Sorting" section. By default you will 
see that the search is being sorted by "ID, Asc". I have attached a screenshot 
of what it will look like. You will want to change this to "ID, Desc" which 
will show the newest tickets first.


--
Zoey Schutt
Braincoral Technology



 On Mon, 17 Aug 2015 10:10:47 -0400 Sam Maher 
 wrote  

Hi, 
 
We have quick search on our users dashboards so they can click on the queue and 
view the tickets that are in the queue they clicked on. 
 
The only problem is that it shows the oldest tickets first not the newest ones. 
 
Is there any way that we can change this?
 
Thanks
Sam

 
Sam Maher - IT Technician
Lawson Lewis Blakers
T: 01323 720142
F: 01323 725349

Partners: Jeremy H Sogno, Nadine M Ashford and Mark Barrett
Lawson Lewis Blakers Solicitors Authorised and Regulated by the Solicitors 
Regulation Authority. SRA No: 00053703
THIS E-MAIL AND ANY ATTACHED FILES ARE CONFIDENTIAL AND MAY BE LEGALLY 
PRIVILEGED
If you are not the addressee or the intended recipient any disclosure, copying, 
distribution, or other use of this e-mail and attachments is strictly 
prohibited. 
If you have received this e-mail in error please notify the sender immediately 
and delete this e-mail. 
E-mail transmission cannot be guaranteed to be secure or error free as 
information could be intercepted, corrupted, lost, destroyed, arrive late, be 
incomplete or contain viruses. 
We do not accept liability for any errors or omissions which arise as a result 
of e-mail transmission. Any e-mail attachment may contain software viruses.
Whilst reasonable precaution has been taken to minimise this risk, we cannot 
accept liability for any damage which you sustain as a result of software 
viruses. 
Lawson Lewis Blakers reserves the right to monitor or record e-mails for any 
purpose allowed by prevailing legislation.







Re: [rt-users] Problem with extension RepeatTicket

2015-08-19 Thread frankfurter
as far as i know is there no config file for RepeatTicket.
there is only this part in RT_SiteConfig.pm

Plugin('RT::Extension::RepeatTicket');

and optional (i dont use this):
 Set( $RepeatTicketCoexistentNumber, 1 );
 Set( $RepeatTicketLeadTime, 14 ); 
 Set( $RepeatTicketSubjectFormat, '__Subject__' );






--
View this message in context: 
http://requesttracker.8502.n7.nabble.com/Problem-with-extension-RepeatTicket-tp60471p60475.html
Sent from the Request Tracker - User mailing list archive at Nabble.com.


Re: [rt-users] Problem with extension RepeatTicket

2015-08-19 Thread Matt Zagrabelny
On Wed, Aug 19, 2015 at 5:39 AM, frankfurter  wrote:
> Hi,
>
> i want to use the RepeatTicket extension for tickets that have to be done
> daily,weekly and monthly.
> my problem is when i set a ticket to spawn i.e. every week, the ticket
> spawns every day instead. sometimes also the monthly tickets come up every
> day.
> I'm sure that the recurrence date is set correctly.
>
> my cronjob looks like this:
>
> 0 3 * * *
> /opt/rt4/local/plugins/RT-Extension-RepeatTicket/bin/rt-repeat-ticket
>
> any ideas ?

I've never ysed RepeatTicket, where are the configs stored? And what
do your configs look like?

-m


Re: [rt-users] setting up auto reply to only work on certain queues.

2015-08-19 Thread Matt Zagrabelny
Hi,

On Wed, Aug 19, 2015 at 6:11 AM, norman  wrote:
> Hello all.
> I have a setup where if a ticket is created rt will send a message to the
> requester automatically. This is set up to do this for all my queues.
> However, i now have a queue that i need to turn this off on. Looking at
> global scripts i see the "on transaction create send auto reply" script. I
> can disable this by setting the stage. However, i can't figure out how to
> add a script to the queues that need the auto reply functionality.
> In other words, is it possible to have a script only work on certain queues
> and if so, what am i missing?

You can certainly turn off the scrip (Note: no 't' at the end of the
word) for a given queue. I believe applying scrips per queue showed up
in 4.2. But you can achieve the same functionality with a custom scrip
condition:

Here is a custom scrip condition that we use:

($self->TransactionObj->Type || '') eq 'Create'
&&
($self->TicketObj->Status || '') ne 'resolved'
&&
$self->TicketObj->Owner == RT::Nobody->id
&&
($self->TicketObj->QueueObj->Name || '') !~ /^(?:SIRT)$/

FWIW, RT does not support negative ACLs natively at this point. That
is you can't have a global scrip and then say "don't apply to this one
queue". That has to be done with a custom scrip condition.

-m


[rt-users] setting up auto reply to only work on certain queues.

2015-08-19 Thread norman

Hello all.
I have a setup where if a ticket is created rt will send a message to 
the requester automatically. This is set up to do this for all my 
queues. However, i now have a queue that i need to turn this off on. 
Looking at global scripts i see the "on transaction create send auto 
reply" script. I can disable this by setting the stage. However, i can't 
figure out how to add a script to the queues that need the auto reply 
functionality.
In other words, is it possible to have a script only work on certain 
queues and if so, what am i missing?
I can see the scripts options under each queue but that doesn't allow me 
to edit anything beyond the global scripts.


Thoughts?
System config. rt 4.0.19, debian 7, apache webserver, and mysql.





[rt-users] Problem with extension RepeatTicket

2015-08-19 Thread frankfurter
Hi, 

i want to use the RepeatTicket extension for tickets that have to be done
daily,weekly and monthly. 
my problem is when i set a ticket to spawn i.e. every week, the ticket
spawns every day instead. sometimes also the monthly tickets come up every
day. 
I'm sure that the recurrence date is set correctly. 

my cronjob looks like this: 

0 3 * * *
/opt/rt4/local/plugins/RT-Extension-RepeatTicket/bin/rt-repeat-ticket 

any ideas ? 

thanks, 
David 



--
View this message in context: 
http://requesttracker.8502.n7.nabble.com/Problem-with-extension-RepeatTicket-tp60471.html
Sent from the Request Tracker - User mailing list archive at Nabble.com.