diff options
author | Simone Rota <sip@crux.nu> | 2006-11-28 20:32:36 +0100 |
---|---|---|
committer | Simone Rota <sip@crux.nu> | 2006-11-28 20:32:36 +0100 |
commit | 6e0932080c83838bbea260d344a866d44b042e36 (patch) | |
tree | 03817cb6eb228837f74e2e601f08cdf5ec2918d9 | |
parent | db4175c008a36c15ab72c5d28606506ef4a57ed1 (diff) | |
download | webtools-6e0932080c83838bbea260d344a866d44b042e36.tar.gz webtools-6e0932080c83838bbea260d344a866d44b042e36.tar.xz |
Corrected smtp server
-rwxr-xr-x | portdb/portdb/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/portdb/portdb/index.php b/portdb/portdb/index.php index 062a1b0..c318bcd 100755 --- a/portdb/portdb/index.php +++ b/portdb/portdb/index.php @@ -222,7 +222,7 @@ function sendMail($name, $url, $mail, $maint) { $msg .= "\nConfig line: \"$name|$maint <$mail>|httpup|$url\",\n\n"; $msg .= "REMOTE_ADDR: " . $_SERVER["REMOTE_ADDR"] . "\n"; $msg .= "USER_AGENT : " . $_SERVER["HTTP_USER_AGENT"] . "\n"; - $params["host"] = "out.virgilio.it"; + $params["host"] = "localhost"; $mail_obj = &Mail::factory("smtp", $params); return $mail_obj->send($admin, $headers, $msg); } |