Re: [rt-users] DateTime custom field display issues

2012-11-01 Thread Alek Cesarz
rt-users-requ...@lists.bestpractical.com pisze, W dniu 2012-10-29 17:00:
> hello everyone,
> some time ago I asked my team member to investigate problem with display
> format of DateTime custom fields, but unfortunately he failed - so I
> have to fix it myself... ((-:
> I am using a few DateTime fields to mark some actions. they are rendered
> correctly in Ticket preview/summary but in searches they are shown in
> default ISO/UTC format.

hi,
has anyone seen this issue in you installations or am I the only case?

cheers,
Alek

We're hiring! http://bestpractical.com/jobs


[rt-users] DateTime custom field display issues

2012-10-29 Thread Alek Cesarz
hello everyone,
some time ago I asked my team member to investigate problem with display
format of DateTime custom fields, but unfortunately he failed - so I
have to fix it myself... ((-:
I am using a few DateTime fields to mark some actions. they are rendered
correctly in Ticket preview/summary but in searches they are shown in
default ISO/UTC format.
here is an example (excerpt from search page source):

WRO Grunwaldzka
2012-09-26 13:56:00
2012-10-17 11:05:00
Priorytet 3
2012-10-27 17:37

first 2 dates are custom fields and the last one is system bulitin
"Resolved" value.
in RT_SiteConfig.pm I have set following variables:
Set($Timezone, "Europe/Warsaw");
Set($DateTimeFormat, { Format => "ISO", Timezone => "server", Seconds =>
0 });

as you can see RT follows this setting for system fields but ignores it
for Custom Field.

in Ticket/Display everything is OK:
 
Początek awarii:

2012-09-26 15:56

  
  
Koniec awarii:

2012-10-17 13:05

  


please help me fix this.

best regards,
Alek



We're hiring! http://bestpractical.com/jobs


Re: [rt-users] RT-to-RT communication

2012-02-03 Thread Alek Cesarz
Kevin Falcone pisze, W dniu 2012-02-03 18:42:
>> Precedence: bulk
> 
> This one ^ is going to cause the CheckForAutoGenerated method to
> return true, which will cause those headers you saw and turn off
> outgoing mail back to the auto generated user.  I'm not sure if there
> is a config you could use to turn this off unfortunately, since RT is
> trying to avoid having a mail loop.

maybe I can add a custom scrip which will "unsquelch" this email
address? the only question is if it will be fired before autoreply is
being sent...

> Do further correspondences on your local ticket sent to the external
> RT?

yes.

-- 
Alek

RT Training Sessions (http://bestpractical.com/services/training.html)
* Boston  March 5 & 6, 2012


Re: [rt-users] RT-to-RT communication

2012-02-02 Thread Alek Cesarz
Alek Cesarz pisze, W dniu 2012-01-25 21:48:

> thanks Kevin. will check and get back with results.

I tried to review the code but with no success. nothing found in
incoming mail looks like it should trigger any special behaviour, but...
I am not a Perl hacker so my understanding of RT's code is limited.
what I found is that during ticket creation RT adds following headers to
first transaction:
>>
RT-Squelch-Replies-To:   requ...@blahblah.net.pl
RT-DetectedAutoGenerated:true
>>
which may block autoresponder.
requ...@blahblah.net.pl is the address from which other instance of RT
is sending mails.

below are original headers from incoming email and headers recorded in
RT's first transation ("Ticket created")

*original headers*:

>>
Subject:
=?UTF-8?B?W2RpYWxvZyAjMTE5MjE1MV0gVEVTVDogemfFgm9zemVuaWUgdGVzdG93ZSBm?=
=?UTF-8?B?cm9tIHJlcXVlc3Q=?=
From: requ...@blahblah.net.pl
Reply-To: requ...@blahblah.net.pl
In-Reply-To:
References: 
Message-ID: 
Precedence: bulk
X-RT-Loop-Prevention: blahblah
RT-Ticket: blahblah #1192151
Managed-by: RT 3.6.7 (http://www.bestpractical.com/rt/)
RT-Originator: someu...@blahblah.net.pl
To: blahb...@support.s4tech.pl
Cc: some.u...@blahblah.pl
MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
Content-Type: text/plain; charset="utf-8"
X-RT-Original-Encoding: utf-8
Date: Wed, 01 Feb 2012 13:01:17 +0100
>>

*headers recorded by RT*:
>>
CC:  some.u...@blahblah.pl
MIME-Version:1.0
In-Reply-To: 
References:  




Typ zawartości:  text/plain; charset="utf-8"
Reply-To:requ...@blahblah.net.pl
Message-ID:  
X-RT-Original-Encoding:  utf-8
RT-Originator:   someu...@wroclaw.blahblah.net.pl
Received:from mail-1-out.blahblah.net.pl ([1.2.3.4]
helo=srv-1.blahblah.net.pl) by support.s4tech.pl with esmtp (Exim 4.72)
(envelope-from ) id 1RstL7-0002rf-GS
for blahb...@support.s4tech.pl; Thu, 02 Feb 2012 10:52:25 +0100
Received:from [5.6.7.8] (port=39720 helo=tracker-1.blahblah.net.pl) by
srv.blahblah.net.pl with esmtp (blahblah SMTP) id 1RstMA-1k-Q5
(envelope-from cd...@tracker-1.blahblah.net.pl); Thu, 02 Feb 2012
10:53:30 +0100
Received:from cdsrt by rt-cds.int with local (Exim 4.63)
(envelope-from ) id 1RstPZ-0005X3-N9;
Thu, 02 Feb 2012 10:57:01 +0100
Managed-BY:  RT 3.6.7 (http://www.bestpractical.com/rt/)
Temat:   [blahblah #1192151] TEST: zgłoszenie testowe from request
Date:Thu, 02 Feb 2012 10:57:01 +0100
RT-Ticket:   blahblah #1192151
Precedence:  bulk
X-RT-Loop-Prevention:blahblah
Do:  blahb...@support.s4tech.pl
Content-Transfer-Encoding:   8bit
From:requ...@blahblah.net.pl
RT-Squelch-Replies-To:   requ...@blahblah.net.pl
RT-DetectedAutoGenerated:true
Content-Length:  2786
>>

any ideas?

-- 


RT Training Sessions (http://bestpractical.com/services/training.html)
* Boston  March 5 & 6, 2012


Re: [rt-users] RT-to-RT communication

2012-01-25 Thread Alek Cesarz
Kevin Falcone pisze, W dniu 2012-01-25 18:51:
> My guess is that RT sees that it is an Autogenerated message and
> doesn't want to cause a loop with more autogenerated mail.
>
> There's a branch to make this path even chattier, which should make it
> into 4.0.6, but you can check by looking at the incoming headers and
> comparing them to the checks in _HandleMachineGeneratedMail in
> lib/RT/Action/SendEmail.pm to figure out what is triggering.
>
thanks Kevin. will check and get back with results.

regards,
Alek

RT Training Sessions (http://bestpractical.com/services/training.html)
* Boston  March 5 & 6, 2012


[rt-users] RT-to-RT communication

2012-01-24 Thread Alek Cesarz
hi,
first of all: hello to everyone, especially old friends: Jesse and Ruslan.
it has been almost 10 years since I played with RT for the last time! ((-:
I am amazed how many changes were implemented - great job!

unfortunately I run into some problem with fresh installation of 4.0.4,
and maybe some RT user can help me out.
my RT instance receives emails both from regular user and other RT
instances (customer's). when ticket is opened by regular user every
scrip works as expected, autoreply and notifications are sent. when the
ticket is opened by ticket from other RT - no autoreply is sent.
I checked debug logs - it shows that all scrips are run, but no email is
generated...
1. could somebody point me to piece of documentation which talks about
logic of system when dealing with RT tags and subject fields generated
by other RT instance?
2. did I miss something and there is an obvious reason for this behaviour?

best regards,
Alek

RT Training Sessions (http://bestpractical.com/services/training.html)
* Boston — March 5 & 6, 2012