Re: [exim] redirecting email to perl script

Página Principal
Apagar esta mensagem
Responder a esta mensagem
Autor: Markus Hardiyanto
Data:  
Para: Edgar Lovecraft, exim-users
CC: 
Assunto: 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: