E-Mails werden nicht in die Ticketoberfläche übernommen

Hallo zusammen, ich habe soeben otrs nach install-cli.html installiert - alles funktioniert soweit perfekt. Lediglich die E-Mails, die man otrs@localhost schickt, werden ignoriert und im Postfach von otrs beibehalten. Sprich, sie werden nicht in die Ticketoberfläche übernommen. Bei der Fehlersuche habe ich erst auf den Cronjob von otrs getippt, aber dort ist alles ordnungsgemäß eingerichtet. Snip # -- # cron/aaa_base - base crontab package # Copyright (C) 2002-2003 Martin Edenhofer <martin+code@otrs.org> # -- # $Id: aaa_base.dist,v 1.2 2003/01/07 00:36:16 martin Exp $ # This software comes with ABSOLUTELY NO WARRANTY. # -- # Who gets the cron emails? MAILTO="root@localhost" # -- # cron/fetchmail - fetchmail cron of the OTRS # Copyright (C) 2002-2003 Martin Edenhofer <martin+code@otrs.org> # -- # $Id: fetchmail.dist,v 1.2 2003/01/07 00:36:16 martin Exp $ # This software comes with ABSOLUTELY NO WARRANTY. # -- # fetch every 5 minutes emails via fetchmail # */5 * * * * /usr/bin/fetchmail -a >> /dev/null # -- # cron/generic_agent - GenericAgent.pl cron of the OTRS # Copyright (C) 2002-2003 Martin Edenhofer <martin+code@otrs.org> # -- # $Id: generic_agent.dist,v 1.3 2003/01/07 21:46:16 martin Exp $ # -- # This software comes with ABSOLUTELY NO WARRANTY. # -- # start generic agent every 20 minutes */20 * * * * $HOME/bin/GenericAgent.pl >> /dev/null # -- # cron/pending_jobs - pending_jobs cron of the OTRS # Copyright (C) 2002-2003 Martin Edenhofer <martin+code@otrs.org> # -- # $Id: pending_jobs.dist,v 1.4 2003/02/02 12:04:48 martin Exp $ # -- # This software comes with ABSOLUTELY NO WARRANTY. # -- # check every 120 min the pending jobs # This software comes with ABSOLUTELY NO WARRANTY. # -- # cron/stats - create stats for OTRS # Copyright (C) 2002-2003 Martin Edenhofer <martin+code@otrs.org> # -- # $Id: stats.dist,v 1.2 2003/01/07 00:36:16 martin Exp $ # This software comes with ABSOLUTELY NO WARRANTY. # -- # create every day new graphics #50 23 * * * $HOME/bin/mkStats.pl >> /dev/null # -- # cron/unlock - unlock old locked ticket of the OTRS # Copyright (C) 2002-2003 Martin Edenhofer <martin+code@otrs.org> # -- # $Id: unlock.dist,v 1.3 2003/01/07 21:46:16 martin Exp $ # This software comes with ABSOLUTELY NO WARRANTY. # -- # unlock every hour old locked tickets 35 * * * * $HOME/bin/UnlockTickets.pl --timeout >> /dev/null # -- # cron/aaa_base - base crontab package # Copyright (C) 2002-2003 Martin Edenhofer <martin+code@otrs.org> # -- # $Id: aaa_base.dist,v 1.2 2003/01/07 00:36:16 martin Exp $ # This software comes with ABSOLUTELY NO WARRANTY. # -- # Who gets the cron emails? MAILTO="root@localhost" # -- # cron/fetchmail - fetchmail cron of the OTRS # Copyright (C) 2002-2003 Martin Edenhofer <martin+code@otrs.org> # -- # $Id: fetchmail.dist,v 1.2 2003/01/07 00:36:16 martin Exp $ # This software comes with ABSOLUTELY NO WARRANTY. # -- # cron/stats - create stats for OTRS # Copyright (C) 2002-2003 Martin Edenhofer <martin+code@otrs.org> # -- # $Id: stats.dist,v 1.2 2003/01/07 00:36:16 martin Exp $ # This software comes with ABSOLUTELY NO WARRANTY. # -- # create every day new graphics 50 23 * * * $HOME/bin/mkStats.pl >> /dev/null # -- # cron/unlock - unlock old locked ticket of the OTRS # Copyright (C) 2002-2003 Martin Edenhofer <martin+code@otrs.org> # -- # $Id: unlock.dist,v 1.3 2003/01/07 21:46:16 martin Exp $ # This software comes with ABSOLUTELY NO WARRANTY. # -- # unlock every hour old locked tickets 35 * * * * $HOME/bin/UnlockTickets.pl --timeout >> /dev/null # -- # create every day new graphics 50 23 * * * $HOME/bin/mkStats.pl >> /dev/null # -- # cron/unlock - unlock old locked ticket of the OTRS # Copyright (C) 2002-2003 Martin Edenhofer <martin+code@otrs.org> # -- # $Id: unlock.dist,v 1.3 2003/01/07 21:46:16 martin Exp $ # This software comes with ABSOLUTELY NO WARRANTY. # -- # unlock every hour old locked tickets 35 * * * * $HOME/bin/UnlockTickets.pl --timeout >> /dev/null / Snip Auch die Rechte für die einzelnen Dateien (chmod, groups, usw.) sind korrekt. In der Hoffnung, mehr Informationen im Logfile zu finden oder evtl. Fehlermeldungen, die an root@localhost geschickt wurden, muss ich leider sagen: auch Fehlanzeige. Das stand garnichts bzw. das Logfile wurde noch nicht mal generiert. Das verwendete System ist SuSE Linux 8.1. Ich hoffe, mir kann irgendjemand weiterhelfen! Viele Grüße Daniel P.S.: Bei der Installation über das SuSE RPM trat genau das selbe Problem auf.

Hi Daniel, On Thu, Nov 06, 2003 at 05:00:47PM +0100, Daniel Schönland wrote:
ich habe soeben otrs nach install-cli.html installiert - alles funktioniert soweit perfekt.
Lediglich die E-Mails, die man otrs@localhost schickt, werden ignoriert und im Postfach von otrs beibehalten. Sprich, sie werden nicht in die Ticketoberfläche übernommen. [...]
Wenn Du eMails an otrs@localhost schickst müssen diese in bin/PostMaster.pl gepiped werden. Das passiert z. B. mit Procmail. Dazu muss der MTA (z. B. Postfix) mit Procmail konfiguriert sein. Andere einfachere Lösung ist bin/PostMasterPOP3.pl welches per Cron aufgerufen wird und POP3 Accounts abholt. Siehe auch: http://doc.otrs.org/1.1/html/receiving-email.html#RECEIVING-EMAIL-POP3
Daniel
Martin -- ((otrs.de)) :: OTRS GmbH :: Norsk-Data-Str. 1 :: 61352 Bad Homburg http://www.otrs.de/ :: Tel. +49 (0)6172 4832388

Ciao Martin, Martin Edenhofer wrote:
Andere einfachere Lösung ist bin/PostMasterPOP3.pl welches per Cron aufgerufen wird und POP3 Accounts abholt.
Vielen Dank, das war die Lösung. :-) - Daniel -- it-finder.de · Charlottenstr. 79/80 · 10117 Berlin Tel 030 435 837 50 · Fax 030 435 837 55
participants (2)
-
Daniel Schönland
-
Martin Edenhofer