From 2b0003150336192d2c4dad77cdb9323d51141ebd Mon Sep 17 00:00:00 2001 From: Scott Ullrich Date: Mon, 20 Mar 2006 04:06:01 +0000 Subject: * Add small vbscript to export all valid email addresses from a adsi / windows server installation * Update url to point to new script name --- packages/spamd_verify_to_address.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'packages/spamd_verify_to_address.php') diff --git a/packages/spamd_verify_to_address.php b/packages/spamd_verify_to_address.php index 3887a81d..6da3336e 100644 --- a/packages/spamd_verify_to_address.php +++ b/packages/spamd_verify_to_address.php @@ -29,7 +29,7 @@ require("config.inc"); require("functions.inc"); /* path to script that outputs c/r seperated e-mail addresses */ -$server_to_pull_data_from = "http://10.0.0.11/exchexp.asp"; +$server_to_pull_data_from = "http://10.0.0.11/spamd_exchexp.asp"; /* to enable debugging, change false to true */ $debug = true; @@ -39,10 +39,10 @@ if($debug) /* fetch down the latest list from server */ if($debug) { /* fetch without quiet mode */ - exec("fetch -o /tmp/emaillist.txt {$server_to_pull_data_from}"); + system("fetch -o /tmp/emaillist.txt {$server_to_pull_data_from}"); } else { /* fetch with quiet mode */ - exec("fetch -q -o /tmp/emaillist.txt {$server_to_pull_data_from}"); + system("fetch -q -o /tmp/emaillist.txt {$server_to_pull_data_from}"); } /* test if file exists, if not, bail. */ -- cgit v1.2.3