Hallo,
 
ich weiß die Diskussion gab's schon mal, aber vielleicht gibt es ja neue Erkenntnisse:
Mein System: SuSE Linux 9.1, OTRS 1.3.1
 
Folgendes Problem:
 
Abruf einer einfachen Mail (kein Anhang) - problemlos
Die Mail wurde vom POP3 Server gelöscht und wird in OTRS korrekt angezeigt.
------------------------------------------------------------------------------ 
otrs@linux:~/bin> ./PostMasterPOP3.pl
Message 1/1 (sample@192.168.85.1)

Connection to 192.168.85.1 closed.
-------------------------------------------------------------------------------


Abruf einer Mail mit Anhang 5MB - PROBLEM
Die Mail wird nicht vom POP3 Server gelöscht wird aber in OTRS korrekt mit Anhang angezeigt. Jedoch vervielfältigt sich die Mail ständig, da schließlich PostMasterPOP3.pl zyklisch aufgerufen wird.
-------------------------------------------------------------------------------
otrs@linux:~/bin> ./PostMasterPOP3.pl
Message 1/1 (sample@192.168.85.1)

Use of uninitialized value in numeric eq (==) at /usr/lib/perl5/5.8.3/Net/POP3.pm line 299.
Use of uninitialized value in numeric eq (==) at /usr/lib/perl5/5.8.3/Net/POP3.pm line 302.

Connection to 192.168.85.1 closed.
--------------------------------------------------------------------------------


Damit OTRS mit großen Mails auch umgehen kann habe ich in:

/etc/my.cnf
max_allowed_packet = 32M

/opt/otrs/Kernel/Config.pm
$Self->{PostMasterPOP3MaxEmailSize} = 1024 * 1024 * 12;

gesetzt:


Gruß Tobias