Search found 241 matches

by renee
07 Nov 2011, 20:58
Forum: Help
Topic: completely broken OTRS [SOLVED]
Replies: 6
Views: 2789

Re: completely broken OTRS

Not sure how I can "reset" the settings that were changed to get OTRS back into a working state. You can edit Kernel/Config/Files/ZZZAuto.pm manually and search for "SMTPTLS" and replace it with "SMTP". Usually you shouldn't edit this file manually, but to fix an error...
by renee
06 Nov 2011, 20:49
Forum: Hilfe
Topic: Kunden-Info ändern
Replies: 1
Views: 1093

Re: Kunden-Info ändern

Gehe ich recht in der Annahme, dass Du die AgentTicketZoom-Seite meinst? Dann sollte es reichen, wenn Du in der Kernel/Config.pm die "Map" um diese Felder erweiterst (das "shown"-Attribut muss dann logischerweise auf 1 gesetzt werden).
by renee
06 Nov 2011, 16:09
Forum: Patches / Modules
Topic: New Module: MultipleSMTP
Replies: 5
Views: 59135

Re: New Module: MultipleSMTP

I will have a look at it this week...
by renee
06 Nov 2011, 16:09
Forum: Help
Topic: Tickets
Replies: 3
Views: 1995

Re: Tickets

You should create a "Modulename.xml" in Kernel/Config/Files/ (where "Modulename" can replaced by anything that isn't used yet). In this xml you should add <?xml version="1.0" encoding="utf-8"?> <otrs_config version="1.0" init="Application">...
by renee
11 Oct 2011, 11:30
Forum: Hilfe
Topic: Erfolgreich geschlossene Tickets werden angezeigt
Replies: 1
Views: 1307

Re: Erfolgreich geschlossene Tickets werden angezeigt

Hast Du im Admin-Bereich mal den Status genauer angeschaut? Im Admin-Bereich im Block "Ticket-Einstellungen" findest Du die Möglichkeit, den Status zu bearbeiten...
by renee
11 Oct 2011, 11:26
Forum: Help
Topic: Add Header information to AgentTicketZoom
Replies: 2
Views: 1536

Re: Add Header information to AgentTicketZoom

It's quite simple: In Kernel/Modules/AgentTicketZoom.pm you'll find something like: # do some strips && quoting KEY: for my $Key (qw(From To Cc)) { next KEY if !$Article{$Key}; $Self->{LayoutObject}->Block( Name => 'RowRecipient', Data => { Key => $Key, Value => $Article{$Key}, Realname => $...
by renee
11 Oct 2011, 11:13
Forum: Allgemeines
Topic: Kleiner Hack für AgentTicketZoom
Replies: 4
Views: 2861

Re: Kleiner Hack für AgentTicketZoom

Cool wäre, das ganze konfigurierbar machen und einen Patch an die xxx schicken. Denn das ist wirklich ganz praktisch...
by renee
11 Oct 2011, 11:12
Forum: Hilfe
Topic: Generic Agent
Replies: 2
Views: 1400

Re: Generic Agent

Und Du musst den Cronjob eintragen... Unter welchem Betriebssystem läuft das OTRS?
by renee
04 Oct 2011, 10:43
Forum: Help
Topic: Software error when fetch mail in PostMaster Mail Account
Replies: 6
Views: 2940

Re: Software error when fetch mail in PostMaster Mail Accoun

You seem to have postmaster filters. There is an error in the regular expression. Please post your filters...
by renee
01 Oct 2011, 20:02
Forum: General
Topic: SysLog not Working
Replies: 4
Views: 2871

Re: SysLog not Working

Is it hardcoded in Kernel/Config.pm?
by renee
22 Sep 2011, 13:45
Forum: Hilfe
Topic: Tickets erscheinen nicht
Replies: 3
Views: 1430

Re: Tickets erscheinen nicht

Hast Du vielleicht neue/andere Ticket Status? Existiert der Status, der in der SysConfig unter "PostmasterDefaultState" eingetragen ist?
by renee
21 Sep 2011, 11:12
Forum: Help
Topic: =?UTF-8?Q?=20?= in From-Field of Email Header
Replies: 7
Views: 3294

Re: =?UTF-8?Q?=20?= in From-Field of Email Header

I have no idea what's going on...
by renee
21 Sep 2011, 11:10
Forum: General
Topic: GenericAgent.pm not found!
Replies: 2
Views: 2056

Re: GenericAgent.pm not found!

Did you have a look if the file exists? In standard OTRS there is a GenericAgent.pm.dist that has to be copied to GenericAgent.pm. See also the installation instructions at http://doc.otrs.org/3.0/en/html/manual- ... -otrs.html
by renee
19 Sep 2011, 14:57
Forum: Hilfe
Topic: [solved] Anpassen Bereich Ticket-Informationen
Replies: 8
Views: 5265

Re: Anpassen Bereich Ticket-Informationen

Schau mal in das Modul Kernel::System::Ticket (<OTRS_HOME>/Kernel/System/Ticket.pm). Da gibt es in der Funktion TicketGet() diesen Code: # get state info my %StateData = $Self->{StateObject}->StateGet( ID => $Ticket{StateID} ); $Ticket{StateType} = $StateData{TypeName}; $Ticket{State} = $StateData{N...
by renee
19 Sep 2011, 14:46
Forum: Help
Topic: =?UTF-8?Q?=20?= in From-Field of Email Header
Replies: 7
Views: 3294

Re: =?UTF-8?Q?=20?= in From-Field of Email Header

Did you have a look at the webfrontend and the database if there is an extra whitespace anywhere? Can you put a debug statement in Kernel::System::Email? In the subroutine Send() just before "# do some encode for (qw(From To Cc Subject)) { ..." insert these lines: use Data::Dumper; $Data::...
by renee
16 Sep 2011, 10:32
Forum: Help
Topic: Apache service won't start after 2.4->3.0
Replies: 4
Views: 3525

Re: Apache service won't start after 2.4->3.0

If you edit C:/PROGRA~2/OTRS/OTRS/scripts/apache2-perl-startup.pl, you'll find something like this: use lib "/opt/otrs/"; use lib "/opt/otrs/Kernel/cpan-lib"; use lib "/opt/otrs/Custom"; Here you have to replace "/opt/otrs/" with "C:/Program Files/OTRS/OT...
by renee
16 Sep 2011, 09:46
Forum: Help
Topic: DirectoryIndex oddness
Replies: 2
Views: 1755

Re: DirectoryIndex oddness

You use mod_perl and with mod_perl you can't use DirectoryIndex. This error is annoying and this should be fixed in mod_perl - so this is not an OTRS issue...

If this directory has nothing to do with OTRS, you should disable mod_perl for that directory. Can you post your apache configuration?
by renee
16 Sep 2011, 09:41
Forum: Help
Topic: Apache service won't start after 2.4->3.0
Replies: 4
Views: 3525

Re: Apache service won't start after 2.4->3.0

Perl can work with UNIX style directory paths on windows to. Perl has some kind of abstraction layer here... Did you have a look if there is a Config.pm in <OTRS_HOME>/Kernel/ (Where <OTRS_HOME> is the path to the "root" directory of you OTRS installation)? What is the path to that directo...
by renee
16 Sep 2011, 09:38
Forum: General
Topic: Add "Time left" column in view/dashboard
Replies: 6
Views: 3137

Re: Add "Time left" column in view/dashboard

Can you show us what you have changed?
by renee
16 Sep 2011, 09:35
Forum: General
Topic: OTRS Framework Version
Replies: 3
Views: 2368

Re: OTRS Framework Version

@jojo: The package requires 3.0.x (at least this is what the error message says). @zjyuan: I don't know why your framework version isn't shown in the error message. Have you deleted the RELEASE file of your OTRS installation? Is there a "Version" option in SysConfig? Have you set a "V...
by renee
14 Sep 2011, 16:02
Forum: General
Topic: [SOLVED] Sick of merging tickets!
Replies: 6
Views: 3485

Re: Sick of merging tickets!

AFAIK it's not possible in standard OTRS. But it would be possible to develop an extension to do the following: * It would be a postmaster filter * this filter saves the unique id of the mail and stores the article id that represents the mail * whenever a new mail is parsed, the filter checks the ma...
by renee
14 Sep 2011, 15:54
Forum: Help
Topic: =?UTF-8?Q?=20?= in From-Field of Email Header
Replies: 7
Views: 3294

Re: =?UTF-8?Q?=20?= in From-Field of Email Header

Is this mail address configured in SysConfig or as a system mail address? Can you look at either Config file or database?
by renee
14 Sep 2011, 12:08
Forum: Hilfe
Topic: [General-Katalog] Katalog-Klasse nimmt Eintrag nicht an
Replies: 6
Views: 2514

Re: [General-Katalog] Katalog-Klasse nimmt Eintrag nicht an

Stimmt, man muss auch Kernel::System::GeneralCatalog anpassen... Dort wird bei der Parameterprüfung auch nicht auf "defined" geprüft, sondern nur auf den "wahren" Wert. Du müsstest also überall aus "if ( !$Param{$Argument} ) {" ein "if ( !defined $Param{$Argument} ...
by renee
14 Sep 2011, 11:22
Forum: Hilfe
Topic: Suche über Kundeninfo
Replies: 1
Views: 1037

Re: Suche über Kundeninfo

Im Standard meines Wissens nach nicht. Da müsste in OTRS die Ticket-Suche angepasst werden.
by renee
14 Sep 2011, 09:45
Forum: Allgemeines
Topic: Mehrere Mitarbeiter
Replies: 4
Views: 2133

Re: Mehrere Mitarbeiter

Wenn der Kunde auf die Antwort wiederum antwortet, wird das ja an das bestehende Ticket angehängt... Du könntest hier mir Eventbasierten Benachrichtigungen arbeiten (Admin -> "Benachrichtigungen (Ereignis)"). Das müsste mit den folgenden Einstellungen ganz gut funktionieren: Name: Einfach ...
by renee
14 Sep 2011, 09:34
Forum: Help
Topic: Fix E_mail Server Problem
Replies: 1
Views: 1174

Re: Fix E_mail Server Problem

You can configure all OTRS/email related things in the admin area. If you need to add a new account for *incoming* mails, go to Admin -> PostMaster Mail Accounts. If you need to configure OTRS to *send* mails, go to Admin -> SysConfig. Search for "Core::Sendmail" and edit the config option...
by renee
14 Sep 2011, 09:27
Forum: Hilfe
Topic: PDF Ticket title abgekürzt
Replies: 3
Views: 1603

Re: PDF Ticket title abgekürzt

Ähhh ja, ich meinte PageNew. Sorry...
by renee
14 Sep 2011, 09:20
Forum: General
Topic: SysLog not Working
Replies: 4
Views: 2871

Re: SysLog not Working

Do you have a syslog daemon running on Windows? AFAIK this is not a standard application on Windows. I would change the logging settings to use file based logging.
by renee
14 Sep 2011, 09:15
Forum: Developers
Topic: Custom Ticket Event Process Order
Replies: 1
Views: 1891

Re: Custom Ticket Event Process Order

That's strange. Can you post your code?
by renee
14 Sep 2011, 08:55
Forum: Allgemeines
Topic: Mehrere Mitarbeiter
Replies: 4
Views: 2133

Re: Mehrere Mitarbeiter

Das lässt sich 1:1 im OTRS abbilden: Einfach alle Tickets in einer Queue erzeugen, die alle sehen können. Dann kann sich jeder die Tickets nehmen, die für ihn interessant sind. Das ist ja direkt nach der Installation so. Interessanter ist es natürlich, wenn man gleich die Mails so verteilt, dass jed...
by renee
14 Sep 2011, 08:49
Forum: Help
Topic: [SOLVED] Split button missing?
Replies: 4
Views: 1805

Re: Split button missing?

Is AgentTicketPhone deactivated in the SysConfig?
by renee
14 Sep 2011, 08:48
Forum: General
Topic: Custom Field on "Add Customer" page
Replies: 13
Views: 29674

Re: Custom Field on "Add Customer" page

First, you have to add those fields in the database, so that the values can be stored... Then you have to do the following steps: If you haven't changed the CustomerUser-Settings in <OTRS_HOME>/Kernel/Config.pm 1) Copy all the code $Self->{CustomerUser} = { Name => 'Database Backend', Module => 'Ker...
by renee
14 Sep 2011, 08:38
Forum: General
Topic: setup 2 emails for separate tickets
Replies: 1
Views: 1428

Re: setup 2 emails for separate tickets

WRT 1) Either your mail account has to handle two mailaddresses or you need a second mail account. The handling of mail addresses is not configured in OTRS but in your mail system. If you have a second mail account, you need to add the second one in the Admin area of OTRS (Admin -> PostMaster Mail A...
by renee
13 Sep 2011, 17:30
Forum: Hilfe
Topic: PDF Ticket title abgekürzt
Replies: 3
Views: 1603

Re: PDF Ticket title abgekürzt

Du musst dafür auch Kernel::System::PDF anpassen. In der Sub DocumentNew() wird "HeadlineLeft" durch die Breite begrenzt. Wie man das am besten ändert, ohne dass alle möglichen PDFs davon betroffen sind, musst Du selbst mal schauen.
by renee
11 Sep 2011, 15:43
Forum: Hilfe
Topic: [General-Katalog] Katalog-Klasse nimmt Eintrag nicht an
Replies: 6
Views: 2514

Re: [General-Katalog] Katalog-Klasse nimmt Eintrag nicht an

Das liegt daran, wie OTRS intern die Werte überprüft und was in Perl "wahr" bzw. "unwahr" ist... Da gibt es im MOment keine andere Lösung, als das Perl-Modul zu ändern. Das müsste in Kernel/Modules/AdminGeneralCatlog.pm sein. # get params for my $Param (qw(Class ItemID Name Valid...
by renee
09 Sep 2011, 15:40
Forum: Allgemeines
Topic: OTRS Version 3.1
Replies: 7
Views: 3113

Re: OTRS Version 3.1

Die heißen dann Dynamic Fields. An den Logs vom DB-Schema kann man erkennen, dass das in 3.1 kommen wird: http://source.otrs.org/viewvc.cgi/otrs/ ... l?view=log
by renee
08 Sep 2011, 10:09
Forum: Help
Topic: Some changes to .dtl
Replies: 3
Views: 1588

Re: Some changes to .dtl

Regarding your second question: <tr><th>Prior</th> <th>None</th> <th>Ticket</th> <th>Title</th> <th>Queue</th> <th>Owner</th> <th>State</th> <th>Customer</th> <th>Created</th> <th>Time</th> </tr> should look like <tr><th>$Text{"Prior"}</th> <th>$Text{"None"}</th> <th>$Text{"...
by renee
08 Sep 2011, 09:19
Forum: Help
Topic: Decrypt agent and customer passwords
Replies: 4
Views: 3002

Re: Decrypt agent and customer passwords

Mostly the passwords are not encrypted but hashed. So there is no way to get the original password (except brute-force). You should compare the hashed values as MD5('password') equals MD5('password') ;-)
by renee
07 Sep 2011, 14:04
Forum: Help
Topic: Ticket template as drop-down
Replies: 8
Views: 7070

Re: Ticket template as drop-down

The development of TicketTemplate is stalled at the moment as the OTRS Community Board announced the development of tidbit: http://forums.otrs.org/viewtopic.php?f=53&t=10877&p=44351 Unfortunately, I won't have time to look at the issue until October 2nd, as I'm really busy till then. If anyb...
by renee
05 Sep 2011, 10:32
Forum: Hilfe
Topic: Unterschiedliche Signatur und SMTP Server
Replies: 2
Views: 1534

Re: Unterschiedliche Signatur und SMTP Server

Konfigurieren kann man das nicht. Das muss programmiert werden. Vielleicht hilft auch das hier: 1. Absenderadressen der Partnerfirma als Systemadressen einrichten 2. Signaturen für die Partnerfirma anlegen 3. Queues für die Mails der Partnerfirma anlegen. Dort dann auch die Absenderadresse und Signa...
by renee
02 Sep 2011, 08:29
Forum: Hilfe
Topic: Standard-Besitzer
Replies: 4
Views: 2374

Re: Standard-Besitzer

Über das Admin-Interface geht das auch nicht. Du musst ein Perl-Modul schreiben, das als Postmaster-Filter agiert. Schau Dir mal http://forums.otrs.org/viewtopic.php?f= ... 37&p=42243 an...
by renee
01 Sep 2011, 16:52
Forum: Hilfe
Topic: Statistikmodul wird nicht angezeigt
Replies: 2
Views: 1056

Re: Statistikmodul wird nicht angezeigt

Heißt die Gruppe "Statistik" oder - wie im Standard "stats"? Wenn "Statistik", dann muss auch "Statistik" bei der Frontend-Registrierung eingetragen werden. Dazu musst Du in der SysConfig mal "AgentStats" suchen...
by renee
01 Sep 2011, 15:01
Forum: Hilfe
Topic: E-Mail an Administrator, wenn sich ein Kunde registriert
Replies: 5
Views: 1934

Re: E-Mail an Administrator, wenn sich ein Kunde registriert

Du könntest Kernel::System::Web::InterfaceCustomer so ca. bei Zeile 670 den Email-Versand an den Administrator einfügen (dort wo schon die Mail an den Kunden verschickt wird).
by renee
01 Sep 2011, 14:34
Forum: Help
Topic: SMS-How to enable SMS in OTRS
Replies: 4
Views: 2155

Re: SMS-How to enable SMS in OTRS

Sending SMS: Not possible at the moment AFAIK. Currently I work on a module that sends SMS via Nexmo SMS API when a new ticket is created. If you need more, you can contact me. Receiving SMS: You need a SMS to Email gateway. There are several providers... If you use such a gateway, OTRS sees only th...
by renee
31 Aug 2011, 23:02
Forum: Hilfe
Topic: Tickettitel per Postmasterfilter ändern.
Replies: 1
Views: 1366

Re: Tickettitel per Postmasterfilter ändern.

Hi, da müsstest Du mit einem Postmaster-Filter wie in http://forums.otrs.org/viewtopic.php?f=61&t=10837&p=42243 beschrieben, arbeiten. Statt nach Attachments musst Du halt den Subject überprüfen und wenn der leer ist, einfach ein neues Subject setzen: ungetestet: # -- # Kernel/System/PostMas...
by renee
30 Aug 2011, 11:31
Forum: Hilfe
Topic: Standard-Besitzer
Replies: 4
Views: 2374

Re: Standard-Besitzer

Willst Du das automatisch beim Maileingang machen? Dann musst Du Dir einen PostMaster-Filter schreiben. Wenn Du es nachträglich selbst machen willst, kannst Du über die Ticket -> Statusansicht gehen und dann in einer Sammelaktion den Besitzer ändern.
by renee
30 Aug 2011, 11:27
Forum: Hilfe
Topic: Automatische E-Mail-Tickets nur für Kunden
Replies: 1
Views: 1309

Re: Automatische E-Mail-Tickets nur für Kunden

Das geht nicht mit den Postmaster Filtern über das Webfrontend. Aber ein Modul das als Postmaster Filter fungiert und diese Funktionalität ist relativ schnell geschrieben. Ein Beispielfilter findest Du unter http://forums.otrs.org/viewtopic.php?f=62&t=10905&p=42572#p42572 . Du musst den # --...
by renee
30 Aug 2011, 09:13
Forum: Hilfe
Topic: Abwesenheitsmail von Kunden wird als Nachfrage interpretiert
Replies: 3
Views: 1794

Re: Abwesenheitsmail von Kunden wird als Nachfrage interpret

Ist es eine Option, solche Abwesenheitsmail komplett zu ignorieren? Oder wird es bei offenen Tickets erwünscht, diese als "Nachfrage" zu behandeln? Im ersten Fall könntest Du einen Postmaster Filter über die Admin-Oberfläche erstellen, in dem Du auf Schlüsselworte im Betreff oder im Text d...