summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2008-12-16 13:00:55 +0000
committeralecpl <alec@alec.pl>2008-12-16 13:00:55 +0000
commitdea237e2d7d81ed68f77af3a2da4b7436eb36c11 (patch)
treea621694b81443086087f3c606a26e7355994d9bd
parent781f341b21f1cc76f5a9cb7ef8df21d27d09800d (diff)
#1485299: don't use SMTP's debug option
-rw-r--r--program/include/rcube_smtp.inc4
1 files changed, 0 insertions, 4 deletions
diff --git a/program/include/rcube_smtp.inc b/program/include/rcube_smtp.inc
index fd1dff3f0..92f808bd3 100644
--- a/program/include/rcube_smtp.inc
+++ b/program/include/rcube_smtp.inc
@@ -85,10 +85,6 @@ function smtp_mail($from, $recipients, &$headers, &$body, &$response)
$SMTP_CONN = new Net_SMTP($smtp_host, $smtp_port, $helo_host);
- // set debugging
- if ($CONFIG['debug_level'] & 8)
- $SMTP_CONN->setDebug(TRUE);
-
// try to connect to server and exit on failure
$result = $SMTP_CONN->connect($smtp_timeout);
if (PEAR::isError($result))