Re: [exim] redirecting email to perl script

Páxina inicial
Borrar esta mensaxe
Responder a esta mensaxe
Autor: Markus Hardiyanto
Data:  
Para: Edgar Lovecraft, exim-users
CC: 
Asunto: 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: