Re: [exim] redirecting email to perl script
Català
Dansk
Deutsch
Ελληνικά
English
Español
suomi
Français
Galego
magyar
Italiano
日本語
Nederlands
Polski
Português
Português Brasileiro
Ce message fait partie du fil suivant :
Arborescence complète du fil triée par date
Edgar Lovecraft à
2005-04-21 16:53
Peter Bowyer à
2005-04-22 07:24
Auteur:
Markus Hardiyanto
Date:
2005-04-22 07:11
UTC
À:
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: