From morten.guldager at gmail.com Thu May 1 05:06:50 2008 From: morten.guldager at gmail.com (Morten Guldager) Date: Thu, 1 May 2008 11:06:50 +0200 Subject: [rt-users] Using the RT Codebase in a stand alone program (perl) In-Reply-To: <35D671B6-C612-46D1-82E2-6F40A625E4A4@bestpractical.com> References: <519782dc0804300708s489553fcm20ed24258b9dc78c@mail.gmail.com> <35D671B6-C612-46D1-82E2-6F40A625E4A4@bestpractical.com> Message-ID: On Wed, Apr 30, 2008 at 6:25 PM, Kevin Falcone wrote: > Try > my $ticket = RT::Ticket->new( $RT::SystemUser ); > Wooho! It works! Don't ask me to explain why.... Below is my program as it looks now. Since I don't want to run it as root I hacked some of the constants from the RT_SiteConfig.pm directly into the code itself. But the way I did it, by making my own "package RT"... looks ugly. Sugestions? -- /Morten %-) #!/usr/bin/perl package RT; our $DatabaseType = 'mysql'; our $DatabaseUser = 'rtuser'; our $DatabasePassword = 'dbpw'; our $DatabaseName = 'rtdb'; package main; use strict; use warnings; use Data::Dumper; use lib '/usr/share/request-tracker3.6/lib'; use RT; use RT::Tickets; RT::Init(); my $u = RT::CurrentUser->new( 'cust-12345' ); die "Password error\n" unless RT::CurrentUser::IsPassword($u, 'magic'); my $ticket = new RT::Ticket($u); $ticket->Load( 286 ); printf "%5s: %-50s (%s)\n", $ticket->id, $ticket->Subject, $ticket->Status; -------------- next part -------------- An HTML attachment was scrubbed... URL: From andrew.fay at hotmail.co.uk Thu May 1 06:13:44 2008 From: andrew.fay at hotmail.co.uk (andrew fay) Date: Thu, 1 May 2008 10:13:44 +0000 Subject: [rt-users] 2 quick questions! In-Reply-To: References: <519782dc0804300708s489553fcm20ed24258b9dc78c@mail.gmail.com> <35D671B6-C612-46D1-82E2-6F40A625E4A4@bestpractical.com> Message-ID: Hi, im using rt 3.6.4 on ubuntu. 1) When a ticket comes in to the queue how can I set it up so I am emailed so I know when things come in and then I want it to email me at each update. 2) When changing owner of a ticket.. how can I stop it from emailing the requester about this change? Thanks in advance! Andy _________________________________________________________________ Be a Hero and Win with Iron Man http://clk.atdmt.com/UKM/go/msnnkmgl0010000009ukm/direct/01/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From itinfoguy at gmail.com Thu May 1 07:50:50 2008 From: itinfoguy at gmail.com (IT GUY) Date: Thu, 1 May 2008 17:35:50 +0545 Subject: [rt-users] Scripssssssss Message-ID: Dear All, I always get two e-mail replies when ever a ticket is created via e-mail in any queue. How can I stop Thanks in advance, Yogesh -------------- next part -------------- An HTML attachment was scrubbed... URL: From bduff at covista.com Thu May 1 07:52:34 2008 From: bduff at covista.com (Bob Duff) Date: Thu, 1 May 2008 07:52:34 -0400 Subject: [rt-users] RT 3.6.6 Install .. stuck on Apache configuration In-Reply-To: Message-ID: Tried a couple more things still no luck.. anyone else have any advice? Thanks Bob ________________________________ From: rt-users-bounces at lists.bestpractical.com [mailto:rt-users-bounces at lists.bestpractical.com] On Behalf Of Bob Duff Sent: Tuesday, April 29, 2008 5:00 PM To: 'rt-users at lists.bestpractical.com' Subject: [rt-users] RT 3.6.6 Install .. stuck on Apache configuration I'm have installed RT 3.6 successfully from source but there is a configuration problem I can't seem to find. I get the following error when I pull up my url: RT: Request Tracker You're almost there! You haven't yet configured your webserver to run RT. You appear to have installed RT's web interface correctly, but haven't yet configured your web server to "run" the RT server which powers the web interface. The next step is to edit your webserver's configuration file to instruct it to use RT's mod_perl , fastcgi or speedycgi handler. ______________________________________________________________________________________________________________ Here are my configuration files: httpd.conf virtual host section for rt: ServerName rt.covista.com DocumentRoot /opt/rt3/share/html AddDefaultCharset UTF-8 PerlModule Apache::DBI PerlRequire /opt/rt3/bin/webmux.pl SetHandler perl-script PerlHandler RT::Mason RT_SiteConfig.pm # Any configuration directives you include here will override # RT's default configuration file, RT_Config.pm # # To include a directive here, just copy the equivalent statement # from RT_Config.pm and change the value. We've included a single # sample value below. # # This file is actually a perl module, so you can include valid # perl code, as well. # # The converse is also true, if this file isn't valid perl, you're # going to run into trouble. To check your SiteConfig file, use # this comamnd: # # perl -c /path/to/your/etc/RT_SiteConfig.pm Set( $rtname, 'covista'); Set($Organization, "rt.covista.com"); Set($Timezone, 'US/Eastern'); Set($WebBaseURL, "http://rt.covista.com"); Set($Webpath, "/rt3"); Set($CorrespondAddress, 'correspond at rt.covista.com'); Set($CommentAddress, 'comment at rt.covista.com'); Set($logToSyslog, ''); Set($logToFile, 'debug'); Set($LogDir, '/var/log'); Set($LogToFileNamed , "rt.log"); Set($OwnerEmail, admin at covista.com); Set($MyTicketsLength, 20); Set($SendmailPath , "/usr/sbin/sendmail"); Set($SendmailArguments , "-oi -t"); 1; _____________________________________________________________________________________________________ Anyone see something I should have caught here? If not any tips on how to resolve this problem? Thanks Bob Duff -------------- next part -------------- An HTML attachment was scrubbed... URL: From lists at svrinformatica.it Thu May 1 08:21:23 2008 From: lists at svrinformatica.it (Mailing List SVR) Date: Thu, 01 May 2008 14:21:23 +0200 Subject: [rt-users] Spreeadsheet, utf-8 and ms excel Message-ID: <1209644483.7515.3.camel@localhost.localdomain> When export a search result as tsv spreedsheet ms excel doesn't properly display non ASCII characters: for example ? is displayed as ?? and so on, the exported file is utf-8 encoded but I think this info isn't passed to ms excel. any hint? regards Nicola From andrew.fay at hotmail.co.uk Thu May 1 08:40:05 2008 From: andrew.fay at hotmail.co.uk (andrew fay) Date: Thu, 1 May 2008 12:40:05 +0000 Subject: [rt-users] WATCHERS Message-ID: I am trying to add watchers to queues so that if an email comes in to a certain queue the watcher will be notified about it and copied in to each response etc.. I have added a watcher to a queue and but the ticket has no watcher by default for some reason ? I have set the user to have watch and watchasadmincc rights also i have set the user to watch the queue as admincc and watcher and it still doesn't add it to the tickets, any help would be great, cheers andy _________________________________________________________________ Win Indiana Jones prizes with Live Search http://clk.atdmt.com/UKM/go/msnnkmgl0010000002ukm/direct/01/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From winn_johnston at yahoo.com Thu May 1 09:39:38 2008 From: winn_johnston at yahoo.com (Winn Johnston) Date: Thu, 1 May 2008 06:39:38 -0700 (PDT) Subject: [rt-users] Top Resolvesrs / Elements failed to display after upgrading In-Reply-To: Message-ID: <90917.15576.qm@web52908.mail.re2.yahoo.com> We were running 3.3.4 and upgraded to 3.3.6. After the upgrade i noticed the top resolvers were not showing, along with some other custom elements. So i did a clean install to see if they would then show once i put the files back in the elements directory. Still nothing. Here is the path i am using along with the permissions. rt:/opt/rt3/local/html/Elements # ll total 24 drwxr-xr-x 2 wwwrun www 4096 Apr 30 17:31 . drwxr-xr-x 3 wwwrun www 4096 Apr 30 12:18 .. -rwxr-xr-x 1 wwwrun www 2039 Apr 21 2006 LanguishingTickets -rwxr-xr-x 1 wwwrun www 2380 Apr 21 2006 MyRequests -rwxr-xr-x 1 wwwrun www 2625 Apr 21 2006 MyTickets -rwxr-xr-x 1 wwwrun www 1586 Apr 21 2006 TopResolvers Below you will find what i believe to be the error, along with a stack trace. Any help would greatly be appreciated. Thanks -winn [Wed Apr 30 22:43:26 2008] [debug]: SQL(0.00s): SELECT ACL.id, ACL.ObjectType, ACL.ObjectId FROM ACL, Principals, CachedGroupMembers WHERE (ACL.RightName = 'SuperUser' OR ACL.RightName = 'SeeQueue') AND Principals.id = ACL.PrincipalId AND Principals.PrincipalType = 'Group' AND Principals.Disabled = 0 AND CachedGroupMembers.GroupId = ACL.PrincipalId AND CachedGroupMembers.GroupId = Principals.id AND CachedGroupMembers.MemberId = 14032 AND CachedGroupMembers.Disabled = 0 AND ((ACL.ObjectType = ' RT::System' AND ACL.ObjectId = 1) OR (ACL.ObjectType = 'RT::Queue' AND ACL.ObjectId = 36)) LIMIT 1; (/opt/rt3/share/html/autohandler:319) Stack trace: HTML::Mason::Commands::__ANON__() called at /usr/lib/perl5/site_perl/5.8.3/HTML/Mason/Component.pm:135 HTML::Mason::Component::run() called at /usr/lib/perl5/site_perl/5.8.3/HTML/Mason/Request.pm:1246 (eval)() called at /usr/lib/perl5/site_perl/5.8.3/HTML/Mason/Request.pm:1245 HTML::Mason::Request::comp() called at /usr/lib/perl5/site_perl/5.8.3/HTML/Mason/Request.pm:459 (eval)() called at /usr/lib/perl5/site_perl/5.8.3/HTML/Mason/Request.pm:459 (eval)() called at /usr/lib/perl5/site_perl/5.8.3/HTML/Mason/Request.pm:411 HTML::Mason::Request::exec() called at /usr/lib/perl5/site_perl/5.8.3/HTML/Mason/ApacheHandler.pm:168 HTML::Mason::Request::ApacheHandler::exec() called at /usr/lib/perl5/site_perl/5.8.3/HTML/Mason/ApacheHandler.pm:826 HTML::Mason::ApacheHandler::handle_request() called at /opt/rt3/bin/webmux.pl:125 (eval)() called at /opt/rt3/bin/webmux.pl:125 RT::Mason::handler() called at -e:0 (eval)() called at -e:0 ____________________________________________________________________________________ Be a better friend, newshound, and know-it-all with Yahoo! Mobile. Try it now. http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ From jesse at bestpractical.com Thu May 1 09:55:56 2008 From: jesse at bestpractical.com (Jesse Vincent) Date: Thu, 1 May 2008 09:55:56 -0400 Subject: [rt-users] Spreeadsheet, utf-8 and ms excel In-Reply-To: <1209644483.7515.3.camel@localhost.localdomain> References: <1209644483.7515.3.camel@localhost.localdomain> Message-ID: <0A43D660-9AF2-4E00-9643-7C3E15C7B609@bestpractical.com> On May 1, 2008, at 8:21 AM, Mailing List SVR wrote: > When export a search result as tsv spreedsheet ms excel doesn't > properly > display non ASCII characters: > > for example ? is displayed as ?? > > and so on, > Nicola, What RT are you testing with? > the exported file is utf-8 encoded but I think this info isn't > passed to ms excel. > > any hint? > > regards > Nicola > > _______________________________________________ > http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-users > > Community help: http://wiki.bestpractical.com > Commercial support: sales at bestpractical.com > > > Discover RT's hidden secrets with RT Essentials from O'Reilly Media. > Buy a copy at http://rtbook.bestpractical.com > -------------- next part -------------- A non-text attachment was scrubbed... Name: PGP.sig Type: application/pgp-signature Size: 186 bytes Desc: This is a digitally signed message part URL: From winn_johnston at yahoo.com Thu May 1 11:27:03 2008 From: winn_johnston at yahoo.com (Winn Johnston) Date: Thu, 1 May 2008 08:27:03 -0700 (PDT) Subject: [rt-users] RT 3.6.6 Install .. stuck on Apache configuration In-Reply-To: Message-ID: <970768.54287.qm@web52907.mail.re2.yahoo.com> check your /etc/sysconfig/apache APACHE_MODULES="actions rewrite alias auth_basic authn_file authz_host authz_groupfile authz_default authz_user authn_dbm autoindex cgi dir env expires include log_config mime negotiation setenvif ssl suexec userdir php5 perl" make sure you have perl in there, then restart apache -winn --- Bob Duff wrote: > Tried a couple more things still no luck.. anyone > else have any advice? > > Thanks > Bob > > ________________________________ > From: rt-users-bounces at lists.bestpractical.com > [mailto:rt-users-bounces at lists.bestpractical.com] On > Behalf Of Bob Duff > Sent: Tuesday, April 29, 2008 5:00 PM > To: 'rt-users at lists.bestpractical.com' > Subject: [rt-users] RT 3.6.6 Install .. stuck on > Apache configuration > > I'm have installed RT 3.6 successfully from source > but there is a configuration problem I can't seem to > find. I get the following error when I pull up my > url: > RT: Request Tracker > You're almost there! > > You haven't yet configured your webserver to run RT. > > You appear to have installed RT's web interface > correctly, but haven't yet configured your web > server to "run" the RT server which powers the web > interface. > > The next step is to edit your webserver's > configuration file to instruct it to use RT's > mod_perl , fastcgi or speedycgi handler. > > ______________________________________________________________________________________________________________ > > Here are my configuration files: > > httpd.conf virtual host section for rt: > > > > ServerName rt.covista.com > > DocumentRoot /opt/rt3/share/html > > AddDefaultCharset UTF-8 > > PerlModule Apache::DBI > > PerlRequire /opt/rt3/bin/webmux.pl > > > > SetHandler perl-script > > PerlHandler RT::Mason > > > > > > > > RT_SiteConfig.pm > > # Any configuration directives you include here will > override # RT's default configuration file, > RT_Config.pm # # To include a directive here, just > copy the equivalent statement # from RT_Config.pm > and change the value. We've included a single # > sample value below. > > # > > # This file is actually a perl module, so you can > include valid # perl code, as well. > > # > > # The converse is also true, if this file isn't > valid perl, you're # going to run into trouble. To > check your SiteConfig file, use # this comamnd: > > # > > # perl -c /path/to/your/etc/RT_SiteConfig.pm > > Set( $rtname, 'covista'); > > Set($Organization, "rt.covista.com"); > > Set($Timezone, 'US/Eastern'); > > Set($WebBaseURL, > "http://rt.covista.com"); > > Set($Webpath, "/rt3"); > > Set($CorrespondAddress, > 'correspond at rt.covista.com'); > > Set($CommentAddress, > 'comment at rt.covista.com'); > > Set($logToSyslog, ''); > > Set($logToFile, 'debug'); > > Set($LogDir, '/var/log'); > > Set($LogToFileNamed , "rt.log"); > > Set($OwnerEmail, > admin at covista.com); > > Set($MyTicketsLength, 20); > > Set($SendmailPath , "/usr/sbin/sendmail"); > > Set($SendmailArguments , "-oi -t"); > > 1; > > _____________________________________________________________________________________________________ > > Anyone see something I should have caught here? If > not any tips on how to resolve this problem? > > Thanks > Bob Duff > > > _______________________________________________ > http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-users > > Community help: http://wiki.bestpractical.com > Commercial support: sales at bestpractical.com > > > Discover RT's hidden secrets with RT Essentials from > O'Reilly Media. > Buy a copy at http://rtbook.bestpractical.com ____________________________________________________________________________________ Be a better friend, newshound, and know-it-all with Yahoo! Mobile. Try it now. http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ From npereira at protus.com Thu May 1 11:29:28 2008 From: npereira at protus.com (Nelson Pereira) Date: Thu, 1 May 2008 11:29:28 -0400 Subject: [rt-users] Link issues in the Tickets section (ie: static search) In-Reply-To: <21044E8C915A7E43B90A1056127160F11EA9DE@EXMAIL.protus.org> References: <21044E8C915A7E43B90A1056127160F11EA9DE@EXMAIL.protus.org> Message-ID: <21044E8C915A7E43B90A1056127160F11EABF0@EXMAIL.protus.org> Anyone have an idea about the issue I am having? Nelson ________________________________ From: rt-users-bounces at lists.bestpractical.com [mailto:rt-users-bounces at lists.bestpractical.com] On Behalf Of Nelson Pereira Sent: Tuesday, April 29, 2008 2:52 PM To: rt-users at lists.bestpractical.com Subject: [rt-users] Link issues in the Tickets section (ie: static search) Hi all, I've noticed a problem that I'm unsure when it actually started. When you click on the Tickets link ( https://domain.com/Search/Build.html) at the top of the page in RT at a glance, When you click on one of the tickets that show up, the link is wrong, hence brings you to a page cannot be displayed. The link looks like this: https://ticket/Display.html?id=143 When it should look like this: https://domain.com/Ticket/Display.html?id=143 Notice the host part missing and the "t" is suppose to be Capitalized. Anyone can tell me how I can fix this? This seams to be an issue with the search I think or something. Nelson Pereira Senior Network Administrator Protus IP Solutions Inc. npereira at protus.com phone: 613.733.0000 ext.528 MyFax: 613.822.5083 www.myfax.com Refer your friends and colleagues to MyFax! Click here for more information. -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.gif Type: image/gif Size: 4180 bytes Desc: image001.gif URL: From gleduc at mail.sdsu.edu Thu May 1 11:41:43 2008 From: gleduc at mail.sdsu.edu (Gene LeDuc) Date: Thu, 01 May 2008 08:41:43 -0700 Subject: [rt-users] WATCHERS In-Reply-To: References: Message-ID: <6.2.1.2.2.20080501083110.0253eba0@mail.sdsu.edu> Hi Andrew, It can get confusing. Queue watchers don't appear on tickets because they are not associated with the ticket, just the queue. If they were added to the ticket, then they would stay with it when it moves to another queue (where they may not be watchers). Watchers that are assigned to tickets stay with the ticket regardless where it ends up. When a transaction generates an e-mail to watchers, it should go to all queue watchers for the queue that it's in plus any watchers assigned to that ticket. There are exceptions (generally the person who creates a transaction doesn't get notified of it, even if she's a watcher, because she should already know about it), but mostly that's how it works. You can't tell who the queue watchers are by looking at a ticket. Regards, Gene At 05:40 AM 5/1/2008, andrew fay wrote: >I am trying to add watchers to queues so that if an email comes in to a >certain queue the watcher will be notified about it and copied in to each >response etc.. I have added a watcher to a queue and but the ticket >has no watcher by default for some reason ? > >I have set the user to have watch and watchasadmincc rights > >also i have set the user to watch the queue as admincc and watcher and it >still doesn't add it to the tickets, > >any help would be great, > >cheers > >andy > > >---------- >Invite your Facebook friends to Messenger! Get Started! >_______________________________________________ >http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-users > >Community help: http://wiki.bestpractical.com >Commercial support: sales at bestpractical.com > > >Discover RT's hidden secrets with RT Essentials from O'Reilly Media. >Buy a copy at http://rtbook.bestpractical.com -- Gene LeDuc, GSEC Security Analyst San Diego State University -------------- next part -------------- An HTML attachment was scrubbed... URL: From lists at svrinformatica.it Thu May 1 11:50:21 2008 From: lists at svrinformatica.it (Mailing List SVR) Date: Thu, 01 May 2008 17:50:21 +0200 Subject: [rt-users] Spreeadsheet, utf-8 and ms excel In-Reply-To: <0A43D660-9AF2-4E00-9643-7C3E15C7B609@bestpractical.com> References: <1209644483.7515.3.camel@localhost.localdomain> <0A43D660-9AF2-4E00-9643-7C3E15C7B609@bestpractical.com> Message-ID: <1209657021.8801.4.camel@localhost.localdomain> Il giorno gio, 01/05/2008 alle 09.55 -0400, Jesse Vincent ha scritto: > On May 1, 2008, at 8:21 AM, Mailing List SVR wrote: > > When export a search result as tsv spreedsheet ms excel doesn't > > properly > > display non ASCII characters: > > > > for example ? is displayed as ?? > > > > and so on, > > > > Nicola, What RT are you testing with? Thanks for your quick answer, I'm using rt 3.6.5 on centos 5.1, I quickly looked at 3.6.6 code and doesn't seem there are changes related to spreeadsheet generation If I open the tsv file with notepad and save it as unicode and then I open the file with ms excel all is fine, If I open with openoffice calc and import as utf-8 all is fine, even if I change content_type from application/vnd.ms-excel to text/csv in Results.csv source file and then I import the generated tsv in ms excel and specify utf-8 encoding all is fine maybe some header in missing in tsv generation > > > the exported file is utf-8 encoded but I think this info isn't > > passed to ms excel. > > > > any hint? > > > > regards > > Nicola > > > > _______________________________________________ > > http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-users > > > > Community help: http://wiki.bestpractical.com > > Commercial support: sales at bestpractical.com > > > > > > Discover RT's hidden secrets with RT Essentials from O'Reilly Media. > > Buy a copy at http://rtbook.bestpractical.com > > > From jesse at bestpractical.com Thu May 1 11:57:50 2008 From: jesse at bestpractical.com (Jesse Vincent) Date: Thu, 1 May 2008 11:57:50 -0400 Subject: [rt-users] Spreeadsheet, utf-8 and ms excel In-Reply-To: <1209657021.8801.4.camel@localhost.localdomain> References: <1209644483.7515.3.camel@localhost.localdomain> <0A43D660-9AF2-4E00-9643-7C3E15C7B609@bestpractical.com> <1209657021.8801.4.camel@localhost.localdomain> Message-ID: On May 1, 2008, at 11:50 AM, Mailing List SVR wrote: > Il giorno gio, 01/05/2008 alle 09.55 -0400, Jesse Vincent ha scritto: >> On May 1, 2008, at 8:21 AM, Mailing List SVR wrote: >>> When export a search result as tsv spreedsheet ms excel doesn't >>> properly >>> display non ASCII characters: >>> >>> for example ? is displayed as ?? >>> >>> and so on, >>> >> >> Nicola, What RT are you testing with? > > Thanks for your quick answer, > > I'm using rt 3.6.5 on centos 5.1, > > I quickly looked at 3.6.6 code and doesn't seem there are changes > related to spreeadsheet generation > > If I open the tsv file with notepad and save it as unicode and then I > open the file with ms excel all is fine, > > If I open with openoffice calc and import as utf-8 all is fine, > > even if I change content_type from application/vnd.ms-excel to text/ > csv > in Results.csv source file and then I import the generated tsv in ms > excel and specify utf-8 encoding all is fine > > maybe some header in missing in tsv generation Can you find out whether MS accepts a way to specify this from MIME types (possbily application/vnd.ms-excel; charset=utf8) ? If there's a change we can make, I'd be happy to make it -------------- next part -------------- A non-text attachment was scrubbed... Name: PGP.sig Type: application/pgp-signature Size: 186 bytes Desc: This is a digitally signed message part URL: From KFCrocker at lbl.gov Thu May 1 12:01:05 2008 From: KFCrocker at lbl.gov (Kenneth Crocker) Date: Thu, 01 May 2008 09:01:05 -0700 Subject: [rt-users] How To Change "RT at a Glance" Screen in 3.4.5? In-Reply-To: <040401c8ab1a$478691c0$16317280@soe.cse.ucsc.edu> References: <040401c8ab1a$478691c0$16317280@soe.cse.ucsc.edu> Message-ID: <4819E941.60705@lbl.gov> Tim, I believe RT has a basic "My Tickets" search that you can choose. Kenn LBNL On 4/30/2008 4:31 PM, Tim Gustafson wrote: > Hello, > > I was wondering: how would a user change his "RT at a Glance" screen so that > it showed all his new and open tickets instead of just the "10 highest > priority tickets I own" box? > > This is for RT 3.4.5 running on CentOS 5.1. > > Tim Gustafson > SOE Webmaster > UC Santa Cruz > tjg at soe.ucsc.edu > (831) 459-5354 > > > _______________________________________________ > http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-users > > Community help: http://wiki.bestpractical.com > Commercial support: sales at bestpractical.com > > > Discover RT's hidden secrets with RT Essentials from O'Reilly Media. > Buy a copy at http://rtbook.bestpractical.com > From KFCrocker at lbl.gov Thu May 1 12:10:36 2008 From: KFCrocker at lbl.gov (Kenneth Crocker) Date: Thu, 01 May 2008 09:10:36 -0700 Subject: [rt-users] 2 quick questions! In-Reply-To: References: <519782dc0804300708s489553fcm20ed24258b9dc78c@mail.gmail.com> <35D671B6-C612-46D1-82E2-6F40A625E4A4@bestpractical.com> Message-ID: <4819EB7C.7010607@lbl.gov> Andrew, We use 3.6.4 as well. It sounds like you haven't done much in the way of customizing your notification scrips. I don't know which ones you have available but you should have one similar to: Condition: On Create Action: Notify AdminCc (if that is you. If not make it Notify whomever (role) you are Template: you pick. To be notified on any change, do you want that to be "change in status" or updated in any form? IF youwant to be notified when the ticket is updated in any form, you might just get inundated with email, your choice. But it should look something like: Condition: On Status Change (or "On Transaction" for everything) Action: Notify ???? Template: you pick For your second question; go to the scrip that is being triggered and change who gets notified. Hope this helps. Kenn LBNL On 5/1/2008 3:13 AM, andrew fay wrote: > Hi, > > im using rt 3.6.4 on ubuntu. > > 1) When a ticket comes in to the queue how can I set it up so I am > emailed so I know when things come in and then I want it to email me at > each update. > > 2) When changing owner of a ticket.. how can I stop it from emailing the > requester about this change? > > Thanks in advance! > > Andy > > > > > ------------------------------------------------------------------------ > Get fish-slapping on Messenger! Play Now > > > > ------------------------------------------------------------------------ > > _______________________________________________ > http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-users > > Community help: http://wiki.bestpractical.com > Commercial support: sales at bestpractical.com > > > Discover RT's hidden secrets with RT Essentials from O'Reilly Media. > Buy a copy at http://rtbook.bestpractical.com From shannon_adams68 at yahoo.com Thu May 1 12:06:03 2008 From: shannon_adams68 at yahoo.com (Shannon Adams) Date: Thu, 1 May 2008 09:06:03 -0700 (PDT) Subject: [rt-users] RT login page not coming up (Cacti instead) Message-ID: <323109.31182.qm@web52901.mail.re2.yahoo.com> I have installed RT 3.6.6 for testing on an old server running FC4. It is setup the same as our live server, as far as I can tell. However, when browsing to the URL or IP of the server, The RT login page does not come up. A "Cacti" user login page does instead. It looks like Cacti is a package that comes with Fedora. I can't figure out why this is coming up instead of RT. Any suggestions? Thanks, Shannon ____________________________________________________________________________________ Be a better friend, newshound, and know-it-all with Yahoo! Mobile. Try it now. http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ From KFCrocker at lbl.gov Thu May 1 12:14:18 2008 From: KFCrocker at lbl.gov (Kenneth Crocker) Date: Thu, 01 May 2008 09:14:18 -0700 Subject: [rt-users] Scripssssssss In-Reply-To: References: Message-ID: <4819EC5A.6090609@lbl.gov> IT GUT, Well, gee, that could be caused by MANY things. You could have the Action set to "Notify AdminCc, Cc, Requestors" and you happen to be in two of those roles for those tickets. IT COULD be That you are also on the ticket Cc's list and you have a scrip that notifies "Others". It would help a great in debugging if perhaps you would specify what scrips you have and who is in what roles for the Queue & Globally. Then we might be able to whittle down the possibilities. Kenn LBNL On 5/1/2008 4:50 AM, IT GUY wrote: > Dear All, > > I always get two e-mail replies when ever a ticket is created via e-mail > in any queue. How can I stop > > Thanks in advance, > Yogesh > > > ------------------------------------------------------------------------ > > _______________________________________________ > http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-users > > Community help: http://wiki.bestpractical.com > Commercial support: sales at bestpractical.com > > > Discover RT's hidden secrets with RT Essentials from O'Reilly Media. > Buy a copy at http://rtbook.bestpractical.com From asallade at PTSOWA.ORG Thu May 1 12:16:40 2008 From: asallade at PTSOWA.ORG (Aaron Sallade) Date: Thu, 1 May 2008 09:16:40 -0700 Subject: [rt-users] RT login page not coming up (Cacti instead) In-Reply-To: <323109.31182.qm@web52901.mail.re2.yahoo.com> References: <323109.31182.qm@web52901.mail.re2.yahoo.com> Message-ID: <33DEE66ED2E72346ABC638427A77014050C35F@PTSOEXCHANGE.PTSOWA.ORG> Check your apache virtual sites settings Aaron Sallade' Application Manager PTSO of Washington "Shared Technology for Community Health" (206) 613-8938 Desk (206) 521-8833 Main (206) 613-5078 Fax asallade at ptsowa.org -----Original Message----- From: Shannon Adams [mailto:shannon_adams68 at yahoo.com] Sent: Thursday, May 01, 2008 9:06 AM To: rt-users at lists.bestpractical.com Subject: [rt-users] RT login page not coming up (Cacti instead) I have installed RT 3.6.6 for testing on an old server running FC4. It is setup the same as our live server, as far as I can tell. However, when browsing to the URL or IP of the server, The RT login page does not come up. A "Cacti" user login page does instead. It looks like Cacti is a package that comes with Fedora. I can't figure out why this is coming up instead of RT. Any suggestions? Thanks, Shannon ________________________________________________________________________ ____________ Be a better friend, newshound, and know-it-all with Yahoo! Mobile. Try it now. http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ _______________________________________________ http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-users Community help: http://wiki.bestpractical.com Commercial support: sales at bestpractical.com Discover RT's hidden secrets with RT Essentials from O'Reilly Media. Buy a copy at http://rtbook.bestpractical.com From KFCrocker at lbl.gov Thu May 1 12:29:01 2008 From: KFCrocker at lbl.gov (Kenneth Crocker) Date: Thu, 01 May 2008 09:29:01 -0700 Subject: [rt-users] WATCHERS In-Reply-To: References: Message-ID: <4819EFCD.4050302@lbl.gov> Andrew, Gene is right, it CAN get confusing, especially when you are just starting. For example, the "Watch" and "WatchAsAdminCc" rights have NOTHING to do with getting email notifications. They allow a person to ADD that kind of watcher to a ticket as a seperate privilege from "ModfiyTicket". Let's say you are a "requestor" and the only rights the Administrator wants "Requestors" to have (globally) is "CreateTicket", "SeeQueue", "ShowTicket", ReplyToTicket". Although the first 3 have to do with creating and "Seeing" your OWN ticket, the last one allows you to respond to a notification from RT and have your response added to the ticket history. You cannot modify the ticket in any other way. The "Watch" rights have to do with allowing that person (in this case a "Requestor") to "ADD" a watcher to their own ticket so that IF (that's a big if) there is a scrip for notifying OTHERS with correspondence, then the person they add will ALSO get a copy of any email correspondence. Let's say you wanted a team member to get a copy, or your boss, when normally they are not a watcher for tickets in a particular queue. This right let's the "Requestor" (or whomever has this right) to add someone to the list of email recipients PROVIDING there is a scrip that will be triggered to notify them. Your situation sounds like you need to go to the queue basics page and add a watcher there AND be sure you have a notification scrip in play (globally or for that queue) that will "Notify AdminCc" or "Notify Cc's" On Correspondence. That may be a lot of email, but, "you da boss". Hope this helps. Kenn LBNL On 5/1/2008 5:40 AM, andrew fay wrote: > I am trying to add watchers to queues so that if an email comes in to a > certain queue the watcher will be notified about it and copied in to each response etc.. I have added a watcher to a queue and but the ticket > has no watcher by default for some reason ? > > I have set the user to have watch and watchasadmincc rights > > also i have set the user to watch the queue as admincc and watcher and it still doesn't add it to the tickets, > > any help would be great, > > cheers > > andy > > > ------------------------------------------------------------------------ > Invite your Facebook friends to Messenger! Get Started! > > > > ------------------------------------------------------------------------ > > _______________________________________________ > http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-users > > Community help: http://wiki.bestpractical.com > Commercial support: sales at bestpractical.com > > > Discover RT's hidden secrets with RT Essentials from O'Reilly Media. > Buy a copy at http://rtbook.bestpractical.com From lists at svrinformatica.it Thu May 1 12:25:13 2008 From: lists at svrinformatica.it (Mailing List SVR) Date: Thu, 1 May 2008 18:25:13 +0200 (CEST) Subject: [rt-users] Spreeadsheet, utf-8 and ms excel In-Reply-To: References: <1209644483.7515.3.camel@localhost.localdomain> <0A43D660-9AF2-4E00-9643-7C3E15C7B609@bestpractical.com> <1209657021.8801.4.camel@localhost.localdomain> Message-ID: <50945.217.202.145.71.1209659113.squirrel@www.svrinformatica.it> > > On May 1, 2008, at 11:50 AM, Mailing List SVR wrote: >> Il giorno gio, 01/05/2008 alle 09.55 -0400, Jesse Vincent ha scritto: >>> On May 1, 2008, at 8:21 AM, Mailing List SVR wrote: >>>> When export a search result as tsv spreedsheet ms excel doesn't >>>> properly >>>> display non ASCII characters: >>>> >>>> for example ? is displayed as ?? >>>> >>>> and so on, >>>> >>> >>> Nicola, What RT are you testing with? >> >> Thanks for your quick answer, >> >> I'm using rt 3.6.5 on centos 5.1, >> >> I quickly looked at 3.6.6 code and doesn't seem there are changes >> related to spreeadsheet generation >> >> If I open the tsv file with notepad and save it as unicode and then I >> open the file with ms excel all is fine, >> >> If I open with openoffice calc and import as utf-8 all is fine, >> >> even if I change content_type from application/vnd.ms-excel to text/ >> csv >> in Results.csv source file and then I import the generated tsv in ms >> excel and specify utf-8 encoding all is fine >> >> maybe some header in missing in tsv generation > > > Can you find out whether MS accepts a way to specify this from MIME > types (possbily application/vnd.ms-excel; charset=utf8) ? If there's a > change we can make, I'd be happy to make it It doesn't work ... Can I export the spreadsheets with iso-8859-15 encoding ? thanks Nicola -------------- next part -------------- An HTML attachment was scrubbed... URL: From KFCrocker at lbl.gov Thu May 1 12:30:55 2008 From: KFCrocker at lbl.gov (Kenneth Crocker) Date: Thu, 01 May 2008 09:30:55 -0700 Subject: [rt-users] Link issues in the Tickets section (ie: static search) In-Reply-To: <21044E8C915A7E43B90A1056127160F11EABF0@EXMAIL.protus.org> References: <21044E8C915A7E43B90A1056127160F11EA9DE@EXMAIL.protus.org> <21044E8C915A7E43B90A1056127160F11EABF0@EXMAIL.protus.org> Message-ID: <4819F03F.7020709@lbl.gov> Nelson, I'm not sure because I'm not seeing everything, but it sounds like one or more of your "Config" settings is wrong. Kenn LBNL On 5/1/2008 8:29 AM, Nelson Pereira wrote: > Anyone have an idea about the issue I am having? > > > > Nelson > > ------------------------------------------------------------------------ > > *From:* rt-users-bounces at lists.bestpractical.com > [mailto:rt-users-bounces at lists.bestpractical.com] *On Behalf Of *Nelson > Pereira > *Sent:* Tuesday, April 29, 2008 2:52 PM > *To:* rt-users at lists.bestpractical.com > *Subject:* [rt-users] Link issues in the Tickets section (ie: static search) > > > > Hi all, > > > > I?ve noticed a problem that I?m unsure when it actually started. > > > > When you click on the Tickets link > (https://domain.com/Search/Build.html) at the top of the page in RT at a > glance, > > When you click on one of the tickets that show up, the link is wrong, > hence brings you to a page cannot be displayed. > > > > The link looks like this: https://ticket/Display.html?id=143 > > When it should look like this: https://domain.com/Ticket/Display.html?id=143 > > > > Notice the host part missing and the ?t? is suppose to be Capitalized. > > > > Anyone can tell me how I can fix this? This seams to be an issue with > the search I think or something. > > > > > > *Nelson Pereira* > Senior Network Administrator > > Protus IP Solutions Inc. > npereira at protus.com > phone: 613.733.0000 ext.528 > MyFax: 613.822.5083 > www.myfax.com > > Refer your friends and colleagues to MyFax! > Click here for more information. > > > > > www.MyFax.com > > > > > ------------------------------------------------------------------------ > > _______________________________________________ > http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-users > > Community help: http://wiki.bestpractical.com > Commercial support: sales at bestpractical.com > > > Discover RT's hidden secrets with RT Essentials from O'Reilly Media. > Buy a copy at http://rtbook.bestpractical.com From shannon_adams68 at yahoo.com Thu May 1 12:31:17 2008 From: shannon_adams68 at yahoo.com (Shannon Adams) Date: Thu, 1 May 2008 09:31:17 -0700 (PDT) Subject: [rt-users] RT login page not coming up (Cacti instead) Message-ID: <321543.70877.qm@web52906.mail.re2.yahoo.com> That was it. Thanks! ----- Original Message ---- From: Aaron Sallade To: Shannon Adams ; rt-users at lists.bestpractical.com Sent: Thursday, May 1, 2008 12:16:40 PM Subject: RE: [rt-users] RT login page not coming up (Cacti instead) Check your apache virtual sites settings Aaron Sallade' Application Manager PTSO of Washington "Shared Technology for Community Health" (206) 613-8938 Desk (206) 521-8833 Main (206) 613-5078 Fax asallade at ptsowa.org -----Original Message----- From: Shannon Adams [mailto:shannon_adams68 at yahoo.com] Sent: Thursday, May 01, 2008 9:06 AM To: rt-users at lists.bestpractical.com Subject: [rt-users] RT login page not coming up (Cacti instead) I have installed RT 3.6.6 for testing on an old server running FC4. It is setup the same as our live server, as far as I can tell. However, when browsing to the URL or IP of the server, The RT login page does not come up. A "Cacti" user login page does instead. It looks like Cacti is a package that comes with Fedora. I can't figure out why this is coming up instead of RT. Any suggestions? Thanks, Shannon ________________________________________________________________________ ____________ Be a better friend, newshound, and know-it-all with Yahoo! Mobile. Try it now. http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ _______________________________________________ http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-users Community help: http://wiki.bestpractical.com Commercial support: sales at bestpractical.com Discover RT's hidden secrets with RT Essentials from O'Reilly Media. Buy a copy at http://rtbook.bestpractical.com ____________________________________________________________________________________ Be a better friend, newshound, and know-it-all with Yahoo! Mobile. Try it now. http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ From KFCrocker at lbl.gov Thu May 1 12:35:12 2008 From: KFCrocker at lbl.gov (Kenneth Crocker) Date: Thu, 01 May 2008 09:35:12 -0700 Subject: [rt-users] Spreeadsheet, utf-8 and ms excel In-Reply-To: <1209657021.8801.4.camel@localhost.localdomain> References: <1209644483.7515.3.camel@localhost.localdomain> <0A43D660-9AF2-4E00-9643-7C3E15C7B609@bestpractical.com> <1209657021.8801.4.camel@localhost.localdomain> Message-ID: <4819F140.9050202@lbl.gov> Nicola, When you save your spreadsheet, what do you have in the "save as type" dropdown? Make sure it is NOT ",txt" or anything other than ".xls". Kenn LBNL On 5/1/2008 8:50 AM, Mailing List SVR wrote: > Il giorno gio, 01/05/2008 alle 09.55 -0400, Jesse Vincent ha scritto: >> On May 1, 2008, at 8:21 AM, Mailing List SVR wrote: >>> When export a search result as tsv spreedsheet ms excel doesn't >>> properly >>> display non ASCII characters: >>> >>> for example ? is displayed as ?? >>> >>> and so on, >>> >> Nicola, What RT are you testing with? > > Thanks for your quick answer, > > I'm using rt 3.6.5 on centos 5.1, > > I quickly looked at 3.6.6 code and doesn't seem there are changes > related to spreeadsheet generation > > If I open the tsv file with notepad and save it as unicode and then I > open the file with ms excel all is fine, > > If I open with openoffice calc and import as utf-8 all is fine, > > even if I change content_type from application/vnd.ms-excel to text/csv > in Results.csv source file and then I import the generated tsv in ms > excel and specify utf-8 encoding all is fine > > maybe some header in missing in tsv generation > >>> the exported file is utf-8 encoded but I think this info isn't >>> passed to ms excel. >>> >>> any hint? >>> >>> regards >>> Nicola >>> >>> _______________________________________________ >>> http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-users >>> >>> Community help: http://wiki.bestpractical.com >>> Commercial support: sales at bestpractical.com >>> >>> >>> Discover RT's hidden secrets with RT Essentials from O'Reilly Media. >>> Buy a copy at http://rtbook.bestpractical.com >>> > > _______________________________________________ > http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-users > > Community help: http://wiki.bestpractical.com > Commercial support: sales at bestpractical.com > > > Discover RT's hidden secrets with RT Essentials from O'Reilly Media. > Buy a copy at http://rtbook.bestpractical.com > From lists at svrinformatica.it Thu May 1 12:40:06 2008 From: lists at svrinformatica.it (Mailing List SVR) Date: Thu, 1 May 2008 18:40:06 +0200 (CEST) Subject: [rt-users] Spreeadsheet, utf-8 and ms excel In-Reply-To: <4819F140.9050202@lbl.gov> References: <1209644483.7515.3.camel@localhost.localdomain> <0A43D660-9AF2-4E00-9643-7C3E15C7B609@bestpractical.com> <1209657021.8801.4.camel@localhost.localdomain> <4819F140.9050202@lbl.gov> Message-ID: <41396.217.202.145.71.1209660006.squirrel@www.svrinformatica.it> > Nicola, > > > When you save your spreadsheet, what do you have in the "save as type" > dropdown? Make sure it is NOT ",txt" or anything other than ".xls". > > > Kenn > LBNL Kenn, thanks for your answer, the type is xls. I did a test also changing charset as suggested here (UTF-16LE) http://www.weberdev.com/get_example-3701.html but still doesn't work > > On 5/1/2008 8:50 AM, Mailing List SVR wrote: >> Il giorno gio, 01/05/2008 alle 09.55 -0400, Jesse Vincent ha scritto: >>> On May 1, 2008, at 8:21 AM, Mailing List SVR wrote: >>>> When export a search result as tsv spreedsheet ms excel doesn't >>>> properly >>>> display non ASCII characters: >>>> >>>> for example ? is displayed as ?? >>>> >>>> and so on, >>>> >>> Nicola, What RT are you testing with? >> >> Thanks for your quick answer, >> >> I'm using rt 3.6.5 on centos 5.1, >> >> I quickly looked at 3.6.6 code and doesn't seem there are changes >> related to spreeadsheet generation >> >> If I open the tsv file with notepad and save it as unicode and then I >> open the file with ms excel all is fine, >> >> If I open with openoffice calc and import as utf-8 all is fine, >> >> even if I change content_type from application/vnd.ms-excel to text/csv >> in Results.csv source file and then I import the generated tsv in ms >> excel and specify utf-8 encoding all is fine >> >> maybe some header in missing in tsv generation >> >>>> the exported file is utf-8 encoded but I think this info isn't >>>> passed to ms excel. >>>> >>>> any hint? >>>> >>>> regards >>>> Nicola >>>> >>>> _______________________________________________ >>>> http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-users >>>> >>>> Community help: http://wiki.bestpractical.com >>>> Commercial support: sales at bestpractical.com >>>> >>>> >>>> Discover RT's hidden secrets with RT Essentials from O'Reilly Media. >>>> Buy a copy at http://rtbook.bestpractical.com >>>> >> >> _______________________________________________ >> http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-users >> >> Community help: http://wiki.bestpractical.com >> Commercial support: sales at bestpractical.com >> >> >> Discover RT's hidden secrets with RT Essentials from O'Reilly Media. >> Buy a copy at http://rtbook.bestpractical.com >> > > From grosland at mtsu.edu Thu May 1 12:58:19 2008 From: grosland at mtsu.edu (Matt Grosland) Date: Thu, 1 May 2008 11:58:19 -0500 Subject: [rt-users] Upgrade issue 3.0.10 to 3.6.6 Message-ID: Hi all, When upgrading from 3.0.10 to 3.6.6, I followed the upgrade file and did the following: @echo " $(RT_SBIN_PATH)/rt-setup-database --dba $(DB_DBA) --prompt-for-dba-passwor d --action schema --datadir etc/upgrade/" @echo " $(RT_SBIN_PATH)/rt-setup-database --dba $(DB_DBA) --prompt-for-dba-passwor d --action acl --datadir etc/upgrade/" @echo " $(RT_SBIN_PATH)/rt-setup-database --dba $(DB_DBA) --prompt-for-dba-passwor d --action insert --datadir etc/upgrade/" The first two worked fine on the first directory (3.1.0). When I did the 'insert' command for the 3.1.0 upgrade directory, however, I got this: DBI connect('dbname=rt3;host=localhost','rt',...) failed: Access denied for user 'rt'@'localhost' (using password: YES) at /Library/ Perl/5.8.6/DBIx/SearchBuilder/Handle.pm line 106 Connect Failed Access denied for user 'rt'@'localhost' (using password: YES) at /opt/rt3/lib/RT.pm line 220 I didn't change anything between the other commands, so I'm a bit perplexed. Ideas? -Matt Matt Grosland Manager of IT Dept of Recording Industry Middle Tennessee State University (615) 494-8997 grosland at mtsu.edu -------------- next part -------------- An HTML attachment was scrubbed... URL: From winn_johnston at yahoo.com Thu May 1 13:19:40 2008 From: winn_johnston at yahoo.com (Winn Johnston) Date: Thu, 1 May 2008 10:19:40 -0700 (PDT) Subject: [rt-users] Upgrade issue 3.0.10 to 3.6.6 In-Reply-To: Message-ID: <934138.84173.qm@web52908.mail.re2.yahoo.com> check the permissions on the user rt at localhost Try mysql -urt -hlocalhost -pPASSWORD once logged in try and create a db, and a table, then insert some data into it. Your account may only have read access. -winn --- Matt Grosland wrote: > Hi all, > > When upgrading from 3.0.10 to 3.6.6, I followed the > upgrade file and > did the following: > > @echo " > $(RT_SBIN_PATH)/rt-setup-database --dba $(DB_DBA) > --prompt-for-dba-passwor > d --action schema --datadir etc/upgrade/" > @echo " > $(RT_SBIN_PATH)/rt-setup-database --dba $(DB_DBA) > --prompt-for-dba-passwor > d --action acl --datadir etc/upgrade/" > @echo " > $(RT_SBIN_PATH)/rt-setup-database --dba $(DB_DBA) > --prompt-for-dba-passwor > d --action insert --datadir etc/upgrade/" > > The first two worked fine on the first directory > (3.1.0). When I did > the 'insert' command for the 3.1.0 upgrade > directory, however, I got > this: > > > DBI connect('dbname=rt3;host=localhost','rt',...) > failed: Access > denied for user 'rt'@'localhost' (using password: > YES) at /Library/ > Perl/5.8.6/DBIx/SearchBuilder/Handle.pm line 106 > Connect Failed Access denied for user > 'rt'@'localhost' (using > password: YES) > at /opt/rt3/lib/RT.pm line 220 > > I didn't change anything between the other commands, > so I'm a bit > perplexed. Ideas? > > -Matt > Matt Grosland > Manager of IT > Dept of Recording Industry > Middle Tennessee State University > (615) 494-8997 > grosland at mtsu.edu > > > _______________________________________________ > http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-users > > Community help: http://wiki.bestpractical.com > Commercial support: sales at bestpractical.com > > > Discover RT's hidden secrets with RT Essentials from > O'Reilly Media. > Buy a copy at http://rtbook.bestpractical.com ____________________________________________________________________________________ Be a better friend, newshound, and know-it-all with Yahoo! Mobile. Try it now. http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ From grosland at mtsu.edu Thu May 1 14:16:12 2008 From: grosland at mtsu.edu (Matt Grosland) Date: Thu, 1 May 2008 13:16:12 -0500 Subject: [rt-users] 3.0.10 to 3.6.6 Upgrade NEVERMIND Message-ID: <1CFF90F5-3734-4552-B025-E7E286C5944C@mtsu.edu> The problem was the the RT_Config.pm file was overwritten and needed to have the rt user password reset. -Matt Matt Grosland Manager of IT Dept of Recording Industry Middle Tennessee State University (615) 494-8997 grosland at mtsu.edu -------------- next part -------------- An HTML attachment was scrubbed... URL: From lists at svrinformatica.it Thu May 1 14:29:36 2008 From: lists at svrinformatica.it (Mailing List SVR) Date: Thu, 1 May 2008 20:29:36 +0200 (CEST) Subject: [rt-users] Spreeadsheet, utf-8 and ms excel In-Reply-To: <50945.217.202.145.71.1209659113.squirrel@www.svrinformatica.it> References: <1209644483.7515.3.camel@localhost.localdomain> <0A43D660-9AF2-4E00-9643-7C3E15C7B609@bestpractical.com> <1209657021.8801.4.camel@localhost.localdomain> <50945.217.202.145.71.1209659113.squirrel@www.svrinformatica.it> Message-ID: <60822.217.201.148.195.1209666576.squirrel@www.svrinformatica.it> > > >> >> On May 1, 2008, at 11:50 AM, Mailing List SVR wrote: >>> Il giorno gio, 01/05/2008 alle 09.55 -0400, Jesse Vincent ha > scritto: >>>> On May 1, 2008, at 8:21 AM, Mailing List SVR > wrote: >>>>> When export a search result as tsv > spreedsheet ms excel doesn't >>>>> properly >>>>> display non ASCII characters: >>>>> >>>>> for example ? is displayed as ?? >>>>> >>>>> and so on, >>>>> >>>> >>>> Nicola, What RT are > you testing with? >>> >>> Thanks for your quick > answer, >>> >>> I'm using rt 3.6.5 on centos 5.1, >>> >>> I quickly looked at 3.6.6 code and doesn't seem > there are changes >>> related to spreeadsheet generation >>> >>> If I open the tsv file with notepad and save it > as unicode and then I >>> open the file with ms excel all is > fine, >>> >>> If I open with openoffice calc and > import as utf-8 all is fine, >>> >>> even if I change > content_type from application/vnd.ms-excel to text/ >>> csv >>> in Results.csv source file and then I import the generated tsv > in ms >>> excel and specify utf-8 encoding all is fine >>> >>> maybe some header in missing in tsv generation >> >> >> Can you find out whether MS accepts a way to > specify this from MIME >> types (possbily application/vnd.ms-excel; > charset=utf8) ? If there's a >> change we can make, I'd be happy to > make it > > It doesn't work ... > > Can I export the > spreadsheets with iso-8859-15 encoding ? > > thanks > Nicola > It seems that Excel doesn't use the charset header, it always import the file as Windows-1252 (on Windows). The only solution I found is to export as html entity. I tested the solution proposed here (export as html entity) and it works: http://www.listsearch.com/Lasso/Thread/index.lasso?16733 I would like some help to do this inside request tracker, thanks Nicola > _______________________________________________ > http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-users > > Community help: http://wiki.bestpractical.com > Commercial support: sales at bestpractical.com > > > Discover RT's hidden secrets with RT Essentials from O'Reilly Media. > Buy a copy at http://rtbook.bestpractical.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From jmhanks1373 at hotmail.com Thu May 1 17:55:42 2008 From: jmhanks1373 at hotmail.com (Jared Hanks) Date: Thu, 1 May 2008 14:55:42 -0700 Subject: [rt-users] Modify "Login" page, is it index.html? Message-ID: Hello, I'm trying to modify the RT "Login" page to add a few extra links (for going to our custom support ticket page, and a few others) and I'm not quite sure if I'm modifying the correct thing. I know anything that I want to change needs to be in the local/html, not share/html, directory. To add a few links above the "Login" section, do I just edit index.html, or is it another page I need to modify? I don't know HTML that well so I have Dreamweaver and CoffeeCup HTML editors. I tried looking around the internet and the wiki and couldn't find what I needed to do to add the links. Thanks,Jared _________________________________________________________________ Spell a grand slam in this game where word skill meets World Series. Get in the game. http://club.live.com/word_slugger.aspx?icid=word_slugger_wlhm_admod_april08 -------------- next part -------------- An HTML attachment was scrubbed... URL: From Horst.Kriegers at loterie.ch Fri May 2 02:18:12 2008 From: Horst.Kriegers at loterie.ch (Horst Kriegers) Date: Fri, 02 May 2008 08:18:12 +0200 Subject: [rt-users] CF - Select values rights Message-ID: <481ACE49.7061.0039.0@loterie.ch> I need to give some users the right to only add/remove values for a "select one from many" custom field. It is possible ? What are the rights which must be defined ? Thanks for your help. Horst ___________________________________________________________ Le contenu de ce courriel est uniquement r?serv? ? la personne ou l'organisme ? qui il est destin?. Si vous n'?tes pas le destinataire pr?vu, veuillez nous en informer au plus vite et d?truire le pr?sent courriel. Dans ce cas, il ne vous est pas permis de copier ce courriel, de le distribuer ou de l'utiliser de quelque mani?re que ce soit. The content of this e-mail is intended only and solely for the use of the named recipient or organisation. If you are not the named recipient, please inform us immediately and delete the present e-mail. In this case, you are nor allowed to copy, distribute or use this e-mail in any way. ___________________________________________________________ -------------- next part -------------- An HTML attachment was scrubbed... URL: From bduff at covista.com Fri May 2 12:33:36 2008 From: bduff at covista.com (Bob Duff) Date: Fri, 2 May 2008 12:33:36 -0400 Subject: [rt-users] RT 3.6.6 Install .. stuck on Apache configuration In-Reply-To: <970768.54287.qm@web52907.mail.re2.yahoo.com> Message-ID: Do not have an /etc/sysconfig/apache file on my server (CentOS 4). Do have an /etc/sysconfig/httpd, it does not list the apache modules. -----Original Message----- From: rt-users-bounces at lists.bestpractical.com [mailto:rt-users-bounces at lists.bestpractical.com] On Behalf Of Winn Johnston Sent: Thursday, May 01, 2008 11:27 AM To: rt-users at lists.bestpractical.com Subject: Re: [rt-users] RT 3.6.6 Install .. stuck on Apache configuration check your /etc/sysconfig/apache APACHE_MODULES="actions rewrite alias auth_basic authn_file authz_host authz_groupfile authz_default authz_user authn_dbm autoindex cgi dir env expires include log_config mime negotiation setenvif ssl suexec userdir php5 perl" make sure you have perl in there, then restart apache -winn --- Bob Duff wrote: > Tried a couple more things still no luck.. anyone else have any > advice? > > Thanks > Bob > > ________________________________ > From: rt-users-bounces at lists.bestpractical.com > [mailto:rt-users-bounces at lists.bestpractical.com] On Behalf Of Bob > Duff > Sent: Tuesday, April 29, 2008 5:00 PM > To: 'rt-users at lists.bestpractical.com' > Subject: [rt-users] RT 3.6.6 Install .. stuck on Apache configuration > > I'm have installed RT 3.6 successfully from source but there is a > configuration problem I can't seem to find. I get the following error > when I pull up my > url: > RT: Request Tracker > You're almost there! > > You haven't yet configured your webserver to run RT. > > You appear to have installed RT's web interface correctly, but haven't > yet configured your web server to "run" the RT server which powers the > web interface. > > The next step is to edit your webserver's configuration file to > instruct it to use RT's mod_perl , fastcgi or speedycgi handler. > > ______________________________________________________________________________________________________________ > > Here are my configuration files: > > httpd.conf virtual host section for rt: > > > > ServerName rt.covista.com > > DocumentRoot /opt/rt3/share/html > > AddDefaultCharset UTF-8 > > PerlModule Apache::DBI > > PerlRequire /opt/rt3/bin/webmux.pl > > > > SetHandler perl-script > > PerlHandler RT::Mason > > > > > > > > RT_SiteConfig.pm > > # Any configuration directives you include here will override # RT's > default configuration file, RT_Config.pm # # To include a directive > here, just copy the equivalent statement # from RT_Config.pm and > change the value. We've included a single # sample value below. > > # > > # This file is actually a perl module, so you can include valid # perl > code, as well. > > # > > # The converse is also true, if this file isn't valid perl, you're # > going to run into trouble. To check your SiteConfig file, use # this > comamnd: > > # > > # perl -c /path/to/your/etc/RT_SiteConfig.pm > > Set( $rtname, 'covista'); > > Set($Organization, "rt.covista.com"); > > Set($Timezone, 'US/Eastern'); > > Set($WebBaseURL, > "http://rt.covista.com"); > > Set($Webpath, "/rt3"); > > Set($CorrespondAddress, > 'correspond at rt.covista.com'); > > Set($CommentAddress, > 'comment at rt.covista.com'); > > Set($logToSyslog, ''); > > Set($logToFile, 'debug'); > > Set($LogDir, '/var/log'); > > Set($LogToFileNamed , "rt.log"); > > Set($OwnerEmail, > admin at covista.com); > > Set($MyTicketsLength, 20); > > Set($SendmailPath , "/usr/sbin/sendmail"); > > Set($SendmailArguments , "-oi -t"); > > 1; > > _____________________________________________________________________________________________________ > > Anyone see something I should have caught here? If not any tips on > how to resolve this problem? > > Thanks > Bob Duff > > > _______________________________________________ > http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-users > > Community help: http://wiki.bestpractical.com Commercial support: > sales at bestpractical.com > > > Discover RT's hidden secrets with RT Essentials from O'Reilly Media. > Buy a copy at http://rtbook.bestpractical.com ____________________________________________________________________________________ Be a better friend, newshound, and know-it-all with Yahoo! Mobile. Try it now. http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ _______________________________________________ http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-users Community help: http://wiki.bestpractical.com Commercial support: sales at bestpractical.com Discover RT's hidden secrets with RT Essentials from O'Reilly Media. Buy a copy at http://rtbook.bestpractical.com From yvo.vandoorn at gmail.com Fri May 2 13:37:01 2008 From: yvo.vandoorn at gmail.com (Yvo van Doorn) Date: Fri, 2 May 2008 10:37:01 -0700 Subject: [rt-users] RT 3.6.6 /w LDAP - Error: "Could not load a valid user" Message-ID: <740f716a0805021037y2ec9ebfas26c40c0af05dc9b0@mail.gmail.com> Hey everyone, I currently have RT 3.6.6 installed with the LDAP overlay. Everything has been peachy but a change was recently made by a parting employee to RT that impacted us negatively. The system no longer creates new users if they aren't in RT but are in LDAP. This used to work. For those that aren't in RT, they get an error like this one: Subject: Could not load a valid user Message: RT could not load a valid user, and RT's configuration does not allow for the creation of a new user for this email (nsi at an.okaycompany.com). You might need to grant 'Everyone' the right 'ReplyToTicket' for the queue hr. The queues do have the proper permissions assigned so that isn't where the problem lies. Here is my RT_SiteConfig.pm file: # Any configuration directives you include here will override # RT's default configuration file, RT_Config.pm # # To include a directive here, just copy the equivalent statement # from RT_Config.pm and change the value. We've included a single # sample value below. # # This file is actually a perl module, so you can include valid # perl code, as well. # # The converse is also true, if this file isn't valid perl, you're # going to run into trouble. To check your SiteConfig file, use # this comamnd: # # perl -c /path/to/your/etc/RT_SiteConfig.pm Set( $rtname, 'cmo'); Set($DatabasePassword , "rt_pass"); Set($Organization , "cmo"); Set($NotifyActor, 1); Set($WebBaseURL , "http://rt.okaycompany.com"); Set($ParseNewMessageForTicketCcs, 1); Set($ParseFollowupMessageForTicketCcs, 1); Set($Timezone, 'America/Los_Angeles'); Set($OwnerEmail , 'nsi at an.okaycompany.com'); Set($LoopsToRTOwner , 1); Set($StoreLoops , undef); Set($MaxAttachmentSize , 10000000); Set($TruncateLongAttachments , undef); Set($DropLongAttachments , undef); Set($RTAddressRegexp , '(((helpdesk)|[a-z]+-(support|oncall|todo|tools|system|ne twork))|\@rt|\@tickets|\@sgrt)'); Set($CanonicalizeOnCreate , 0); Set($SenderMustExistInExternalDatabase , false); Set($CorrespondAddress , 'RT_CorrespondAddressNotSet'); Set($CommentAddress , 'RT_CommentAddressNotSet'); Set($LogToFileNamed, "/var/log/rt3/rt.log"); Set($LogToFile, 'debug'); Set($AuthMethods, ['Internal','LDAP']); Set($LdapExternalAuth, 1); Set($LdapExternalInfo, 1); Set($LdapAutoCreateNonLdapUsers, 0); Set($LdapAttrMap, {'Name' => 'sAMAccountName', 'EmailAddress' => 'mail', 'Organization' => 'physicalDeliveryOfficeName', 'RealName' => 'cn', 'ExternalContactInfoId' => 'dn', 'ExternalAuthId' => 'sAMAccountName', 'Gecos' => 'sAMAccountName', 'WorkPhone' => 'telephoneNumber', 'Address1' => 'streetAddress', 'City' => 'l', 'State' => 'st', 'Zip' => 'postalCode', 'Country' => 'co'} ); Set($LdapRTAttrMatchList, ['ExternalContactInfoId', 'Name', 'EmailAddress', 'RealName', 'WorkPhone', 'Address2'] ); Set($LdapEmailAttrMatchList, ['mail', 'mailRoutingAddress', 'mailAlternateAddress'] ); #Set($LdapEmailAttrMatchPrefix, ['', 'SMTP:'] ); Set($LdapEmailAttrMatchPrefix, ['SMTP:'] ); Set($LdapServer, 'thecorporateoverloadldapserver.com:3268'); Set($LdapUser, 'theaccount'); Set($LdapPass, 'thepassword'); Set($LdapBase, 'DC=corp,DC=int,DC=corporateoverloard,DC=com'); Set($LdapUidAttr, 'sAMAccountName'); $LdapFilter="(objectclass=*)"; Set($LdapSSLVersion, 3); 1; Here is output from the logs: [Fri May 2 16:50:19 2008] [debug]: Converting 'us-ascii' to 'utf-8' for text/plain - [RT #110565] [cmo #70143] [Comment] Supervisor Changes (/ opt/rt3/lib/RT/I18N.pm:240) [Fri May 2 16:50:19 2008] [debug]: Found a ticket ID. It's 70143 (/opt/rt3/lib/RT/Interface/Email.pm:480) [Fri May 2 16:50:19 2008] [info]: RT::User::LookupExternalUserInfo : DC=,DC=corp,DC=int,DC=corpoverloard,DC=com mail=SMTP:payroll at tickets.int.corpoverloard.com => EmailAddress: , Name: , RealName: "" (/opt/rt3/local/lib/RT/User_Local.pm:563) [Fri May 2 16:50:19 2008] [info]: RT::User::LookupExternalUserInfo : DC=,DC=corp,DC=int,DC=corpoverloard,DC=com mailRoutingAddress=SMTP:payroll at tickets.i nt.corpoverloard.com => EmailAddress: , Name: , RealName: "" (/opt/rt3/local/lib/RT/User_Local.pm:563) [Fri May 2 16:50:19 2008] [debug]: About to think about scrips for transaction #839194 (/opt/rt3/lib/RT/Transaction_Overlay.pm:167) [Fri May 2 16:50:19 2008] [debug]: About to prepare scrips for transaction #839194 (/opt/rt3/lib/RT/Transaction_Overlay.pm:171) [Fri May 2 16:50:19 2008] [debug]: Found 1 scrips (/opt/rt3/lib/RT/Scrips_Overlay.pm:365) [Fri May 2 16:50:19 2008] [debug]: Converting 'us-ascii' to 'utf-8' for text/plain - [RT #110565] [cmo #70143] [Comment] Supervisor Changes (/ opt/rt3/lib/RT/I18N.pm:240) [Fri May 2 16:50:19 2008] [debug]: Found a ticket ID. It's 70143 (/opt/rt3/lib/RT/Interface/Email.pm:480) [Fri May 2 16:50:19 2008] [debug]: About to commit scrips for transaction #839194 (/opt/rt3/lib/RT/Transaction_Overlay.pm:180) [Fri May 2 16:50:20 2008] [info]: RT::User::LookupExternalUserInfo : DC=,DC=corp,DC=int,DC=corpoverloard,DC=com mailAlternateAddress=SMTP:payroll at tickets .int.corpoverloard.com => EmailAddress: , Name: , RealName: "" (/opt/rt3/local/lib/RT/User_Local.pm:563) [Fri May 2 16:50:20 2008] [info]: RT::User::LookupExternalUserInfo : DC=,DC=corp,DC=int,DC=corpoverloard,DC=com mail=SMTP:payroll at tickets.int.corpoverloard.com => EmailAddress: , Name: , RealName: "" (/opt/rt3/local/lib/RT/User_Local.pm:563) [Fri May 2 16:50:20 2008] [info]: RT::User::LookupExternalUserInfo : DC=,DC=corp,DC=int,DC=corpoverloard,DC=com sAMAccountName=payroll at tickets.int.corpoverloard.c om => EmailAddress: , Name: , RealName: "" (/opt/rt3/local/lib/RT/User_Local.pm:563) [Fri May 2 16:50:20 2008] [info]: RT::User::LookupExternalUserInfo : DC=,DC=corp,DC=int,DC=corpoverloard,DC=com mailRoutingAddress=SMTP:payroll at tickets.i nt.corpoverloard.com => EmailAddress: , Name: , RealName: "" (/opt/rt3/local/lib/RT/User_Local.pm:563) [Fri May 2 16:50:20 2008] [info]: RT::User::LookupExternalUserInfo : DC=,DC=corp,DC=int,DC=corpoverloard,DC=com mail=payroll at tickets.int.corpoverloard.com => Ema ilAddress: , Name: , RealName: "" (/opt/rt3/local/lib/RT/User_Local.pm:563) [Fri May 2 16:50:20 2008] [info]: RT::User::LookupExternalUserInfo : DC=,DC=corp,DC=int,DC=corpoverloard,DC=com mailAlternateAddress=SMTP:payroll at tickets .int.corpoverloard.com => EmailAddress: , Name: , RealName: "" (/opt/rt3/local/lib/RT/User_Local.pm:563) [Fri May 2 16:50:20 2008] [info]: RT::User::LookupExternalUserInfo : DC=,DC=corp,DC=int,DC=corpoverloard,DC=com cn=payroll at tickets.int.corpoverloard.com => Email Address: , Name: , RealName: "" (/opt/rt3/local/lib/RT/User_Local.pm:563) [Fri May 2 16:50:21 2008] [info]: RT::User::LookupExternalUserInfo : DC=,DC=corp,DC=int,DC=corpoverloard,DC=com sAMAccountName=payroll at tickets.int.corpoverloard.c om => EmailAddress: , Name: , RealName: "" (/opt/rt3/local/lib/RT/User_Local.pm:563) [Fri May 2 16:50:21 2008] [info]: RT::User::LookupExternalUserInfo : DC=,DC=corp,DC=int,DC=corpoverloard,DC=com mail=payroll at tickets.int.corpoverloard.com => Ema ilAddress: , Name: , RealName: "" (/opt/rt3/local/lib/RT/User_Local.pm:563) [Fri May 2 16:50:21 2008] [info]: RT::User::LookupExternalUserInfo : DC=,DC=corp,DC=int,DC=corpoverloard,DC=com cn=payroll at tickets.int.corpoverloard.com => Email Address: , Name: , RealName: "" (/opt/rt3/local/lib/RT/User_Local.pm:563) [Fri May 2 16:50:21 2008] [info]: RT::User::LookupExternalUserInfo : DC=,DC=corp,DC=int,DC=corpoverloard,DC=com mail=SMTP:payroll at tickets.int.corpoverloard.com => EmailAddress: , Name: , RealName: "" (/opt/rt3/local/lib/RT/User_Local.pm:563) [Fri May 2 16:50:21 2008] [info]: RT::User::LookupExternalUserInfo : DC=,DC=corp,DC=int,DC=corpoverloard,DC=com mail=SMTP:payroll at tickets.int.corpoverloard.com => EmailAddress: , Name: , RealName: "" (/opt/rt3/local/lib/RT/User_Local.pm:563) [Fri May 2 16:50:21 2008] [info]: RT::User::LookupExternalUserInfo : DC=,DC=corp,DC=int,DC=corpoverloard,DC=com mailRoutingAddress=SMTP:payroll at tickets.i nt.corpoverloard.com => EmailAddress: , Name: , RealName: "" (/opt/rt3/local/lib/RT/User_Local.pm:563) [Fri May 2 16:50:22 2008] [info]: RT::User::LookupExternalUserInfo : DC=,DC=corp,DC=int,DC=corpoverloard,DC=com mailRoutingAddress=SMTP:payroll at tickets.i nt.corpoverloard.com => EmailAddress: , Name: , RealName: "" (/opt/rt3/local/lib/RT/User_Local.pm:563) [Fri May 2 16:50:22 2008] [info]: RT::User::LookupExternalUserInfo : DC=,DC=corp,DC=int,DC=corpoverloard,DC=com mailAlternateAddress=SMTP:payroll at tickets .int.corpoverloard.com => EmailAddress: , Name: , RealName: "" (/opt/rt3/local/lib/RT/User_Local.pm:563) [Fri May 2 16:50:22 2008] [crit]: User creation failed in mailgateway: Could not set user info (/opt/rt3/lib/RT/Interface/Email.pm:243) [Fri May 2 16:50:22 2008] [info]: RT::User::LookupExternalUserInfo : DC=,DC=corp,DC=int,DC=corpoverloard,DC=com mailAlternateAddress=SMTP:payroll at tickets .int.corpoverloard.com => EmailAddress: , Name: , RealName: "" (/opt/rt3/local/lib/RT/User_Local.pm:563) [Fri May 2 16:50:22 2008] [crit]: User creation failed in mailgateway: Could not set user info (/opt/rt3/lib/RT/Interface/Email.pm:243) [Fri May 2 16:50:22 2008] [info]: RT::User::LookupExternalUserInfo : DC=,DC=corp,DC=int,DC=corpoverloard,DC=com mail=SMTP:payroll at tickets.int.corpoverloard.com => EmailAddress: , Name: , RealName: "" (/opt/rt3/local/lib/RT/User_Local.pm:563) [Fri May 2 16:50:23 2008] [info]: RT::User::LookupExternalUserInfo : DC=,DC=corp,DC=int,DC=corpoverloard,DC=com mailRoutingAddress=SMTP:payroll at tickets.i nt.corpoverloard.com => EmailAddress: , Name: , RealName: "" (/opt/rt3/local/lib/RT/User_Local.pm:563) [Fri May 2 16:50:23 2008] [info]: RT::User::LookupExternalUserInfo : DC=,DC=corp,DC=int,DC=corpoverloard,DC=com mail=SMTP:payroll at tickets.int.corpoverloard.com => EmailAddress: , Name: , RealName: "" (/opt/rt3/local/lib/RT/User_Local.pm:563) [Fri May 2 16:50:23 2008] [info]: RT::User::LookupExternalUserInfo : DC=,DC=corp,DC=int,DC=corpoverloard,DC=com mailAlternateAddress=SMTP:payroll at tickets .int.corpoverloard.com => EmailAddress: , Name: , RealName: "" (/opt/rt3/local/lib/RT/User_Local.pm:563) [Fri May 2 16:50:23 2008] [warning]: Couldn't load user 'payroll at tickets.int.corpoverloard.com'.giving up (/opt/rt3/lib/RT/Interface/Email.pm:329) [Fri May 2 16:50:23 2008] [crit]: User 'payroll at tickets.int.corpoverloard.com' could not be loaded in the mail gateway (/opt/rt3/lib/RT/Interface/Email. pm:243) [Fri May 2 16:50:23 2008] [info]: RT::User::LookupExternalUserInfo : DC=,DC=corp,DC=int,DC=corpoverloard,DC=com mailRoutingAddress=SMTP:payroll at tickets.i nt.corpoverloard.com => EmailAddress: , Name: , RealName: "" (/opt/rt3/local/lib/RT/User_Local.pm:563) [Fri May 2 16:50:23 2008] [error]: RT could not load a valid user, and RT's configuration does not allow for the creation of a new user for this email (nsi at corp.okaycompany.com). You might need to grant 'Everyone' the right 'ReplyToTicket' for the queue hr. (/opt/rt3/lib/RT/Interface/Email.pm:243) [Fri May 2 16:50:24 2008] [info]: RT::User::LookupExternalUserInfo : DC=,DC=corp,DC=int,DC=corpoverloard,DC=com mailAlternateAddress=SMTP:payroll at tickets .int.corpoverloard.com => EmailAddress: , Name: , RealName: "" (/opt/rt3/local/lib/RT/User_Local.pm:563) [Fri May 2 16:50:24 2008] [warning]: Couldn't load user 'payroll at tickets.int.corpoverloard.com'.giving up (/opt/rt3/lib/RT/Interface/Email.pm:329) [Fri May 2 16:50:24 2008] [crit]: User 'payroll at tickets.int.corpoverloard.com' could not be loaded in the mail gateway (/opt/rt3/lib/RT/Interface/Email. pm:243) [Fri May 2 16:50:24 2008] [error]: Could not record email: Could not load a valid user (/opt/rt3/share/html/REST/1.0/NoAuth/mail-gateway:75) [Fri May 2 16:50:24 2008] [error]: RT could not load a valid user, and RT's configuration does not allow for the creation of a new user for this email (nsi at corp.okaycompany.com). You might need to grant 'Everyone' the right 'ReplyToTicket' for the queue hr. (/opt/rt3/lib/RT/Interface/Email.pm:243) From mike.peachey at jennic.com Fri May 2 13:40:06 2008 From: mike.peachey at jennic.com (Mike Peachey) Date: Fri, 02 May 2008 18:40:06 +0100 Subject: [rt-users] RT 3.6.6 /w LDAP - Error: "Could not load a valid user" In-Reply-To: <740f716a0805021037y2ec9ebfas26c40c0af05dc9b0@mail.gmail.com> References: <740f716a0805021037y2ec9ebfas26c40c0af05dc9b0@mail.gmail.com> Message-ID: <481B51F6.5040001@jennic.com> Yvo van Doorn wrote: > Set($LdapUidAttr, 'sAMAccountName'); > $LdapFilter="(objectclass=*)"; > Set($LdapSSLVersion, 3); Set missing from LdapFilter. -- Kind Regards, __________________________________________________ Mike Peachey, IT Tel: +44 114 281 2655 Fax: +44 114 281 2951 Jennic Ltd, Furnival Street, Sheffield, S1 4QT, UK Comp Reg No: 3191371 - Registered In England http://www.jennic.com __________________________________________________ From mike.peachey at jennic.com Fri May 2 13:50:40 2008 From: mike.peachey at jennic.com (Mike Peachey) Date: Fri, 02 May 2008 18:50:40 +0100 Subject: [rt-users] RT 3.6.6 /w LDAP - Error: "Could not load a valid user" In-Reply-To: <740f716a0805021046s3b5bb8d2o2120a510be99ec8@mail.gmail.com> References: <740f716a0805021037y2ec9ebfas26c40c0af05dc9b0@mail.gmail.com> <481B51F6.5040001@jennic.com> <740f716a0805021046s3b5bb8d2o2120a510be99ec8@mail.gmail.com> Message-ID: <481B5470.8080508@jennic.com> Yvo van Doorn wrote: > On Fri, May 2, 2008 at 10:40 AM, Mike Peachey wrote: >> Yvo van Doorn wrote: >> >>> Set($LdapUidAttr, 'sAMAccountName'); >>> $LdapFilter="(objectclass=*)"; >>> Set($LdapSSLVersion, 3); >>> >> >> Set missing from LdapFilter. >> > Fixed this just now. Would this cause it to error like this? Difficult to say.. it's all a bit of a mess. Test it. -- Kind Regards, __________________________________________________ Mike Peachey, IT Tel: +44 114 281 2655 Fax: +44 114 281 2951 Jennic Ltd, Furnival Street, Sheffield, S1 4QT, UK Comp Reg No: 3191371 - Registered In England http://www.jennic.com __________________________________________________ From lists_rt at amnesiamachine.com Fri May 2 14:08:00 2008 From: lists_rt at amnesiamachine.com (RT Lists) Date: Fri, 2 May 2008 12:08:00 -0600 Subject: [rt-users] Link issues in the Tickets section (ie: static search) In-Reply-To: <21044E8C915A7E43B90A1056127160F11EA9DE@EXMAIL.protus.org> References: <21044E8C915A7E43B90A1056127160F11EA9DE@EXMAIL.protus.org> Message-ID: <1a260ce60805021108vc101351g53021ea2a9bac0ee@mail.gmail.com> Hi Nelson, Forgive me if I'm covering what you've tried already. To start out, in your RT_SiteConfig, verify your WebPath and WebBaseURL settings. As an example, here's the relevant settings from an existing RT setup: Set($WebPath , "/rt"); Set($WebBaseURL , "http://10.0.0.15:$WebPort"); This tells RT that it's supposed to be located at http://10.0.0.15:80/rt (I think in your case, $WebPath would be just "/"). As for the capitalization issue... have you performed any changes whatsoever to RT-related files, other than RT_SiteConfig.pm in [rtpath]/etc? -Matt On Tue, Apr 29, 2008 at 12:51 PM, Nelson Pereira wrote: > Hi all, > > > > I've noticed a problem that I'm unsure when it actually started. > > > > When you click on the Tickets link (https://domain.com/Search/Build.html) > at the top of the page in RT at a glance, > > When you click on one of the tickets that show up, the link is wrong, > hence brings you to a page cannot be displayed. > > > > The link looks like this: https://ticket/Display.html?id=143 > > When it should look like this: > https://domain.com/Ticket/Display.html?id=143 > > > > Notice the host part missing and the "t" is suppose to be Capitalized. > > > > Anyone can tell me how I can fix this? This seams to be an issue with the > search I think or something. > > > > > > *Nelson Pereira* > Senior Network Administrator > > Protus IP Solutions Inc. > npereira at protus.com > phone: 613.733.0000 ext.528 > MyFax: 613.822.5083 > www.myfax.com > > Refer your friends and colleagues to MyFax! > Click here for more information. > > [image: www.MyFax.com] > > > > _______________________________________________ > http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-users > > Community help: http://wiki.bestpractical.com > Commercial support: sales at bestpractical.com > > > Discover RT's hidden secrets with RT Essentials from O'Reilly Media. > Buy a copy at http://rtbook.bestpractical.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.gif Type: image/gif Size: 4180 bytes Desc: not available URL: From KFCrocker at lbl.gov Fri May 2 14:13:52 2008 From: KFCrocker at lbl.gov (Kenneth Crocker) Date: Fri, 02 May 2008 11:13:52 -0700 Subject: [rt-users] CF - Select values rights In-Reply-To: <481ACE49.7061.0039.0@loterie.ch> References: <481ACE49.7061.0039.0@loterie.ch> Message-ID: <481B59E0.2050207@lbl.gov> Horst, What other rights do those users have and are they "Global" rights or for a specific queue? Are they rights granted to individual users or user only in a certain group? Is the CF applied to ALL queues or just that specific one? Normally, one would have to go to Configuration->Custom Field->Group Rights and grant the appropriate rights to the correct group or user, depending on how your infrastructure is set up, but you didn't specify whether you grant rights to users individually, globally or only in groups. That would help. Kenn LBNL On 5/1/2008 11:18 PM, Horst Kriegers wrote: > I need to give some users the right to only add/remove values for > a "select one from many" custom field. > > It is possible ? What are the rights which must be defined ? > > Thanks for your help. > Horst > > > > _______________________________________________________________________ > > Le contenu de ce courriel est uniquement r?serv? ? la personne ou > l'organisme ? qui il est destin?. Si vous n'?tes pas le destinataire > pr?vu, veuillez nous en informer au plus vite et d?truire le pr?sent > courriel. Dans ce cas, il ne vous est pas permis de copier ce courriel, > de le distribuer ou de l'utiliser de quelque mani?re que ce soit. > > _______________________________________________________________________ > > The content of this e-mail is intended only and solely for the use of > the named recipient or organisation. If you are not the named recipient, > please inform us immediately and delete the present e-mail. In this > case, you are nor allowed to copy, distribute or use this e-mail in any > way. > > _______________________________________________________________________ > > > ------------------------------------------------------------------------ > > _______________________________________________ > http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-users > > Community help: http://wiki.bestpractical.com > Commercial support: sales at bestpractical.com > > > Discover RT's hidden secrets with RT Essentials from O'Reilly Media. > Buy a copy at http://rtbook.bestpractical.com From jsmoriss at mvlan.net Fri May 2 14:38:00 2008 From: jsmoriss at mvlan.net (Jean-Sebastien Morisset) Date: Fri, 2 May 2008 18:38:00 +0000 Subject: [rt-users] RTAT Import? In-Reply-To: <20080430191909.GC26799@zaphod.mvlan.net> References: <20080429140122.GE18150@zaphod.mvlan.net> <1209482801.18662.38.camel@mlap> <20080429200850.GA3822@zaphod.mvlan.net> <1209500104.18662.60.camel@mlap> <20080429201839.GB3822@zaphod.mvlan.net> <1209501163.18662.65.camel@mlap> <20080429210156.GA8944@zaphod.mvlan.net> <1209575215.19886.12.camel@mlap> <20080430175139.GB26799@zaphod.mvlan.net> <20080430191909.GC26799@zaphod.mvlan.net> Message-ID: <20080502183800.GB16499@zaphod.mvlan.net> On Wed, Apr 30, 2008 at 07:19:09PM +0000, Jean-Sebastien Morisset wrote: > On Wed, Apr 30, 2008 at 05:51:39PM +0000, Jean-Sebastien Morisset wrote: >> >> Aha! Thanks! Ok, so far this seems to work well: > [snip!] > > Alright, so I spent a little more time on this script, and added some > validation against the customfield select values. Here's an example: [snip!] Well, I couldn't leave well enough alone, and kept tweeking the import script. I know a few people are already using my first script, so you'll probably enjoy this little update (script attached). :-) [root:/opt/rt3/bin] # ./rt-import-assets.pl syntax: ./rt-import-assets.pl [-h] [-c] [-d] -f {csvfile} -c: create missing assets (script only updates by default) -d: change empty Description csv fields to Manufacturer and Model js. -- Jean-Sebastien Morisset, Sr. UNIX Administrator -------------- next part -------------- #!/usr/bin/perl use lib qw(/opt/rt3/local/lib /opt/rt3/lib); use RT; use RTx::AssetTracker::Asset; use Getopt::Std; use strict; our ($opt_h, $opt_d, $opt_c, $opt_f); getopts('hcdf:'); RT::LoadConfig(); RT::Init(); my $at = RTx::AssetTracker::Asset->new(RT->SystemUser); my %csv_map; my $csv_col; my $ln; my $status; my $msg; if ($opt_h || !$opt_f) { print "syntax: $0 [-h] [-c] [-d] -f {csvfile}\n"; print "\t-c: create missing assets (script only updates by default)\n"; print "\t-d: change empty Description csv fields to Manufacturer and Model\n"; exit 0; } open(CSV, "< $opt_f") or die "$!\n"; while () { chomp; $ln++; my $lv = $_; # fix empty fields without double-quotes while (s/",(,+")/",""$1/g) {}; # csv fields should be padded with double quotes, # which allows the use of commas in field values. s/^"//; s/"$//; my @csv = split(/","/); # the first line should be a header. header names # must match customfield names, plus the Name, # Status and Type headers. if ($ln == 1) { if ($lv !~ /"Name"/ || $lv !~ /"Status"/ || $lv !~ /"Type"/) { print "error: need at least the Name, Status and Type headers\n"; exit 1; } # remember the column number for each field name. # this allows us to include only those columns we # want in the csv, and in whatever order we want. for (@csv) { $csv_map{$_} = $csv_col++; } next; } if (!$csv[$csv_map{"Name"}]) { print "error: cannot load blank asset Name in $lv\n"; next; } # change empty description csv fields to manufacturer and model if ($opt_d && defined $csv_map{"Description"} && !$csv[$csv_map{"Description"}] && $csv[$csv_map{"Manufacturer"}] && $csv[$csv_map{"Model"}]) { $csv[$csv_map{"Description"}] = $csv[$csv_map{"Manufacturer"}]." ".$csv[$csv_map{"Model"}]; } print $csv[$csv_map{"Name"}].":\n"; # load the asset, and on failure, create the asset. if (my $id = $at->Load($csv[$csv_map{"Name"}])) { # the New Name column, if present, allows us to change the asset name. for my $fn ("New Name", "Status", "Type", "Description") { if (defined $csv_map{$fn}) { # if we have a New Name defined, make sure it's not # empty and it's different from the current Name if ($fn eq "New Name" && $csv[$csv_map{$fn}] && $csv[$csv_map{$fn}] ne $csv["Name"]) { ($status, $msg) = $at->_Set( Field => "Name", Value => $csv[$csv_map{$fn}], RecordTransaction => 0); } else { ($status, $msg) = $at->_Set( Field => $fn, Value => $csv[$csv_map{$fn}], RecordTransaction => 0); } print "\t$msg\n" if ($status); } } } else { if (!$csv[$csv_map{"Status"}] || !$csv[$csv_map{"Type"}]) { print "\terror: need a Status and Type to create an asset!\n"; next; } if ($opt_c) { # create using only the essential fields my ($id, $t, $msg) = $at->Create ( Name => $csv[$csv_map{"Name"}], Status => $csv[$csv_map{"Status"}], Type => $csv[$csv_map{"Type"}], RecordTransaction => 0, ); print "\t$msg\n" if ($msg); # set the description - if we have this field in the csv if (defined $csv_map{"Description"}) { ($status, $msg) = $at->_Set( Field => "Description", Value => $csv[$csv_map{"Description"}], RecordTransaction => 0); print "\t$msg\n" if ($status); } } else { print "\tno create argument - skipping asset creation\n"; next; } } my $atcf = $at->CustomFields(); # check each customfield for this asset while (my $cf = $atcf->Next()) { # check to see if we have a CSV column for this customfield if ($csv_col = $csv_map{$cf->Name}) { my $accept; if ($cf->Type eq "Select") { # read all selectable values for this customfield my $cfvs = $cf->Values; while (my $value = $cfvs->Next) { # check to see if new values is defined in select if ($value->Name eq $csv[$csv_col]) { $accept = 1; last; } } } elsif ($cf->Type eq "Freeform") { $accept = 1; } else { print "\tneed more code for ".$cf->Type." customfield type\n"; } if ($accept) { ($status, $msg) = $at->AddCustomFieldValue( Field => $cf->Id, Value => $csv[$csv_col], RecordTransaction => 0, ); print "\t$msg\n" if ($msg); } else { # don't print an error for empty select values print "\t\"$csv[$csv_col]\" value not ok for ".$cf->Name." customfield\n" if ($csv[$csv_col]); } } } } From npereira at protus.com Fri May 2 15:21:46 2008 From: npereira at protus.com (Nelson Pereira) Date: Fri, 2 May 2008 15:21:46 -0400 Subject: [rt-users] Link issues in the Tickets section (ie: static search) In-Reply-To: <1a260ce60805021108vc101351g53021ea2a9bac0ee@mail.gmail.com> References: <21044E8C915A7E43B90A1056127160F11EA9DE@EXMAIL.protus.org> <1a260ce60805021108vc101351g53021ea2a9bac0ee@mail.gmail.com> Message-ID: <21044E8C915A7E43B90A1056127160F11EADB2@EXMAIL.protus.org> Set($WebPath , "/"); Set($WebBaseURL , "https://rt.protus.org"); The problem seems to be when RT creates tickets from emails. Nelson ________________________________ From: RT Lists [mailto:lists_rt at amnesiamachine.com] Sent: Friday, May 02, 2008 2:08 PM To: Nelson Pereira Cc: rt-users at lists.bestpractical.com Subject: Re: [rt-users] Link issues in the Tickets section (ie: static search) Hi Nelson, Forgive me if I'm covering what you've tried already. To start out, in your RT_SiteConfig, verify your WebPath and WebBaseURL settings. As an example, here's the relevant settings from an existing RT setup: Set($WebPath , "/rt"); Set($WebBaseURL , "http://10.0.0.15:$WebPort"); This tells RT that it's supposed to be located at http://10.0.0.15:80/rt (I think in your case, $WebPath would be just "/"). As for the capitalization issue... have you performed any changes whatsoever to RT-related files, other than RT_SiteConfig.pm in [rtpath]/etc? -Matt On Tue, Apr 29, 2008 at 12:51 PM, Nelson Pereira wrote: Hi all, I've noticed a problem that I'm unsure when it actually started. When you click on the Tickets link ( https://domain.com/Search/Build.html) at the top of the page in RT at a glance, When you click on one of the tickets that show up, the link is wrong, hence brings you to a page cannot be displayed. The link looks like this: https://ticket/Display.html?id=143 When it should look like this: https://domain.com/Ticket/Display.html?id=143 Notice the host part missing and the "t" is suppose to be Capitalized. Anyone can tell me how I can fix this? This seams to be an issue with the search I think or something. Nelson Pereira Senior Network Administrator Protus IP Solutions Inc. npereira at protus.com phone: 613.733.0000 ext.528 MyFax: 613.822.5083 www.myfax.com Refer your friends and colleagues to MyFax! Click here for more information. _______________________________________________ http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-users Community help: http://wiki.bestpractical.com Commercial support: sales at bestpractical.com Discover RT's hidden secrets with RT Essentials from O'Reilly Media. Buy a copy at http://rtbook.bestpractical.com -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.gif Type: image/gif Size: 4180 bytes Desc: image001.gif URL: From gleduc at mail.sdsu.edu Fri May 2 15:55:05 2008 From: gleduc at mail.sdsu.edu (Gene LeDuc) Date: Fri, 02 May 2008 12:55:05 -0700 Subject: [rt-users] Link issues in the Tickets section (ie: static search) In-Reply-To: <21044E8C915A7E43B90A1056127160F11EADB2@EXMAIL.protus.org> References: <21044E8C915A7E43B90A1056127160F11EA9DE@EXMAIL.protus.org> <1a260ce60805021108vc101351g53021ea2a9bac0ee@mail.gmail.com> <21044E8C915A7E43B90A1056127160F11EADB2@EXMAIL.protus.org> Message-ID: <6.2.1.2.2.20080502124911.02448450@mail.sdsu.edu> Hi Nelson, The address for my RT is https://server.myorg.org/rt Here's what works for me: Set($WebPath , "/rt"); Set($WebPort , 443); Set($WebBaseURL , "https://server.myorg.org:$WebPort"); Set($WebURL , $WebBaseURL . $WebPath . "/"); Maybe it's the $WebPort setting in $WebBaseURL... Regards, Gene At 12:21 PM 5/2/2008, Nelson Pereira wrote: >Content-class: urn:content-classes:message >Content-Type: multipart/related; > type="multipart/alternative"; > boundary="----_=_NextPart_001_01C8AC89.C060F533" > >Set($WebPath , "/"); >Set($WebBaseURL , "https://rt.protus.org"); > >The problem seems to be when RT creates tickets from emails. > >Nelson > -- Gene LeDuc, GSEC Security Analyst San Diego State University -------------- next part -------------- An HTML attachment was scrubbed... URL: From barnesaw at ucrwcu.rwc.uc.edu Fri May 2 17:25:27 2008 From: barnesaw at ucrwcu.rwc.uc.edu (Drew Barnes) Date: Fri, 02 May 2008 17:25:27 -0400 Subject: [rt-users] Link issues in the Tickets section (ie: static search) In-Reply-To: <21044E8C915A7E43B90A1056127160F11EA9DE@EXMAIL.protus.org> References: <21044E8C915A7E43B90A1056127160F11EA9DE@EXMAIL.protus.org> Message-ID: <481B86C7.8050300@ucrwcu.rwc.uc.edu> It sounds like your $DefaultSearchResultFormat may be broken. Did you set this in RT_SiteConfig.pm? If not, check it in RT_Config.pm to make sure nothing got messed up there. Barring anything there, go to Advanced on /Search/Build.html in your browser. Look at the bottom text box, as that defines your search result format. On every system I've played with, that shows links formed as __id__ I suspect yours will show as >__id__ or something similar. For your reference, in RT_Config.pm on my live system I have # $DefaultSearchResultFormat is the default format for RT search results Set ($DefaultSearchResultFormat, qq{ '__id__/TITLE:#', '__Subject__/TITLE:Subject', Status, QueueName, OwnerName, Priority, '__NEWLINE__', '', '__Requestors__', '__CreatedRelative__', '__ToldRelative__', '__LastUpdatedRelative__', '__TimeLeft__'}); YMMV. Hope this helps you track it down. Nelson Pereira wrote: > > Hi all, > > > > I?ve noticed a problem that I?m unsure when it actually started. > > > > When you click on the Tickets link > (https://domain.com/Search/Build.html) at the top of the page in RT at > a glance, > > When you click on one of the tickets that show up, the link is wrong, > hence brings you to a page cannot be displayed. > > > > The link looks like this: https://ticket/Display.html?id=143 > > When it should look like this: > https://domain.com/Ticket/Display.html?id=143 > > > > Notice the host part missing and the ?t? is suppose to be Capitalized. > > > > Anyone can tell me how I can fix this? This seams to be an issue with > the search I think or something. > > > > > > *Nelson Pereira* > Senior Network Administrator > > Protus IP Solutions Inc. > npereira at protus.com > phone: 613.733.0000 ext.528 > MyFax: 613.822.5083 > www.myfax.com > > Refer your friends and colleagues to MyFax! > Click here for more information. > > > > > www.MyFax.com > > > > ------------------------------------------------------------------------ > > _______________________________________________ > http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-users > > Community help: http://wiki.bestpractical.com > Commercial support: sales at bestpractical.com > > > Discover RT's hidden secrets with RT Essentials from O'Reilly Media. > Buy a copy at http://rtbook.bestpractical.com From maurice at iparadigms.com Fri May 2 20:17:07 2008 From: maurice at iparadigms.com (Maurice Chung) Date: Fri, 2 May 2008 17:17:07 -0700 (PDT) Subject: [rt-users] RT 3.6.3; how to have queue-specific scrip override global? Message-ID: <30106762.29621209773827757.JavaMail.root@mail.turnitin.com> Hello, We have a queue-specific scrip that we'd like to override a global scrip with the same conditions; I found this patch: http://page.mi.fu-berlin.de/pape/rt3screenshots/ but was wondering if there was a way in RT (ver. 3.6.3) that I am not aware of, of doing this? Looked through the RT Wiki pages on scrips but no dice =) Thanks all - maurice ------------------------------------------------------------------ Maurice Chung JrSysAdmin iParadigms, LLC - developers of Turnitin and iThenticate 1624 Franklin Street, 7th Floor Oakland, CA 94612 p +1.510.287.9720 x309 f +1.510.444.1952 e maurice at iparadigms.com iParadigms, LLC is committed to developing standard-setting, internet-based tools that protect intellectual property, promote academic and corporate integrity, and improve overall client productivity. The information contained in this message may be privileged and confidential and protected from disclosure. If the reader of this message is not the intended recipient, or an employee or agent responsible for delivering this message to the intended recipient, you are hereby notified that any dissemination, distribution or copying of this communication is strictly prohibited. If you have received this communication in error, please notify the sender immediately by replying to the message and deleting it from your computer. From asallade at PTSOWA.ORG Sat May 3 20:55:38 2008 From: asallade at PTSOWA.ORG (Aaron Sallade) Date: Sat, 3 May 2008 17:55:38 -0700 Subject: [rt-users] RT 3.6.3; how to have queue-specific scrip override global? In-Reply-To: <30106762.29621209773827757.JavaMail.root@mail.turnitin.com> References: <30106762.29621209773827757.JavaMail.root@mail.turnitin.com> Message-ID: <33DEE66ED2E72346ABC638427A77014050C45E@PTSOEXCHANGE.PTSOWA.ORG> Remove the scrip from global, and add it to all of the queues except the one that will have different behavior. Aaron Sallade' Application Manager PTSO of Washington "Shared Technology for Community Health" (206) 613-8938 Desk (206) 521-8833 Main (206) 613-5078 Fax asallade at ptsowa.org -----Original Message----- From: Maurice Chung [mailto:maurice at iparadigms.com] Sent: Friday, May 02, 2008 5:17 PM To: rt-users Subject: [rt-users] RT 3.6.3;how to have queue-specific scrip override global? Hello, We have a queue-specific scrip that we'd like to override a global scrip with the same conditions; I found this patch: http://page.mi.fu-berlin.de/pape/rt3screenshots/ but was wondering if there was a way in RT (ver. 3.6.3) that I am not aware of, of doing this? Looked through the RT Wiki pages on scrips but no dice =) Thanks all - maurice ------------------------------------------------------------------ Maurice Chung JrSysAdmin iParadigms, LLC - developers of Turnitin and iThenticate 1624 Franklin Street, 7th Floor Oakland, CA 94612 p +1.510.287.9720 x309 f +1.510.444.1952 e maurice at iparadigms.com iParadigms, LLC is committed to developing standard-setting, internet-based tools that protect intellectual property, promote academic and corporate integrity, and improve overall client productivity. The information contained in this message may be privileged and confidential and protected from disclosure. If the reader of this message is not the intended recipient, or an employee or agent responsible for delivering this message to the intended recipient, you are hereby notified that any dissemination, distribution or copying of this communication is strictly prohibited. If you have received this communication in error, please notify the sender immediately by replying to the message and deleting it from your computer. _______________________________________________ http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-users Community help: http://wiki.bestpractical.com Commercial support: sales at bestpractical.com Discover RT's hidden secrets with RT Essentials from O'Reilly Media. Buy a copy at http://rtbook.bestpractical.com From itinfoguy at gmail.com Sun May 4 04:47:52 2008 From: itinfoguy at gmail.com (IT GUY) Date: Sun, 4 May 2008 14:32:52 +0545 Subject: [rt-users] Scripssssssss In-Reply-To: References: <4819EC5A.6090609@lbl.gov> Message-ID: Hi.... I know now.........why I always received two emails for ticket creation. I had enabled global scrip to autoreply the requestor when a ticket was created. The default scrip for queue was also there. So ended up with two mails in the Inbox. IT GUY Yogesh SuBiSu CableNet Baluwatar, Kathmandu Nepal On Sun, May 4, 2008 at 12:01 PM, IT GUY wrote: > Thanks Kenn, > > But I guess my problem is not over yet. I created a new user in RT and > allowed him rights to create a ticket in one of the queues. Well after the > ticket creation, he too got the same e-mail twice. > > I could see that RT had recorded two outgoing messages. I haven't seen the > notify others scrip. I'll have a look and let you know. > > One more thing that I would like to ask, isn't RT supposed to mail and > report about new ticket to the watchers or whoever I assign as watchers in > that queue. > > > IT GUY > Yogesh > > > > On Thu, May 1, 2008 at 9:59 PM, Kenneth Crocker wrote: > > > IT GUT, > > > > > > Well, gee, that could be caused by MANY things. You could have > > the Action set to "Notify AdminCc, Cc, Requestors" and you happen to be in > > two of those roles for those tickets. IT COULD be That you are also on the > > ticket Cc's list and you have a scrip that notifies "Others". It would help > > a great in debugging if perhaps you would specify what scrips you have and > > who is in what roles for the Queue & Globally. Then we might be able to > > whittle down the possibilities. > > > > > > Kenn > > LBNL > > > > > > On 5/1/2008 4:50 AM, IT GUY wrote: > > > > > Dear All, > > > I always get two e-mail replies when ever a ticket is created via > > > e-mail in any queue. How can I stop > > > Thanks in advance, > > > Yogesh > > > > > > > > > > > > ------------------------------------------------------------------------ > > > > > > _______________________________________________ > > > http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-users > > > > > > Community help: http://wiki.bestpractical.com > > > Commercial support: sales at bestpractical.com > > > > > > > > > Discover RT's hidden secrets with RT Essentials from O'Reilly Media. > > > Buy a copy at http://rtbook.bestpractical.com > > > > > > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From itinfoguy at gmail.com Sun May 4 05:17:10 2008 From: itinfoguy at gmail.com (IT GUY) Date: Sun, 4 May 2008 15:02:10 +0545 Subject: [rt-users] E-mail Message-ID: Hello, My problem now is, when I reply with the Ticket ID as the subject, my message doesn't go where it is supposed to be going. Instead a new ticked is created which is not good. If any one replies with the Ticked ID as the subject, the message should go in as comment. Am I missing something. Or is there something wrong with my fetchmail. IT GUY Yogesh -------------- next part -------------- An HTML attachment was scrubbed... URL: From Horst.Kriegers at loterie.ch Mon May 5 03:09:40 2008 From: Horst.Kriegers at loterie.ch (Horst Kriegers) Date: Mon, 05 May 2008 09:09:40 +0200 Subject: [rt-users] =?iso-8859-15?q?R=E9p=2E_=3ARe=3A__CF_-_Select_values_?= =?iso-8859-15?q?rights?= In-Reply-To: <481B59E0.2050207@lbl.gov> References: <481ACE49.7061.0039.0@loterie.ch> <481B59E0.2050207@lbl.gov> Message-ID: <481ECED9.7061.0039.0@loterie.ch> Kenn, Thanks four your answer. CF are for specific queues and specific group and I have defined the appropriate rights. But what I wish, is to give the right to only add or remove values and not to change others properties like the "Name", "Description", "Type", "Applies to", "Validation", "Link values to" and "Include page". Is this possible ? Horst >>> Le Vendredi, 2. Mai 2008 ? 20:13, Kenneth Crocker a ?crit : Horst, What other rights do those users have and are they "Global" rights or for a specific queue? Are they rights granted to individual users or user only in a certain group? Is the CF applied to ALL queues or just that specific one? Normally, one would have to go to Configuration->Custom Field->Group Rights and grant the appropriate rights to the correct group or user, depending on how your infrastructure is set up, but you didn't specify whether you grant rights to users individually, globally or only in groups. That would help. Kenn LBNL On 5/1/2008 11:18 PM, Horst Kriegers wrote: > I need to give some users the right to only add/remove values for > a "select one from many" custom field. > > It is possible ? What are the rights which must be defined ? > > Thanks for your help. > Horst > > > > _______________________________________________________________________ > > Le contenu de ce courriel est uniquement r?serv? ? la personne ou > l'organisme ? qui il est destin?. Si vous n'?tes pas le destinataire > pr?vu, veuillez nous en informer au plus vite et d?truire le pr?sent > courriel. Dans ce cas, il ne vous est pas permis de copier ce courriel, > de le distribuer ou de l'utiliser de quelque mani?re que ce soit. > > _______________________________________________________________________ > > The content of this e-mail is intended only and solely for the use of > the named recipient or organisation. If you are not the named recipient, > please inform us immediately and delete the present e-mail. In this > case, you are nor allowed to copy, distribute or use this e-mail in any > way. > > _______________________________________________________________________ > > > ------------------------------------------------------------------------ > > _______________________________________________ > http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-users > > Community help: http://wiki.bestpractical.com > Commercial support: sales at bestpractical.com > > > Discover RT's hidden secrets with RT Essentials from O'Reilly Media. > Buy a copy at http://rtbook.bestpractical.com ___________________________________________________________ Le contenu de ce courriel est uniquement r?serv? ? la personne ou l'organisme ? qui il est destin?. Si vous n'?tes pas le destinataire pr?vu, veuillez nous en informer au plus vite et d?truire le pr?sent courriel. Dans ce cas, il ne vous est pas permis de copier ce courriel, de le distribuer ou de l'utiliser de quelque mani?re que ce soit. The content of this e-mail is intended only and solely for the use of the named recipient or organisation. If you are not the named recipient, please inform us immediately and delete the present e-mail. In this case, you are nor allowed to copy, distribute or use this e-mail in any way. ___________________________________________________________ -------------- next part -------------- An HTML attachment was scrubbed... URL: From elacour at easter-eggs.com Mon May 5 04:39:37 2008 From: elacour at easter-eggs.com (Emmanuel Lacour) Date: Mon, 5 May 2008 10:39:37 +0200 Subject: [rt-users] Dropdown lists for users only show 'Nobody' In-Reply-To: <20080429152716.GP18476@shaak.cubidou.net> References: <20080429152716.GP18476@shaak.cubidou.net> Message-ID: <20080505083937.GQ3679@easter-eggs.com> On Tue, Apr 29, 2008 at 05:27:16PM +0200, Quentin Garnier wrote: > Hi, > > I'm currently in the process of upgrading our RT installation from 3.4.6 > to 3.6.6, and while most of it went ok, I am faced with the weird issue > mentioned in the subject. > > If I set "IncludeSystemRights" to 0, or at least comment its use in > Users_Overlay.pm's _GetEquivObjects, I get the list of users I expect > (would it be for the Reminder box, or the Owner box in the People page, > both use the same underlying element). > > I'm guessing it works in an out-of-the-box installation of RT, so it has > to be something with our database. Does anyone have an idea what we > could have screwed up over time in our database so that setting > IncludeSystemRights actually prevents users from being listed in the > context of html/Elements/SelectOwner? > This problem is generally fixed by upgrading DBIx::SearchBuilder to the version mensionned in "make testdeps". From elacour at easter-eggs.com Mon May 5 04:45:18 2008 From: elacour at easter-eggs.com (Emmanuel Lacour) Date: Mon, 5 May 2008 10:45:18 +0200 Subject: [rt-users] Spreeadsheet, utf-8 and ms excel In-Reply-To: <60822.217.201.148.195.1209666576.squirrel@www.svrinformatica.it> References: <1209644483.7515.3.camel@localhost.localdomain> <0A43D660-9AF2-4E00-9643-7C3E15C7B609@bestpractical.com> <1209657021.8801.4.camel@localhost.localdomain> <50945.217.202.145.71.1209659113.squirrel@www.svrinformatica.it> <60822.217.201.148.195.1209666576.squirrel@www.svrinformatica.it> Message-ID: <20080505084518.GR3679@easter-eggs.com> On Thu, May 01, 2008 at 08:29:36PM +0200, Mailing List SVR wrote: > > > > It seems that Excel doesn't > use the charset header, it always import the file as Windows-1252 (on > Windows). The only solution I found is to export as html entity. > > I tested the solution proposed here (export as html entity) and it > works: > > http://www.listsearch.com/Lasso/Thread/index.lasso?16733 > > I > would like some help to do this inside request tracker, > I also wrote this as a workaround: http://search.cpan.org/dist/RT-Extension-SearchResults-XLS/ From morten.guldager at gmail.com Mon May 5 09:09:12 2008 From: morten.guldager at gmail.com (Morten Guldager) Date: Mon, 5 May 2008 15:09:12 +0200 Subject: [rt-users] How to join two RT tables in perl? Message-ID: 'Aloha! In my standalone program I would like to do a join on the tables Transactions and Users in order to add Users.Name to my print out. (and not just the user number) But I somehow lost track while trying to figure out how it is done in the RT code itself. Below is a boiled down demo program which fails in the second last line, which is somehow expected. RT::Transaction::Name Unimplemented in main. (./Join-demo-2 line 31) Perhaps somebody can help me in the right direction. -- /Morten %-) #!/usr/bin/perl package RT; our $DatabaseType = 'mysql'; our $DatabaseUser = 'rtuser'; our $DatabasePassword = 'wibble'; our $DatabaseName = 'rtdb'; package main; use strict; use warnings; use lib '/usr/share/request-tracker3.6/lib'; use RT; use RT::Transactions; RT::Init(); my $CurrentUser = RT::CurrentUser->new('cust-12345'); my $t = new RT::Transactions($CurrentUser); $t->LimitToTicket(1); my $u = $t->NewAlias('Users'); $t->Join(ALIAS1 => 'main', FIELD1 => 'Creator', ALIAS2 => $u, FIELD2 => 'id'); while (my $row = $t->Next) { printf "id:%s, CreatorId:%s, Name:%s\n", $row->id, $row->Creator, $row->Name; } -------------- next part -------------- An HTML attachment was scrubbed... URL: From ruz at bestpractical.com Mon May 5 09:19:15 2008 From: ruz at bestpractical.com (Ruslan Zakirov) Date: Mon, 5 May 2008 17:19:15 +0400 Subject: [rt-users] How to join two RT tables in perl? In-Reply-To: References: Message-ID: <589c94400805050619j2d585fd0hec181db086cb4e8c@mail.gmail.com> use $row->CreatorObj->Name; as far as I can see you don't need join which is for limits, not for access. On Mon, May 5, 2008 at 5:09 PM, Morten Guldager wrote: > 'Aloha! > > In my standalone program I would like to do a join on the tables > Transactions and Users in order to add Users.Name to my print > out. (and not just the user number) > > But I somehow lost track while trying to figure out how it is done > in the RT code itself. > > Below is a boiled down demo program which fails in the second > last line, which is somehow expected. > > RT::Transaction::Name Unimplemented in main. (./Join-demo-2 line 31) > > Perhaps somebody can help me in the right direction. > > -- > /Morten %-) > > #!/usr/bin/perl > > package RT; > our $DatabaseType = 'mysql'; > our $DatabaseUser = 'rtuser'; > our $DatabasePassword = 'wibble'; > our $DatabaseName = 'rtdb'; > > package main; > use strict; > use warnings; > use lib '/usr/share/request-tracker3.6/lib'; > use RT; > use RT::Transactions; > > RT::Init(); > my $CurrentUser = RT::CurrentUser->new('cust-12345'); > > my $t = new RT::Transactions($CurrentUser); > $t->LimitToTicket(1); > > my $u = $t->NewAlias('Users'); > $t->Join(ALIAS1 => 'main', > FIELD1 => 'Creator', > ALIAS2 => $u, > FIELD2 => 'id'); > > while (my $row = $t->Next) > { > printf "id:%s, CreatorId:%s, Name:%s\n", $row->id, $row->Creator, > $row->Name; > } > > > _______________________________________________ > http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-users > > Community help: http://wiki.bestpractical.com > Commercial support: sales at bestpractical.com > > > Discover RT's hidden secrets with RT Essentials from O'Reilly Media. > Buy a copy at http://rtbook.bestpractical.com > -- Best regards, Ruslan. From npereira at protus.com Mon May 5 09:43:14 2008 From: npereira at protus.com (Nelson Pereira) Date: Mon, 5 May 2008 09:43:14 -0400 Subject: [rt-users] Problems with RT, cannot access interface ! Message-ID: <21044E8C915A7E43B90A1056127160F12582A5@EXMAIL.protus.org> error: Error during compilation of /opt/rt3/share/html/Callbacks/AssetTracker/autohandler/Default: Can't locate /opt/rt3/etc/AssetTracker/AT_Config.pm in @INC (@INC contains: /opt/rt3/local/lib /opt/rt3/lib /usr/lib/perl5/site_perl/5.8.8/i386-linux-thread-multi /usr/lib/perl5/site_perl/5.8.7/i386-linux-thread-multi /usr/lib/perl5/site_perl/5.8.6/i386-linux-thread-multi /usr/lib/perl5/site_perl/5.8.5/i386-linux-thread-multi /usr/lib/perl5/site_perl/5.8.8 /usr/lib/perl5/site_perl/5.8.7 /usr/lib/perl5/site_perl/5.8.6 /usr/lib/perl5/site_perl/5.8.5 /usr/lib/perl5/site_perl /usr/lib/perl5/vendor_perl/5.8.8/i386-linux-thread-multi /usr/lib/perl5/vendor_perl/5.8.7/i386-linux-thread-multi /usr/lib/perl5/vendor_perl/5.8.6/i386-linux-thread-multi /usr/lib/perl5/vendor_perl/5.8.5/i386-linux-thread-multi /usr/lib/perl5/vendor_perl/5.8.8 /usr/lib/perl5/vendor_perl/5.8.7 /usr/lib/perl5/vendor_perl/5.8.6 /usr/lib/perl5/vendor_perl/5.8.5 /usr/lib/perl5/vendor_perl /usr/lib/perl5/5.8.8/i386-linux-thread-multi /usr/lib/perl5/5.8.8 . /etc/httpd) at /opt/rt3/lib/RTx/AssetTracker.pm line 68. Stack: [/opt/rt3/lib/RTx/AssetTracker.pm:68] [/opt/rt3/share/html/Callbacks/AssetTracker/autohandler/Default:15] [/usr/lib/perl5/site_perl/5.8.8/HTML/Mason/Interp.pm:811] [/usr/lib/perl5/site_perl/5.8.8/HTML/Mason/Interp.pm:441] [/usr/lib/perl5/site_perl/5.8.8/HTML/Mason/Request.pm:1109] [/usr/lib/perl5/site_perl/5.8.8/HTML/Mason/Request.pm:1042] [/usr/lib/perl5/site_perl/5.8.8/HTML/Mason/Request.pm:1220] [/opt/rt3/share/html/Elements/Callback:85] [/opt/rt3/share/html/autohandler:270] context: ... code stack: /usr/lib/perl5/site_perl/5.8.8/HTML/Mason/Interp.pm:445 /usr/lib/perl5/site_perl/5.8.8/HTML/Mason/Request.pm:1109 /usr/lib/perl5/site_perl/5.8.8/HTML/Mason/Request.pm:1042 /usr/lib/perl5/site_perl/5.8.8/HTML/Mason/Request.pm:1220 /opt/rt3/share/html/Elements/Callback:85 /opt/rt3/share/html/autohandler:270 raw error How do I remove this asset tracket as we don't even use it.... Tahks Nelson Pereira Senior Network Administrator Protus IP Solutions Inc. npereira at protus.com phone: 613.733.0000 ext.528 MyFax: 613.822.5083 www.myfax.com Refer your friends and colleagues to MyFax! Click here for more information. -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.gif Type: image/gif Size: 4180 bytes Desc: image001.gif URL: From npereira at protus.com Mon May 5 10:13:05 2008 From: npereira at protus.com (Nelson Pereira) Date: Mon, 5 May 2008 10:13:05 -0400 Subject: [rt-users] Link issues in the Tickets section (ie: static search) In-Reply-To: <481B8F4B.5010007@lbl.gov> References: <21044E8C915A7E43B90A1056127160F11EA9DE@EXMAIL.protus.org> <21044E8C915A7E43B90A1056127160F11EABF0@EXMAIL.protus.org> <4819F03F.7020709@lbl.gov> <21044E8C915A7E43B90A1056127160F11EAC33@EXMAIL.protus.org> <481A1A20.1010907@lbl.gov> <21044E8C915A7E43B90A1056127160F11EADAF@EXMAIL.protus.org> <481B8F4B.5010007@lbl.gov> Message-ID: <21044E8C915A7E43B90A1056127160F12582AE@EXMAIL.protus.org> How do you make those changes? In which file? Nelson Pereira Telecom Network Admin Protus IP Solutions Inc. 2379 Holly Lane, Suite 210 Ottawa, Ontario Canada K1V 7P2 www.protus.com npereira at protus.com [t] 888.733.0000 x 528 [p] 613.733.0000 x 528 [f] 613.822.5083 Protus IP Solutions -----Original Message----- From: Kenneth Crocker [mailto:KFCrocker at lbl.gov] Sent: Friday, May 02, 2008 6:02 PM To: Nelson Pereira Subject: Re: [rt-users] Link issues in the Tickets section (ie: static search) Nelson, I don't think you want the extra "/" at the end of "RT::WebURL https://rt.protus.org//". I'd drop it to just 1 "/". I'd also drop the extra "/" at the front of your "HREF="//Ticket". I think it should be "HREF="/Ticket/...". Make those two changes and try it again. Kenn LBNL On 5/2/2008 12:17 PM, Nelson Pereira wrote: > RT::DefaultSearchResultFormat ' HREF="//Ticket/Display.html?id=__id__">__id__/TITLE:#', ' HREF="//Ticket/Display.html?id=__id__">__Subject__/TITLE:Subject > ', Status, QueueName, OwnerName, Priority, '__NEWLINE__', '', > '__Requestors__', '__CreatedRelative__', > '__ToldRelative__', > '__LastUpdatedRelative__', '__TimeLeft__' > > > RT::WebBaseURL https://rt.protus.org > > RT::WebURL https://rt.protus.org// > > > > > > Nelson Pereira > > > > -----Original Message----- > From: Kenneth Crocker [mailto:KFCrocker at lbl.gov] > Sent: Thursday, May 01, 2008 3:30 PM > To: Nelson Pereira > Subject: Re: [rt-users] Link issues in the Tickets section (ie: static > search) > > Nelson, > > > Navigate to Configuration->Tools->System Configuration and tell > me what > you have for: > > RT::DefaultSearchResultFormat > RT::WebBaseURL > RT::WebURL > > I believe it is one or more of those guys. > > > Kenn > LBNL > > On 5/1/2008 9:54 AM, Nelson Pereira wrote: >> Which one could it be? >> Ive went through my rt site config an all seems correct. >> >> >> >> Nelson Pereira >> >> Telecom Network Admin >> Protus IP Solutions Inc. >> 2379 Holly Lane, Suite 210 >> Ottawa, Ontario >> Canada K1V 7P2 >> www.protus.com >> >> npereira at protus.com >> [t] 888.733.0000 x 528 >> [p] 613.733.0000 x 528 >> [f] 613.822.5083 >> Protus IP Solutions >> >> -----Original Message----- >> From: Kenneth Crocker [mailto:KFCrocker at lbl.gov] >> Sent: Thursday, May 01, 2008 12:31 PM >> To: Nelson Pereira >> Cc: rt-users at lists.bestpractical.com >> Subject: Re: [rt-users] Link issues in the Tickets section (ie: static >> search) >> >> Nelson, >> >> >> I'm not sure because I'm not seeing everything, but it sounds >> like one >> or more of your "Config" settings is wrong. >> >> >> Kenn >> LBNL >> >> On 5/1/2008 8:29 AM, Nelson Pereira wrote: >>> Anyone have an idea about the issue I am having? >>> >>> >>> >>> Nelson >>> >>> > ------------------------------------------------------------------------ >>> *From:* rt-users-bounces at lists.bestpractical.com >>> [mailto:rt-users-bounces at lists.bestpractical.com] *On Behalf Of >> *Nelson >>> Pereira >>> *Sent:* Tuesday, April 29, 2008 2:52 PM >>> *To:* rt-users at lists.bestpractical.com >>> *Subject:* [rt-users] Link issues in the Tickets section (ie: static >> search) >>> >>> >>> Hi all, >>> >>> >>> >>> I've noticed a problem that I'm unsure when it actually started. >>> >>> >>> >>> When you click on the Tickets link >>> (https://domain.com/Search/Build.html) at the top of the page in RT > at >> a >>> glance, >>> >>> When you click on one of the tickets that show up, the link is wrong, > >>> hence brings you to a page cannot be displayed. >>> >>> >>> >>> The link looks like this: https://ticket/Display.html?id=143 >>> >>> When it should look like this: >> https://domain.com/Ticket/Display.html?id=143 >>> >>> >>> Notice the host part missing and the "t" is suppose to be > Capitalized. >>> >>> >>> Anyone can tell me how I can fix this? This seams to be an issue with > >>> the search I think or something. >>> >>> >>> >>> >>> >>> *Nelson Pereira* >>> Senior Network Administrator >>> >>> Protus IP Solutions Inc. >>> npereira at protus.com >>> phone: 613.733.0000 ext.528 >>> MyFax: 613.822.5083 >>> www.myfax.com >>> >>> Refer your friends and colleagues to MyFax! >>> Click here for more information. >>> >>> >>> >>> >>> www.MyFax.com >>> >>> >>> >>> >>> > ------------------------------------------------------------------------ >>> _______________________________________________ >>> http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-users >>> >>> Community help: http://wiki.bestpractical.com >>> Commercial support: sales at bestpractical.com >>> >>> >>> Discover RT's hidden secrets with RT Essentials from O'Reilly Media. >>> Buy a copy at http://rtbook.bestpractical.com >> > > From lists at svrinformatica.it Mon May 5 10:34:55 2008 From: lists at svrinformatica.it (Mailing List SVR) Date: Mon, 05 May 2008 16:34:55 +0200 Subject: [rt-users] Spreeadsheet, utf-8 and ms excel In-Reply-To: <20080505084518.GR3679@easter-eggs.com> References: <1209644483.7515.3.camel@localhost.localdomain> <0A43D660-9AF2-4E00-9643-7C3E15C7B609@bestpractical.com> <1209657021.8801.4.camel@localhost.localdomain> <50945.217.202.145.71.1209659113.squirrel@www.svrinformatica.it> <60822.217.201.148.195.1209666576.squirrel@www.svrinformatica.it> <20080505084518.GR3679@easter-eggs.com> Message-ID: <1209998095.7213.5.camel@localhost.localdomain> Il giorno lun, 05/05/2008 alle 10.45 +0200, Emmanuel Lacour ha scritto: > On Thu, May 01, 2008 at 08:29:36PM +0200, Mailing List SVR wrote: > > > > > > > > It seems that Excel doesn't > > use the charset header, it always import the file as Windows-1252 (on > > Windows). The only solution I found is to export as html entity. > > > > I tested the solution proposed here (export as html entity) and it > > works: > > > > http://www.listsearch.com/Lasso/Thread/index.lasso?16733 > > > > I > > would like some help to do this inside request tracker, > > > > I also wrote this as a workaround: > > http://search.cpan.org/dist/RT-Extension-SearchResults-XLS/ Thanks Emmanuel, when I do perl Makefile.pl i get the following error: include /usr/local/src/RT-Extension-SearchResults-XLS/inc/Module/Install.pm Cannot autoload main - main::AUTOLOAD at inc/Module/Install.pm line 88. what prerequisite modules I have to install? > > _______________________________________________ > http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-users > > Community help: http://wiki.bestpractical.com > Commercial support: sales at bestpractical.com > > > Discover RT's hidden secrets with RT Essentials from O'Reilly Media. > Buy a copy at http://rtbook.bestpractical.com From lists at svrinformatica.it Mon May 5 11:37:50 2008 From: lists at svrinformatica.it (Mailing List SVR) Date: Mon, 05 May 2008 17:37:50 +0200 Subject: [rt-users] Spreeadsheet, utf-8 and ms excel In-Reply-To: <20080505142008.GC18066@easter-eggs.com> References: <1209644483.7515.3.camel@localhost.localdomain> <0A43D660-9AF2-4E00-9643-7C3E15C7B609@bestpractical.com> <1209657021.8801.4.camel@localhost.localdomain> <50945.217.202.145.71.1209659113.squirrel@www.svrinformatica.it> <60822.217.201.148.195.1209666576.squirrel@www.svrinformatica.it> <20080505084518.GR3679@easter-eggs.com> <1209984810.7411.5.camel@localhost.localdomain> <20080505142008.GC18066@easter-eggs.com> Message-ID: <1210001870.7213.12.camel@localhost.localdomain> Il giorno lun, 05/05/2008 alle 16.20 +0200, Emmanuel Lacour ha scritto: > On Mon, May 05, 2008 at 12:53:30PM +0200, Mailing List SVR wrote: > > > http://search.cpan.org/dist/RT-Extension-SearchResults-XLS/ > > > > Thanks Emmanuel, > > > > when I do perl Makefile.pl i get the following error: > > > > include /usr/local/src/RT-Extension-SearchResults-XLS/inc/Module/Install.pm > > Cannot autoload main - main::AUTOLOAD at inc/Module/Install.pm line 88. > > > > Can you try this new release: > > ftp://pause.perl.org/incoming/RT-Extension-SearchResults-XLS-0.02.tar.gz > > I've upgraded the old version of Module::Install I used which should fix > this problem (mismatch between Module::Install versions). Thanks!! It works just fine, I need to install spreedsheet-excel perl module too, and then change the spreedsheet link to Results.xls, regards Nicola From elacour at easter-eggs.com Mon May 5 11:40:53 2008 From: elacour at easter-eggs.com (Emmanuel Lacour) Date: Mon, 5 May 2008 17:40:53 +0200 Subject: [rt-users] Spreeadsheet, utf-8 and ms excel In-Reply-To: <1210001870.7213.12.camel@localhost.localdomain> References: <1209644483.7515.3.camel@localhost.localdomain> <0A43D660-9AF2-4E00-9643-7C3E15C7B609@bestpractical.com> <1209657021.8801.4.camel@localhost.localdomain> <50945.217.202.145.71.1209659113.squirrel@www.svrinformatica.it> <60822.217.201.148.195.1209666576.squirrel@www.svrinformatica.it> <20080505084518.GR3679@easter-eggs.com> <1209984810.7411.5.camel@localhost.localdomain> <20080505142008.GC18066@easter-eggs.com> <1210001870.7213.12.camel@localhost.localdomain> Message-ID: <20080505154053.GD18066@easter-eggs.com> On Mon, May 05, 2008 at 05:37:50PM +0200, Mailing List SVR wrote: > Thanks!! > You're welcome. > It works just fine, > > I need to install spreedsheet-excel perl module too, and then change Of course, CPAN should telled you this dependency. > the spreedsheet link to Results.xls, > Yes, this is an "extension" so it doesn't replace the tsv export, but as you did, you can easily replace it. From gleduc at mail.sdsu.edu Mon May 5 12:26:58 2008 From: gleduc at mail.sdsu.edu (Gene LeDuc) Date: Mon, 05 May 2008 09:26:58 -0700 Subject: [rt-users] RT 3.6.3; how to have queue-specific scrip override global? In-Reply-To: <30106762.29621209773827757.JavaMail.root@mail.turnitin.com > References: <30106762.29621209773827757.JavaMail.root@mail.turnitin.com> Message-ID: <6.2.1.2.2.20080505085211.02528d10@mail.sdsu.edu> Hi Maurice, If the global scrip is one that sends e-mail and you just want the to send a different e-mail, you can create a template of the same name in your queue. Unlike scrips, queue templates override global templates of the same name. If the global scrip doesn't send e-mail (like "On Correspond Open Tickets with template Blank") then you can change the condition of the global scrip to User Defined and then put the same condition into the Custom Condition area, but with an additional check for the queue you want to ignore. This should work fine for a single queue, but it could become very ugly to maintain when you start add queues to your list of ones that particular scrips shouldn't apply to. I ended up disabling all global scrips and putting what I needed in each queue. A nice feature for global scrips would be a way of disabling them for specific queues - an exceptions list maybe. Regards, Gene At 05:17 PM 5/2/2008, Maurice Chung wrote: >Hello, > >We have a queue-specific scrip that we'd like to override a global scrip >with the same conditions; I found this patch: >http://page.mi.fu-berlin.de/pape/rt3screenshots/ >but was wondering if there was a way in RT (ver. 3.6.3) that I am not >aware of, of doing this? > >Looked through the RT Wiki pages on scrips but no dice =) > >Thanks all - >maurice -- Gene LeDuc, GSEC Security Analyst San Diego State University From KFCrocker at lbl.gov Mon May 5 12:33:34 2008 From: KFCrocker at lbl.gov (Kenneth Crocker) Date: Mon, 05 May 2008 09:33:34 -0700 Subject: [rt-users] RT 3.6.3; how to have queue-specific scrip override global? In-Reply-To: <30106762.29621209773827757.JavaMail.root@mail.turnitin.com> References: <30106762.29621209773827757.JavaMail.root@mail.turnitin.com> Message-ID: <481F36DE.4010400@lbl.gov> Maurice, If the code you want to override is some user-defined perl, then put it in the template and that way RT will override any global template with a queue-defined template of the same name. Gene uses templates to execute a great deal of user-defined code and it works great. That way, the global scrip stays, the global template stays, but at the queue level, the code in the queue-defined template (same name as global) will override the code in the global template. Just another way to skin the cat. Kenn LBNL On 5/2/2008 5:17 PM, Maurice Chung wrote: > Hello, > > We have a queue-specific scrip that we'd like to override a global scrip with the same conditions; I found this patch: http://page.mi.fu-berlin.de/pape/rt3screenshots/ > but was wondering if there was a way in RT (ver. 3.6.3) that I am not aware of, of doing this? > > Looked through the RT Wiki pages on scrips but no dice =) > > Thanks all - > maurice > > ------------------------------------------------------------------ > Maurice Chung > JrSysAdmin > iParadigms, LLC - developers of Turnitin and iThenticate > 1624 Franklin Street, 7th Floor > Oakland, CA 94612 > p +1.510.287.9720 x309 > f +1.510.444.1952 > e maurice at iparadigms.com > > iParadigms, LLC is committed to developing standard-setting, > internet-based tools that protect intellectual property, promote > academic and corporate integrity, and improve overall client > productivity. > > The information contained in this message may be privileged and > confidential and protected from disclosure. If the reader of this > message is not the intended recipient, or an employee or agent > responsible for delivering this message to the intended recipient, you > are hereby notified that any dissemination, distribution or copying of > this communication is strictly prohibited. If you have received this > communication in error, please notify the sender immediately by > replying to the message and deleting it from your computer. > > _______________________________________________ > http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-users > > Community help: http://wiki.bestpractical.com > Commercial support: sales at bestpractical.com > > > Discover RT's hidden secrets with RT Essentials from O'Reilly Media. > Buy a copy at http://rtbook.bestpractical.com > From KFCrocker at lbl.gov Mon May 5 12:45:30 2008 From: KFCrocker at lbl.gov (Kenneth Crocker) Date: Mon, 05 May 2008 09:45:30 -0700 Subject: [rt-users] =?iso-8859-15?q?R=E9p=2E_=3ARe=3A__CF_-_Select_values_?= =?iso-8859-15?q?rights?= In-Reply-To: <481ECED9.7061.0039.0@loterie.ch> References: <481ACE49.7061.0039.0@loterie.ch> <481B59E0.2050207@lbl.gov> <481ECED9.7061.0039.0@loterie.ch> Message-ID: <481F39AA.1010004@lbl.gov> Horst, I'm sorry. It wasn't clear to me when you stated "change the value" if you meant within a ticket or in the definition. To change the value "in the definition", you have to grant the "AdminCustomField" to the appropriate group. To modify values for a CF "in a ticket", "ModifyCustomField". We only allow our System Admin group to have the "AdminCustomField" rights for "global" CFs. For a CF that is for a specific queue, we grant that right to the Technical support group only. I'm not familiar with your infrastructure, so I don't know what else I can tell you. Hope this helps. Kenn LBNL On 5/5/2008 12:09 AM, Horst Kriegers wrote: > Kenn, > Thanks four your answer. > > CF are for specific queues and specific group and I have defined the > appropriate rights. > But what I wish, is to give the right to only add or remove values and > not to change > others properties like the "Name", "Description", "Type", "Applies to", > "Validation", "Link values to" and "Include page". > > Is this possible ? > > > Horst > >>> Le Vendredi, 2. Mai 2008 ? 20:13, Kenneth Crocker > a ?crit : > Horst, > > > What other rights do those users have and are they "Global" rights or > for a specific queue? Are they rights granted to individual users or > user only in a certain group? Is the CF applied to ALL queues or just > that specific one? Normally, one would have to go to > Configuration->Custom Field->Group Rights and grant the appropriate > rights to the correct group or user, depending on how your > infrastructure is set up, but you didn't specify whether you grant > rights to users individually, globally or only in groups. That would help. > > > Kenn > LBNL > > On 5/1/2008 11:18 PM, Horst Kriegers wrote: > > I need to give some users the right to only add/remove values for > > a "select one from many" custom field. > > > > It is possible ? What are the rights which must be defined ? > > > > Thanks for your help. > > Horst > > > > > > > > _______________________________________________________________________ > > > > Le contenu de ce courriel est uniquement r?serv? ? la personne ou > > l'organisme ? qui il est destin?. Si vous n'?tes pas le destinataire > > pr?vu, veuillez nous en informer au plus vite et d?truire le pr?sent > > courriel. Dans ce cas, il ne vous est pas permis de copier ce courriel, > > de le distribuer ou de l'utiliser de quelque mani?re que ce soit. > > > > _______________________________________________________________________ > > > > The content of this e-mail is intended only and solely for the use of > > the named recipient or organisation. If you are not the named recipient, > > please inform us immediately and delete the present e-mail. In this > > case, you are nor allowed to copy, distribute or use this e-mail in any > > way. > > > > _______________________________________________________________________ > > > > > > ------------------------------------------------------------------------ > > > > _______________________________________________ > > http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-users > > > > Community help: http://wiki.bestpractical.com > > Commercial support: sales at bestpractical.com > > > > > > Discover RT's hidden secrets with RT Essentials from O'Reilly Media. > > Buy a copy at http://rtbook.bestpractical.com > > > > _______________________________________________________________________ > > Le contenu de ce courriel est uniquement r?serv? ? la personne ou > l'organisme ? qui il est destin?. Si vous n'?tes pas le destinataire > pr?vu, veuillez nous en informer au plus vite et d?truire le pr?sent > courriel. Dans ce cas, il ne vous est pas permis de copier ce courriel, > de le distribuer ou de l'utiliser de quelque mani?re que ce soit. > > _______________________________________________________________________ > > The content of this e-mail is intended only and solely for the use of > the named recipient or organisation. If you are not the named recipient, > please inform us immediately and delete the present e-mail. In this > case, you are nor allowed to copy, distribute or use this e-mail in any > way. > > _______________________________________________________________________ > From KFCrocker at lbl.gov Mon May 5 12:55:29 2008 From: KFCrocker at lbl.gov (Kenneth Crocker) Date: Mon, 05 May 2008 09:55:29 -0700 Subject: [rt-users] Link issues in the Tickets section (ie: static search) In-Reply-To: <21044E8C915A7E43B90A1056127160F12582AE@EXMAIL.protus.org> References: <21044E8C915A7E43B90A1056127160F11EA9DE@EXMAIL.protus.org> <21044E8C915A7E43B90A1056127160F11EABF0@EXMAIL.protus.org> <4819F03F.7020709@lbl.gov> <21044E8C915A7E43B90A1056127160F11EAC33@EXMAIL.protus.org> <481A1A20.1010907@lbl.gov> <21044E8C915A7E43B90A1056127160F11EADAF@EXMAIL.protus.org> <481B8F4B.5010007@lbl.gov> <21044E8C915A7E43B90A1056127160F12582AE@EXMAIL.protus.org> Message-ID: <481F3C01.4020102@lbl.gov> Nelson, Get into a unix session on your RT server (make sure you have the appropriate privileges), The navigate to the directory where the RT_SiteConfog.pm file exists and make your changes there. You should be familiar with it, as you must have already made some changes for your use of LDAP, etc. You will fins the entries there. Kenn LBNL On 5/5/2008 7:13 AM, Nelson Pereira wrote: > How do you make those changes? In which file? > > > > Nelson Pereira > > Telecom Network Admin > Protus IP Solutions Inc. > 2379 Holly Lane, Suite 210 > Ottawa, Ontario > Canada K1V 7P2 > www.protus.com > > npereira at protus.com > [t] 888.733.0000 x 528 > [p] 613.733.0000 x 528 > [f] 613.822.5083 > Protus IP Solutions > -----Original Message----- > From: Kenneth Crocker [mailto:KFCrocker at lbl.gov] > Sent: Friday, May 02, 2008 6:02 PM > To: Nelson Pereira > Subject: Re: [rt-users] Link issues in the Tickets section (ie: static > search) > > Nelson, > > > I don't think you want the extra "/" at the end of "RT::WebURL > https://rt.protus.org//". I'd drop it to just 1 "/". > I'd also drop the extra "/" at the front of your > "HREF="//Ticket". I > think it should be "HREF="/Ticket/...". > Make those two changes and try it again. > > > Kenn > LBNL > > On 5/2/2008 12:17 PM, Nelson Pereira wrote: >> RT::DefaultSearchResultFormat '> HREF="//Ticket/Display.html?id=__id__">__id__/TITLE:#', '> > HREF="//Ticket/Display.html?id=__id__">__Subject__/TITLE:Subject >> ', Status, QueueName, OwnerName, Priority, '__NEWLINE__', '', >> '__Requestors__', '__CreatedRelative__', >> '__ToldRelative__', >> '__LastUpdatedRelative__', > '__TimeLeft__' >> >> RT::WebBaseURL https://rt.protus.org >> >> RT::WebURL https://rt.protus.org// >> >> >> >> >> >> Nelson Pereira >> >> >> >> -----Original Message----- >> From: Kenneth Crocker [mailto:KFCrocker at lbl.gov] >> Sent: Thursday, May 01, 2008 3:30 PM >> To: Nelson Pereira >> Subject: Re: [rt-users] Link issues in the Tickets section (ie: static >> search) >> >> Nelson, >> >> >> Navigate to Configuration->Tools->System Configuration and tell >> me what >> you have for: >> >> RT::DefaultSearchResultFormat >> RT::WebBaseURL >> RT::WebURL >> >> I believe it is one or more of those guys. >> >> >> Kenn >> LBNL >> >> On 5/1/2008 9:54 AM, Nelson Pereira wrote: >>> Which one could it be? >>> Ive went through my rt site config an all seems correct. >>> >>> >>> >>> Nelson Pereira >>> >>> Telecom Network Admin >>> Protus IP Solutions Inc. >>> 2379 Holly Lane, Suite 210 >>> Ottawa, Ontario >>> Canada K1V 7P2 >>> www.protus.com >>> >>> npereira at protus.com >>> [t] 888.733.0000 x 528 >>> [p] 613.733.0000 x 528 >>> [f] 613.822.5083 >>> Protus IP Solutions >>> >>> -----Original Message----- >>> From: Kenneth Crocker [mailto:KFCrocker at lbl.gov] >>> Sent: Thursday, May 01, 2008 12:31 PM >>> To: Nelson Pereira >>> Cc: rt-users at lists.bestpractical.com >>> Subject: Re: [rt-users] Link issues in the Tickets section (ie: > static >>> search) >>> >>> Nelson, >>> >>> >>> I'm not sure because I'm not seeing everything, but it sounds >>> like one >>> or more of your "Config" settings is wrong. >>> >>> >>> Kenn >>> LBNL >>> >>> On 5/1/2008 8:29 AM, Nelson Pereira wrote: >>>> Anyone have an idea about the issue I am having? >>>> >>>> >>>> >>>> Nelson >>>> >>>> > ------------------------------------------------------------------------ >>>> *From:* rt-users-bounces at lists.bestpractical.com >>>> [mailto:rt-users-bounces at lists.bestpractical.com] *On Behalf Of >>> *Nelson >>>> Pereira >>>> *Sent:* Tuesday, April 29, 2008 2:52 PM >>>> *To:* rt-users at lists.bestpractical.com >>>> *Subject:* [rt-users] Link issues in the Tickets section (ie: static >>> search) >>>> >>>> >>>> Hi all, >>>> >>>> >>>> >>>> I've noticed a problem that I'm unsure when it actually started. >>>> >>>> >>>> >>>> When you click on the Tickets link >>>> (https://domain.com/Search/Build.html) at the top of the page in RT >> at >>> a >>>> glance, >>>> >>>> When you click on one of the tickets that show up, the link is > wrong, >>>> hence brings you to a page cannot be displayed. >>>> >>>> >>>> >>>> The link looks like this: https://ticket/Display.html?id=143 >>>> >>>> When it should look like this: >>> https://domain.com/Ticket/Display.html?id=143 >>>> >>>> >>>> Notice the host part missing and the "t" is suppose to be >> Capitalized. >>>> >>>> >>>> Anyone can tell me how I can fix this? This seams to be an issue > with >>>> the search I think or something. >>>> >>>> >>>> >>>> >>>> >>>> *Nelson Pereira* >>>> Senior Network Administrator >>>> >>>> Protus IP Solutions Inc. >>>> npereira at protus.com >>>> phone: 613.733.0000 ext.528 >>>> MyFax: 613.822.5083 >>>> www.myfax.com >>>> >>>> Refer your friends and colleagues to MyFax! >>>> Click here for more information. >>>> >>>> >>>> >>>> >>>> www.MyFax.com >>>> >>>> >>>> >>>> >>>> > ------------------------------------------------------------------------ >>>> _______________________________________________ >>>> http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-users >>>> >>>> Community help: http://wiki.bestpractical.com >>>> Commercial support: sales at bestpractical.com >>>> >>>> >>>> Discover RT's hidden secrets with RT Essentials from O'Reilly Media. > >>>> Buy a copy at http://rtbook.bestpractical.com >> > > From npereira at protus.com Mon May 5 13:30:16 2008 From: npereira at protus.com (Nelson Pereira) Date: Mon, 5 May 2008 13:30:16 -0400 Subject: [rt-users] Link issues in the Tickets section (ie: static search) In-Reply-To: <481F3C01.4020102@lbl.gov> References: <21044E8C915A7E43B90A1056127160F11EA9DE@EXMAIL.protus.org> <21044E8C915A7E43B90A1056127160F11EABF0@EXMAIL.protus.org> <4819F03F.7020709@lbl.gov> <21044E8C915A7E43B90A1056127160F11EAC33@EXMAIL.protus.org> <481A1A20.1010907@lbl.gov> <21044E8C915A7E43B90A1056127160F11EADAF@EXMAIL.protus.org> <481B8F4B.5010007@lbl.gov> <21044E8C915A7E43B90A1056127160F12582AE@EXMAIL.protus.org> <481F3C01.4020102@lbl.gov> Message-ID: <21044E8C915A7E43B90A1056127160F1258322@EXMAIL.protus.org> I seem to have fixed the issue by changing the WebPath to: Set($WebPath , ""); Also brought the Set ($DefaultSearchResultFormat To the RT_SiteConfig.pm Thanks Ken... again.... LOL Nelson Pereira Telecom Network Admin Protus IP Solutions Inc. 2379 Holly Lane, Suite 210 Ottawa, Ontario Canada K1V 7P2 www.protus.com npereira at protus.com [t] 888.733.0000 x 528 [p] 613.733.0000 x 528 [f] 613.822.5083 Protus IP Solutions -----Original Message----- From: Kenneth Crocker [mailto:KFCrocker at lbl.gov] Sent: Monday, May 05, 2008 12:55 PM To: Nelson Pereira Cc: rt-users at lists.bestpractical.com Subject: Re: [rt-users] Link issues in the Tickets section (ie: static search) Nelson, Get into a unix session on your RT server (make sure you have the appropriate privileges), The navigate to the directory where the RT_SiteConfog.pm file exists and make your changes there. You should be familiar with it, as you must have already made some changes for your use of LDAP, etc. You will fins the entries there. Kenn LBNL On 5/5/2008 7:13 AM, Nelson Pereira wrote: > How do you make those changes? In which file? > > > > Nelson Pereira > > Telecom Network Admin > Protus IP Solutions Inc. > 2379 Holly Lane, Suite 210 > Ottawa, Ontario > Canada K1V 7P2 > www.protus.com > > npereira at protus.com > [t] 888.733.0000 x 528 > [p] 613.733.0000 x 528 > [f] 613.822.5083 > Protus IP Solutions > -----Original Message----- > From: Kenneth Crocker [mailto:KFCrocker at lbl.gov] > Sent: Friday, May 02, 2008 6:02 PM > To: Nelson Pereira > Subject: Re: [rt-users] Link issues in the Tickets section (ie: static > search) > > Nelson, > > > I don't think you want the extra "/" at the end of "RT::WebURL > https://rt.protus.org//". I'd drop it to just 1 "/". > I'd also drop the extra "/" at the front of your > "HREF="//Ticket". I > think it should be "HREF="/Ticket/...". > Make those two changes and try it again. > > > Kenn > LBNL > > On 5/2/2008 12:17 PM, Nelson Pereira wrote: >> RT::DefaultSearchResultFormat '> HREF="//Ticket/Display.html?id=__id__">__id__/TITLE:#', '> > HREF="//Ticket/Display.html?id=__id__">__Subject__/TITLE:Subject >> ', Status, QueueName, OwnerName, Priority, '__NEWLINE__', '', >> '__Requestors__', '__CreatedRelative__', >> '__ToldRelative__', >> '__LastUpdatedRelative__', > '__TimeLeft__' >> >> RT::WebBaseURL https://rt.protus.org >> >> RT::WebURL https://rt.protus.org// >> >> >> >> >> >> Nelson Pereira >> >> >> >> -----Original Message----- >> From: Kenneth Crocker [mailto:KFCrocker at lbl.gov] >> Sent: Thursday, May 01, 2008 3:30 PM >> To: Nelson Pereira >> Subject: Re: [rt-users] Link issues in the Tickets section (ie: static >> search) >> >> Nelson, >> >> >> Navigate to Configuration->Tools->System Configuration and tell >> me what >> you have for: >> >> RT::DefaultSearchResultFormat >> RT::WebBaseURL >> RT::WebURL >> >> I believe it is one or more of those guys. >> >> >> Kenn >> LBNL >> >> On 5/1/2008 9:54 AM, Nelson Pereira wrote: >>> Which one could it be? >>> Ive went through my rt site config an all seems correct. >>> >>> >>> >>> Nelson Pereira >>> >>> Telecom Network Admin >>> Protus IP Solutions Inc. >>> 2379 Holly Lane, Suite 210 >>> Ottawa, Ontario >>> Canada K1V 7P2 >>> www.protus.com >>> >>> npereira at protus.com >>> [t] 888.733.0000 x 528 >>> [p] 613.733.0000 x 528 >>> [f] 613.822.5083 >>> Protus IP Solutions >>> >>> -----Original Message----- >>> From: Kenneth Crocker [mailto:KFCrocker at lbl.gov] >>> Sent: Thursday, May 01, 2008 12:31 PM >>> To: Nelson Pereira >>> Cc: rt-users at lists.bestpractical.com >>> Subject: Re: [rt-users] Link issues in the Tickets section (ie: > static >>> search) >>> >>> Nelson, >>> >>> >>> I'm not sure because I'm not seeing everything, but it sounds >>> like one >>> or more of your "Config" settings is wrong. >>> >>> >>> Kenn >>> LBNL >>> >>> On 5/1/2008 8:29 AM, Nelson Pereira wrote: >>>> Anyone have an idea about the issue I am having? >>>> >>>> >>>> >>>> Nelson >>>> >>>> > ------------------------------------------------------------------------ >>>> *From:* rt-users-bounces at lists.bestpractical.com >>>> [mailto:rt-users-bounces at lists.bestpractical.com] *On Behalf Of >>> *Nelson >>>> Pereira >>>> *Sent:* Tuesday, April 29, 2008 2:52 PM >>>> *To:* rt-users at lists.bestpractical.com >>>> *Subject:* [rt-users] Link issues in the Tickets section (ie: static >>> search) >>>> >>>> >>>> Hi all, >>>> >>>> >>>> >>>> I've noticed a problem that I'm unsure when it actually started. >>>> >>>> >>>> >>>> When you click on the Tickets link >>>> (https://domain.com/Search/Build.html) at the top of the page in RT >> at >>> a >>>> glance, >>>> >>>> When you click on one of the tickets that show up, the link is > wrong, >>>> hence brings you to a page cannot be displayed. >>>> >>>> >>>> >>>> The link looks like this: https://ticket/Display.html?id=143 >>>> >>>> When it should look like this: >>> https://domain.com/Ticket/Display.html?id=143 >>>> >>>> >>>> Notice the host part missing and the "t" is suppose to be >> Capitalized. >>>> >>>> >>>> Anyone can tell me how I can fix this? This seams to be an issue > with >>>> the search I think or something. >>>> >>>> >>>> >>>> >>>> >>>> *Nelson Pereira* >>>> Senior Network Administrator >>>> >>>> Protus IP Solutions Inc. >>>> npereira at protus.com >>>> phone: 613.733.0000 ext.528 >>>> MyFax: 613.822.5083 >>>> www.myfax.com >>>> >>>> Refer your friends and colleagues to MyFax! >>>> Click here for more information. >>>> >>>> >>>> >>>> >>>> www.MyFax.com >>>> >>>> >>>> >>>> >>>> > ------------------------------------------------------------------------ >>>> _______________________________________________ >>>> http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-users >>>> >>>> Community help: http://wiki.bestpractical.com >>>> Commercial support: sales at bestpractical.com >>>> >>>> >>>> Discover RT's hidden secrets with RT Essentials from O'Reilly Media. > >>>> Buy a copy at http://rtbook.bestpractical.com >> > > From npereira at protus.com Mon May 5 13:42:24 2008 From: npereira at protus.com (Nelson Pereira) Date: Mon, 5 May 2008 13:42:24 -0400 Subject: [rt-users] Send last message/comment from ticket to requestor on resolve Message-ID: <21044E8C915A7E43B90A1056127160F125832C@EXMAIL.protus.org> Hi, Wondering how to do this: When I resolve a ticket, I want RT to send the message I put in the resolve to the requestor, and not the default "as per our records...." Nelson Pereira Senior Network Administrator Protus IP Solutions Inc. npereira at protus.com phone: 613.733.0000 ext.528 MyFax: 613.822.5083 www.myfax.com Refer your friends and colleagues to MyFax! Click here for more information. -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.gif Type: image/gif Size: 4180 bytes Desc: image001.gif URL: From gleduc at mail.sdsu.edu Mon May 5 14:29:01 2008 From: gleduc at mail.sdsu.edu (Gene LeDuc) Date: Mon, 05 May 2008 11:29:01 -0700 Subject: [rt-users] Send last message/comment from ticket to requestor on resolve In-Reply-To: <21044E8C915A7E43B90A1056127160F125832C@EXMAIL.protus.org> References: <21044E8C915A7E43B90A1056127160F125832C@EXMAIL.protus.org> Message-ID: <6.2.1.2.2.20080505111714.02466350@mail.sdsu.edu> Nelson, Here's how I include the resolver's message with our standard "resolved" blurb. This is my (slightly modified) template for OnResolve. The guts of what you want to do is that I grab the last correspondence, compare it to the last outgoing e-mail (don't include it if they're the same), then see if it's incoming e-mail (don't include it if so). If it passes those tests, then I include it in my standard blurb to the requestor. There are probably cleaner ways to do this, but I'm using this in production and it works. Regards, Gene ===== start of template contents { ### Tells user that ticket has been resolved my $MyName = "Template 28 (Resolved)"; #$RT::Logger->debug("$MyName (". $Transaction->Id . ") entered."); my $FromAddress = 'RT Requests '; my $ContactAddress = 'real.person at myorg.org'; my $OwnerName = $Ticket->OwnerObj->RealName; my $c_content; my $e_content; my $have_rmks; my $remarks; ### We won't include a comment if... ### - Last outgoing email content eq last correspond content (this means ### that the content was already sent in an e-mail) ### - Last correspond attachment headers =~ /^Received/ (this means that ### the correspond was an incoming e-mail) ### Get last Correspond my $Transactions = $Ticket->Transactions; $Transactions->Limit( FIELD => 'Type', VALUE => 'Correspond' ); $Transactions->OrderByCols ( { FIELD => 'Created', ORDER => 'DESC' }, { FIELD => 'id', ORDER => 'DESC' }, ); my $CorrespondObj = $Transactions->First; if ($CorrespondObj && $CorrespondObj->Id) { $c_content = $CorrespondObj->Content; chomp $c_content; $have_rmks = !$CorrespondObj->Attachments->First->GetHeader('Received'); #$RT::Logger->debug("$MyName: found correspondence: '$_content'") if $have_rmks; } ### Get last outgoing e-mail $Transactions = $Ticket->Transactions; $Transactions->Limit( FIELD => 'Type', VALUE => 'EmailRecord' ); $Transactions->OrderByCols ( { FIELD => 'Created', ORDER => 'DESC' }, { FIELD => 'id', ORDER => 'DESC' }, ); my $EmailObj = $Transactions->First; if ($EmailObj && $EmailObj->Id) { $e_content = $EmailObj->Content; chomp $e_content; if ($c_content) { $have_rmks = 0 if $e_content eq $c_content; $have_rmks = 0 if $EmailObj->Id > $CorrespondObj->Id; } } use Mail::Address; my $Cc = ''; my $Bcc = ''; if ( $have_rmks ) { my $attachment = $CorrespondObj->Attachments->First; my @cc_addrs = Mail::Address->parse($attachment->GetHeader('RT-Send-Cc')); my @bcc_addrs = Mail::Address->parse($attachment->GetHeader('RT-Send-Bcc')); foreach my $addr ( @cc_addrs ) { $Cc .= $addr->address . ", "; } $Cc .= $Ticket->QueueObj->Cc->MemberEmailAddressesAsString; $Cc =~ s/, $//; foreach my $addr ( @bcc_addrs ) { $Bcc .= $addr->address . ", "; } $Bcc .= $Ticket->QueueObj->AdminCc->MemberEmailAddressesAsString; $Bcc =~ s/, $//; } ### Set the remarks if applicable if ($have_rmks) { $remarks = " Comments: ==================== $c_content ===================="; #$RT::Logger->debug("$MyName: going to send comments: $remarks"); } my $AddressGroup = "From: $FromAddress"; $AddressGroup .= "\nCc: $Cc" if $Cc; $AddressGroup .= "\nBcc: $Bcc" if $Bcc; $OUT = "$AddressGroup Subject: Action completed for your request The ticket that was opened for your request has been resolved by $OwnerName. If you have any questions about this, you can contact us at $ContactAddress. $remarks Regards, The IT Staff"; } ===== end of template contents At 10:42 AM 5/5/2008, Nelson Pereira wrote: >Content-Class: urn:content-classes:message >Content-Type: multipart/related; type="multipart/alternative"; > boundary="----_=_NextPart_001_01C8AED7.61321FB3" > >Hi, > >Wondering how to do this: > >When I resolve a ticket, I want RT to send the message I put in the >resolve to the requestor, and not the default ?as per our records .? > > >Nelson Pereira >Senior Network Administrator -- Gene LeDuc, GSEC Security Analyst San Diego State University -------------- next part -------------- An HTML attachment was scrubbed... URL: From KFCrocker at lbl.gov Mon May 5 14:40:39 2008 From: KFCrocker at lbl.gov (Kenneth Crocker) Date: Mon, 05 May 2008 11:40:39 -0700 Subject: [rt-users] Send last message/comment from ticket to requestor on resolve In-Reply-To: <21044E8C915A7E43B90A1056127160F125832C@EXMAIL.protus.org> References: <21044E8C915A7E43B90A1056127160F125832C@EXMAIL.protus.org> Message-ID: <481F54A7.7060708@lbl.gov> Nelson, We created our own template and put the following code in it: #MAKE SURE YOUR TEMPLATE HAS A BLANK LINE AFTER THE "Subject:" LINE!!! Subject: Request Titled: "{$Ticket->Subject}" has been Resolved! This ticket has been resolved. DO NOT REPLY to this message! ----------------------------------------------------------------------------- TICKET INFORMATION: Ticket Queue : {$Ticket->QueueObj->Name} Ticket Number : {$Ticket->Id} Ticket Subject: {$Ticket->Subject} Ticket Description: {$Ticket->FirstCustomFieldValue('Description')} Ticket Priority is: {$Ticket->Priority} Ticket Requestor : {$Ticket->Requestors->UserMembersObj->First->Name} Ticket Created by: {$Ticket->CreatorObj->Name} Ticket Created on: {substr($Ticket->Created, 0, 10)} Ticket Owned by: {$Ticket->OwnerObj->Name} Development Started on: {substr($Ticket->Started, 0, 10)} QA Approved on: {$Ticket->FirstCustomFieldValue('QA Approval Date')} QA Approved by: {$Ticket->FirstCustomFieldValue('QA Approver')} Migrated on: {substr($Ticket->Resolved, 0, 10)} Migrated by: {$Ticket->LastUpdatedByObj->Name} Resolution comment: { my $Resolution_Comment; my $Transactions; my $CommentObj; $Transactions = $Ticket->Transactions; $Transactions->Limit( FIELD => 'Type', VALUE => 'Comment' ); $Transactions->OrderByCols( { FIELD => 'Created', ORDER => 'DESC' }, { FIELD => 'id', ORDER => 'DESC' }, ); $CommentObj = $Transactions->First; if ($CommentObj && $CommentObj->id) { $Resolution_Comment = $CommentObj->Content; } else { $Resolution_Comment = "No comment." } return $Resolution_Comment; } ----------------------------------------------------------------------------- To view ticket information, enter URL: {$RT::WebURL}Ticket/Display.html?id={$Ticket->id} Of course, you will certainly not have the same CF's in your tickets and we use the "Comment" not the reply to insert into the template. But I think this will give you an idea on how to do this. Hope this helps. Kenn LBNL On 5/5/2008 10:42 AM, Nelson Pereira wrote: > Hi, > > > > Wondering how to do this: > > > > When I resolve a ticket, I want RT to send the message I put in the > resolve to the requestor, and not the default ?as per our records?.? > > > > > > *Nelson Pereira* > Senior Network Administrator > > Protus IP Solutions Inc. > npereira at protus.com > phone: 613.733.0000 ext.528 > MyFax: 613.822.5083 > www.myfax.com > > Refer your friends and colleagues to MyFax! > Click here for more information. > > > > > www.MyFax.com > > > > > ------------------------------------------------------------------------ > > _______________________________________________ > http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-users > > Community help: http://wiki.bestpractical.com > Commercial support: sales at bestpractical.com > > > Discover RT's hidden secrets with RT Essentials from O'Reilly Media. > Buy a copy at http://rtbook.bestpractical.com From sturner at MIT.EDU Mon May 5 14:45:48 2008 From: sturner at MIT.EDU (Stephen Turner) Date: Mon, 05 May 2008 14:45:48 -0400 Subject: [rt-users] Send last message/comment from ticket to requestor on resolve In-Reply-To: <21044E8C915A7E43B90A1056127160F125832C@EXMAIL.protus.org> References: <21044E8C915A7E43B90A1056127160F125832C@EXMAIL.protus.org> Message-ID: <6.2.3.4.2.20080505144225.046a0b98@po14.mit.edu> At Monday 5/5/2008 01:42 PM, Nelson Pereira wrote: >Hi, > >Wondering how to do this: > >When I resolve a ticket, I want RT to send the >message I put in the resolve to the requestor, >and not the default ?as per our records .? Disable the "On resolve notify Requestors" scrip, and resolve tickets by adding a reply & changing the status. The Mason code can be changed so that when you use the "Resolve" link, the "Update type" is set to Reply rather than Comment. Steve Stephen Turner Senior Programmer/Analyst - SAIS MIT Information Services and Technology (IS&T) From morten.guldager at gmail.com Mon May 5 15:55:01 2008 From: morten.guldager at gmail.com (Morten Guldager) Date: Mon, 5 May 2008 21:55:01 +0200 Subject: [rt-users] How to join two RT tables in perl? In-Reply-To: <589c94400805050619j2d585fd0hec181db086cb4e8c@mail.gmail.com> References: <589c94400805050619j2d585fd0hec181db086cb4e8c@mail.gmail.com> Message-ID: Ah thanks, works very well on the Creator column. But it does not work on OldValue and NewValue. They change type of content all the time. And some times they even contains real data. Which piece of secret magic do I need this time? /Morten %-) On Mon, May 5, 2008 at 3:19 PM, Ruslan Zakirov wrote: > use > $row->CreatorObj->Name; > > as far as I can see you don't need join which is for limits, not for > access. > > On Mon, May 5, 2008 at 5:09 PM, Morten Guldager > wrote: > > 'Aloha! > > > > In my standalone program I would like to do a join on the tables > > Transactions and Users in order to add Users.Name to my print > > out. (and not just the user number) > > > > But I somehow lost track while trying to figure out how it is done > > in the RT code itself. > > > > Below is a boiled down demo program which fails in the second > > last line, which is somehow expected. > > > > RT::Transaction::Name Unimplemented in main. (./Join-demo-2 line 31) > > > > Perhaps somebody can help me in the right direction. > > > > -- > > /Morten %-) > > > > #!/usr/bin/perl > > > > package RT; > > our $DatabaseType = 'mysql'; > > our $DatabaseUser = 'rtuser'; > > our $DatabasePassword = 'wibble'; > > our $DatabaseName = 'rtdb'; > > > > package main; > > use strict; > > use warnings; > > use lib '/usr/share/request-tracker3.6/lib'; > > use RT; > > use RT::Transactions; > > > > RT::Init(); > > my $CurrentUser = RT::CurrentUser->new('cust-12345'); > > > > my $t = new RT::Transactions($CurrentUser); > > $t->LimitToTicket(1); > > > > my $u = $t->NewAlias('Users'); > > $t->Join(ALIAS1 => 'main', > > FIELD1 => 'Creator', > > ALIAS2 => $u, > > FIELD2 => 'id'); > > > > while (my $row = $t->Next) > > { > > printf "id:%s, CreatorId:%s, Name:%s\n", $row->id, $row->Creator, > > $row->Name; > > } > > > > > > _______________________________________________ > > http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-users > > > > Community help: http://wiki.bestpractical.com > > Commercial support: sales at bestpractical.com > > > > > > Discover RT's hidden secrets with RT Essentials from O'Reilly Media. > > Buy a copy at http://rtbook.bestpractical.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: From dmbeethe at fedex.com Mon May 5 15:43:30 2008 From: dmbeethe at fedex.com (Don Beethe) Date: Mon, 5 May 2008 14:43:30 -0500 Subject: [rt-users] RT and SSL In-Reply-To: Message-ID: Trying to get this to work. Got the website to work, but now having trouble with the mailgate. When I try: cat /root/test_ticket | /opt/rt3/bin/rt-mailgate --queue General --action correspond --url https://carrera.rmtc.fedex.com I get in the rt.log: [Mon May 5 19:42:06 2008] [error]: Could not record email: Could not load a valid user (/opt/rt3/share/html/REST/1.0/NoAuth/mail-gateway:75) I've tried using the old url (http://carrera.rmtc.fedex.com) and get: An Error Occurred ================= 301 Moved Permanently Instead of just in the rt.log... Any help would be appreciated. From KFCrocker at lbl.gov Mon May 5 18:38:51 2008 From: KFCrocker at lbl.gov (Kenneth Crocker) Date: Mon, 05 May 2008 15:38:51 -0700 Subject: [rt-users] Custom Field Drop down Message-ID: <481F8C7B.5040500@lbl.gov> To all, I was wondering if anyone had created a Custom Field that was pre-filled with members of a group or list of users. What I want to do is create a CF that can either be pre-filled from members of an existing group or allow a drop-down selection of group members (from a list of groups) to be selected/added as initial values for the CF. This allows a ticket owner or Manager of a queue to choose a user (from the list of available "user-names/values") to act as the person of interest for whatever function the CF stands for. It would offer tremendous flexibility for any RT installation that involves a lot of workflow functionality. Anyone?? Kenn LBNL From ruz at bestpractical.com Mon May 5 19:50:36 2008 From: ruz at bestpractical.com (Ruslan Zakirov) Date: Tue, 6 May 2008 03:50:36 +0400 Subject: [rt-users] How to join two RT tables in perl? In-Reply-To: References: <589c94400805050619j2d585fd0hec181db086cb4e8c@mail.gmail.com> Message-ID: <589c94400805051650s594e6c06q6bbd411314e02bba@mail.gmail.com> Depends on what you want to do? On Mon, May 5, 2008 at 11:55 PM, Morten Guldager wrote: > Ah thanks, works very well on the Creator column. > > But it does not work on OldValue and NewValue. They change > type of content all the time. And some times they even contains > real data. > > Which piece of secret magic do I need this time? > > > /Morten %-) > > > > On Mon, May 5, 2008 at 3:19 PM, Ruslan Zakirov > wrote: > > use > > $row->CreatorObj->Name; > > > > as far as I can see you don't need join which is for limits, not for > access. > > > > > > > > > > On Mon, May 5, 2008 at 5:09 PM, Morten Guldager > > wrote: > > > 'Aloha! > > > > > > In my standalone program I would like to do a join on the tables > > > Transactions and Users in order to add Users.Name to my print > > > out. (and not just the user number) > > > > > > But I somehow lost track while trying to figure out how it is done > > > in the RT code itself. > > > > > > Below is a boiled down demo program which fails in the second > > > last line, which is somehow expected. > > > > > > RT::Transaction::Name Unimplemented in main. (./Join-demo-2 line 31) > > > > > > Perhaps somebody can help me in the right direction. > > > > > > -- > > > /Morten %-) > > > > > > #!/usr/bin/perl > > > > > > package RT; > > > our $DatabaseType = 'mysql'; > > > our $DatabaseUser = 'rtuser'; > > > our $DatabasePassword = 'wibble'; > > > our $DatabaseName = 'rtdb'; > > > > > > package main; > > > use strict; > > > use warnings; > > > use lib '/usr/share/request-tracker3.6/lib'; > > > use RT; > > > use RT::Transactions; > > > > > > RT::Init(); > > > my $CurrentUser = RT::CurrentUser->new('cust-12345'); > > > > > > my $t = new RT::Transactions($CurrentUser); > > > $t->LimitToTicket(1); > > > > > > my $u = $t->NewAlias('Users'); > > > $t->Join(ALIAS1 => 'main', > > > FIELD1 => 'Creator', > > > ALIAS2 => $u, > > > FIELD2 => 'id'); > > > > > > while (my $row = $t->Next) > > > { > > > printf "id:%s, CreatorId:%s, Name:%s\n", $row->id, $row->Creator, > > > $row->Name; > > > } > > > > > > > > > _______________________________________________ > > > http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-users > > > > > > Community help: http://wiki.bestpractical.com > > > Commercial support: sales at bestpractical.com > > > > > > > > > Discover RT's hidden secrets with RT Essentials from O'Reilly Media. > > > Buy a copy at http://rtbook.bestpractical.com > > > -- Best regards, Ruslan. From lists_rt at amnesiamachine.com Mon May 5 20:52:34 2008 From: lists_rt at amnesiamachine.com (RT Lists) Date: Mon, 5 May 2008 18:52:34 -0600 Subject: [rt-users] E-mail In-Reply-To: References: Message-ID: <1a260ce60805051752j71fc9490l6c4219f03f456c32@mail.gmail.com> Hi there, Would you mind posting your fetchmail configuration? -Matt On Sun, May 4, 2008 at 3:17 AM, IT GUY wrote: > Hello, > > My problem now is, when I reply with the Ticket ID as the subject, my > message doesn't go where it is supposed to be going. Instead a new ticked is > created which is not good. If any one replies with the Ticked ID as the > subject, the message should go in as comment. > > Am I missing something. Or is there something wrong with my fetchmail. > > IT GUY > Yogesh > > > _______________________________________________ > http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-users > > Community help: http://wiki.bestpractical.com > Commercial support: sales at bestpractical.com > > > Discover RT's hidden secrets with RT Essentials from O'Reilly Media. > Buy a copy at http://rtbook.bestpractical.com > -------------- next part -------------- An HTML attachment was scrubbed... URL: From asallade at PTSOWA.ORG Mon May 5 22:32:42 2008 From: asallade at PTSOWA.ORG (Aaron Sallade) Date: Mon, 5 May 2008 19:32:42 -0700 Subject: [rt-users] Custom Field Drop down In-Reply-To: <481F8C7B.5040500@lbl.gov> References: <481F8C7B.5040500@lbl.gov> Message-ID: <33DEE66ED2E72346ABC638427A77014050C514@PTSOEXCHANGE.PTSOWA.ORG> We use the "Requestor Dropdown" from the wiki. It uses JavaScript that could be modified to populate any custom field. It groups users by the "Organization" value in the user data, but you could modify the code to feed from a custom field in users I imagine. Aaron Sallade' Application Manager PTSO of Washington "Shared Technology for Community Health" (206) 613-8938 Desk (206) 521-8833 Main (206) 613-5078 Fax asallade at ptsowa.org -----Original Message----- From: Kenneth Crocker [mailto:KFCrocker at lbl.gov] Sent: Monday, May 05, 2008 3:39 PM To: rt Users Subject: [rt-users] Custom Field Drop down To all, I was wondering if anyone had created a Custom Field that was pre-filled with members of a group or list of users. What I want to do is create a CF that can either be pre-filled from members of an existing group or allow a drop-down selection of group members (from a list of groups) to be selected/added as initial values for the CF. This allows a ticket owner or Manager of a queue to choose a user (from the list of available "user-names/values") to act as the person of interest for whatever function the CF stands for. It would offer tremendous flexibility for any RT installation that involves a lot of workflow functionality. Anyone?? Kenn LBNL _______________________________________________ http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-users Community help: http://wiki.bestpractical.com Commercial support: sales at bestpractical.com Discover RT's hidden secrets with RT Essentials from O'Reilly Media. Buy a copy at http://rtbook.bestpractical.com From Horst.Kriegers at loterie.ch Tue May 6 04:34:43 2008 From: Horst.Kriegers at loterie.ch (Horst Kriegers) Date: Tue, 06 May 2008 10:34:43 +0200 Subject: [rt-users] =?iso-8859-15?q?R=E9p=2E_=3ARe=3A__CF_-_Select_values_?= =?iso-8859-15?q?rights?= In-Reply-To: <481F39AA.1010004@lbl.gov> References: <481ACE49.7061.0039.0@loterie.ch> <481B59E0.2050207@lbl.gov> <481ECED9.7061.0039.0@loterie.ch> <481F39AA.1010004@lbl.gov> Message-ID: <48203448.7061.0039.0@loterie.ch> Kenn, our infrastructure is as described below. I hoped I shall give right just to change the list Values (