
Martin,
What is the expected release date of 2.0?
Bernie Frye
Director, Technical Sales Engineering
CURRENT Technologies, LLC
12800 Middlebrook Road, Suite 201
Germantown, Md. 20874
301-515-7617 ext. 214
240-793-9137 cell
***CONFIDENTIALITY NOTICE***
The information in this email may be confidential and/or privileged.
This email is intended to be reviewed by only the individual or
organization named above. If you are not the intended recipient or an
authorized representative of the intended recipient, you are hereby
notified that any review, dissemination or copying of this email and its
attachments, if any, or the information contained herein is prohibited.
If you have received this email in error, please immediately notify the
sender by return email and delete this message from your system.
-----Original Message-----
From: dev-bounces@otrs.org [mailto:dev-bounces@otrs.org] On Behalf Of
Martin Edenhofer
Sent: Wednesday, February 16, 2005 1:49 AM
To: Development community of OTRS
Subject: Re: [dev] Suggested addition
Hi John,
OTRS 2.0 comes with the
I would like to suggest the following code addition to the module:
AgentCompose.pm inserted at line 264...
it is a new variable for responses called:
Background, we found that we wanted to have pre-set responses but to make them sound as nice as possible we want to say:
Hi <firstname>,
The _REALNAME variable unfortunately shows a non-pretty format... This new variable works the following way:
Joe Smith < joe@smith.com mailto:joe@smith.com > converts to " Joe" Smith, Joe < joe@smith.com mailto:joe@smith.com > converts to " Joe" Joe < joe@smith.com > converts to " Joe" Mr. Joe Smith < joe@smith.com mailto:joe@smith.com > converts to " Joe " (I have to actually double check this one) < joe@smith.com mailto:joe@smith.com > converts to ""
Notice that all results except empty string have a " " (space) in front of them -- this is on purpose so that if you say:
Hi<..._REALFIRSTNAME>,
You won't wind up with a space between the "Hi" and "," if the result is nothing... but if there is a result, the space is inserted. This way the result looks exactly like it should in all cases.
It is working great so far and has saved us tons of work cleaning up responses based on what peoples email address is. Might need some tweaks over time as new emails come in but seems to do well right now.
-John
--------------------------------------------- Insert at line 264:
if ($Data{Salutation} =~ /
/) { # get realname my $From = ''; if ($Ticket{CustomerUserID}) { $From = $Self->{CustomerUserObject}->CustomerName(UserLogin => $Ticket{CustomerUserID}); } if (!$From) { $From = $Data{OrigFrom} || ''; $From =~ s/<.*>|\(.*\)|\"|;//g; $From =~ s#^.*?,##; $From =~ s# +$##; $From =~ s#^ +##; $From =~ s# +# #g;
foreach (split (' ',$From)) { if ($_ !~ m#\.#) { $From = $_; last; } }
if ($From =~ m#\@#) { $From = ""; }
if ($From ne "") { $From = " $From"; } } $Data{Salutation} =~ s/
/$From/g; }
------------------------------------------------------------------------ _______________________________________________ OTRS mailing list: dev - Webpage: http://otrs.org/ Archive: http://lists.otrs.org/pipermail/dev To unsubscribe: http://lists.otrs.org/cgi-bin/listinfo/dev

Hi Bernie, Frye, Bernie wrote:
What is the expected release date of 2.0?
OTRS 2.0 Beta1 will be released 2005-05-01. And OTRS 2.0 stable will be released 2005-08-01. Key features will be: * PGP support (already in CVS HEAD) * SMIME support (already in CVS HEAD) * Role feature (already in CVS HEAD) * Ticket ACL feature (already in CVS HEAD) * Link support of objects link tickets, faqs, ... (already in CVS HEAD) * OTRS web package manager (to install applications like calendar or filemanager) (already in CVS HEAD) o OTRS online appliaction repository (incl. web interface) * Web config editor * Workflow feature And many other new features.
Bernie Frye Director, Technical Sales Engineering CURRENT Technologies, LLC
Martin Edenhofer -- ((otrs.de)) :: OTRS GmbH :: Norsk-Data-Str. 1 :: 61352 Bad Homburg http://www.otrs.de/ :: Manage your communication!

Hi Martin, Very good news. Is there a place were I can see all the other features/changes ? Cheers, Daniel
-----Original Message----- From: dev-bounces@otrs.org [mailto:dev-bounces@otrs.org] On Behalf Of Martin Edenhofer Sent: Wednesday, February 16, 2005 3:51 PM To: Development community of OTRS Subject: Re: [dev] Suggested addition
Hi Bernie,
Frye, Bernie wrote:
What is the expected release date of 2.0?
OTRS 2.0 Beta1 will be released 2005-05-01. And OTRS 2.0 stable will be released 2005-08-01.
Key features will be:
* PGP support (already in CVS HEAD) * SMIME support (already in CVS HEAD) * Role feature (already in CVS HEAD) * Ticket ACL feature (already in CVS HEAD) * Link support of objects link tickets, faqs, ... (already in CVS HEAD) * OTRS web package manager (to install applications like calendar or filemanager) (already in CVS HEAD) o OTRS online appliaction repository (incl. web interface) * Web config editor * Workflow feature
And many other new features.
Bernie Frye Director, Technical Sales Engineering CURRENT Technologies, LLC
Martin Edenhofer
-- ((otrs.de)) :: OTRS GmbH :: Norsk-Data-Str. 1 :: 61352 Bad Homburg http://www.otrs.de/ :: Manage your communication! _______________________________________________ OTRS mailing list: dev - Webpage: http://otrs.org/ Archive: http://lists.otrs.org/pipermail/dev To unsubscribe: http://lists.otrs.org/cgi-bin/listinfo/dev
-- This message was scanned for spam and viruses by BitDefender. For more information please visit http://linux.bitdefender.com/
-- This message was scanned for spam and viruses by BitDefender. For more information please visit http://linux.bitdefender.com/

Hi Daniel, Daniel Balan wrote:
Very good news. Is there a place were I can see all the other features/changes ?
Technical use the changes file: http://cvs.otrs.org/viewcvs.cgi/otrs/CHANGES Anyway, we will send a human readable with the first beta. :)
Daniel
Martin -- ((otrs.de)) :: OTRS GmbH :: Norsk-Data-Str. 1 :: 61352 Bad Homburg http://www.otrs.de/ :: Manage your communication!
participants (3)
-
Daniel Balan
-
Frye, Bernie
-
Martin Edenhofer