So etwas in .procmailrc:
* ^From: me@example.com * ^To: mycalendarservice@example.com | somescript.pl
somescript.pl erhält die E-Mail als Standardeingabe, sodass Sie sie wie folgt zerlegen können:
while (<>) { /^Subject: (.*)/ and $cmd = $1; /^./ and $body .= $_; } chmod $cmd; open(OUT, "| $cmd") or die; print OUT $body; close OUT;
Stellen Sie sicher, dass dies vor Missbrauch geschützt wird.