Re: [exim] redirecting email to perl script

Top Page
Delete this message
Reply to this message
Author: Markus Hardiyanto
Date:  
To: Edgar Lovecraft, exim-users
CC: 
Subject: Re: [exim] redirecting email to perl script
here is my script:
---begin---
#!/usr/bin/perl

$email = <STDIN>;

open (LOGGING, ">>/var/log/dnsbl_log");
print LOGGING "$email\n";
close LOGGING;
---end---

i only get this: