Re: [exim] redirecting email to perl script

Page principale
Supprimer ce message
Répondre à ce message
Auteur: Markus Hardiyanto
Date:  
À: Edgar Lovecraft, exim-users
CC: 
Sujet: 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: