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
This message is part of the following thread:
the complete thread tree sorted by date
Edgar Lovecraft at
2005-04-21 16:53
Peter Bowyer at
2005-04-22 07:24
Author:
Markus Hardiyanto
Date:
2005-04-22 07:11
UTC
To:
Edgar Lovecraft, exim-users
CC:
Subject:
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: