Re: [exim] redirecting email to perl script

Αρχική Σελίδα
Delete this message
Reply to this message
Συντάκτης: Markus Hardiyanto
Ημερομηνία:  
Προς: Edgar Lovecraft, exim-users
Υ/ο: 
Αντικείμενο: 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: