RT 2.0.6-pre4

I rolled 2.0.6-pre4 last night. it adds all the features that are getting
added for 2.0.6.

The biggies are:

External Web Auth (Thanks to Christian Gilmore at Tivoli).
Configurable Refresh on the 'Home' and 'Search' pages.
A tighter transaction history display.

I’ve got a couple more fixups from christian to integrate,
then I’ll roll 2.0.6-test5, which I’d like people to beat on lots,
so we don’t have a repeat of 2.0.5 :wink:

-j

http://www.bestpractical.com/products/rt – Trouble Ticketing. Free.

Hello everybody,

We receive a lot of messages in HTML and it's unconfortable to have to open

those by download link. We did a small change on the
Ticket/Elements/ShowTransaction file allowing HTML message display inside a
IFrame. Our intranet system is enterely based on explorer browser soo we
dont care about netscape compatibility.

At the end of the message you will find the piece of code already changed.

Hope this can be usefull to anyone else, and if someone can make this
Netscape friendly, maybe Jesse can add this a new option to the official
release.

Best regards,

	Saverio.

% # 13456 is a random # of about the biggest size we’d want to see inline
text
% if ($message->ContentType =~ m{^(text/plain|message|text$)}i &&
length($message->Content)<13456) {
% #TODO We’re now HTML escaping the message content, but should
% #TODO probably deal with converting links

<% $message->Content %>

% ### HTML message display inside an IFrame.
% } elsif ($message->ContentType =~ m{^(text/html$)}i &&
length($message->Content)<13456) {

% ###

% } elsif ($message->ContentType =~ m{^multipart}) {
This is a multipart message
% }

The problem with automatically displaying html messages is that it makes
it trivial for a malicious user to take control of your RT session.
Because of the security implications, It’s not something I’m really
willing to add to RT.On Fri, Aug 24, 2001 at 05:41:59PM -0300, Saverio Palmieri Neto wrote:

Hello everybody,

We receive a lot of messages in HTML and it’s unconfortable to have to open
those by download link. We did a small change on the
Ticket/Elements/ShowTransaction file allowing HTML message display inside a
IFrame. Our intranet system is enterely based on explorer browser soo we
dont care about netscape compatibility.

At the end of the message you will find the piece of code already changed.
Hope this can be usefull to anyone else, and if someone can make this
Netscape friendly, maybe Jesse can add this a new option to the official
release.

Best regards,

  Saverio.

% # 13456 is a random # of about the biggest size we’d want to see inline
text
% if ($message->ContentType =~ m{^(text/plain|message|text$)}i &&
length($message->Content)<13456) {
% #TODO We’re now HTML escaping the message content, but should
% #TODO probably deal with converting links

<% $message->Content %>

% ### HTML message display inside an IFrame.
% } elsif ($message->ContentType =~ m{^(text/html$)}i &&
length($message->Content)<13456) {

% ###

% } elsif ($message->ContentType =~ m{^multipart}) {
This is a multipart message
% }


rt-devel mailing list
rt-devel@lists.fsck.com
http://lists.fsck.com/mailman/listinfo/rt-devel

http://www.bestpractical.com/products/rt – Trouble Ticketing. Free.