From 890eae675828e4d7e6ecbffc613f1eace87717fa Mon Sep 17 00:00:00 2001 From: alecpl Date: Wed, 9 Feb 2011 11:33:49 +0000 Subject: - Use IMAP's ID extension (RFC2971) to print more info into debug log --- program/include/rcube_imap.php | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'program/include/rcube_imap.php') diff --git a/program/include/rcube_imap.php b/program/include/rcube_imap.php index a4e67e140..f5a936890 100644 --- a/program/include/rcube_imap.php +++ b/program/include/rcube_imap.php @@ -148,9 +148,18 @@ class rcube_imap $this->options['port'] = $port; - if ($this->options['debug']) + if ($this->options['debug']) { $this->conn->setDebug(true, array($this, 'debug_handler')); + $this->options['ident'] = array( + 'name' => 'Roundcube Webmail', + 'version' => RCMAIL_VERSION, + 'php' => PHP_VERSION, + 'os' => PHP_OS, + 'command' => $_SERVER['REQUEST_URI'], + ); + } + $attempt = 0; do { $data = rcmail::get_instance()->plugins->exec_hook('imap_connect', -- cgit v1.2.3