summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2015-03-31 16:05:27 +0200
committerAleksander Machniak <alec@alec.pl>2015-03-31 16:05:27 +0200
commite6c1e0c6383ae4b138080bcfa033e13f9576ecad (patch)
tree4f094e01e38733c6335151e7d36dfbf547ddeacc /plugins
parentbb2113ccdcfb2eb3c7b04c161a6b21ef893eee7e (diff)
Fix vpopmaild driver of password plugin
Diffstat (limited to 'plugins')
-rw-r--r--plugins/password/drivers/vpopmaild.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/password/drivers/vpopmaild.php b/plugins/password/drivers/vpopmaild.php
index 90fce02c5..bc0c8f9da 100644
--- a/plugins/password/drivers/vpopmaild.php
+++ b/plugins/password/drivers/vpopmaild.php
@@ -33,7 +33,7 @@ class rcube_vpopmaild_password
$host = $rcmail->config->get('password_vpopmaild_host');
$port = $rcmail->config->get('password_vpopmaild_port');
- $result = $vpopmaild->connect($hostname, $port, null);
+ $result = $vpopmaild->connect($host, $port, null);
if (is_a($result, 'PEAR_Error')) {
return PASSWORD_CONNECT_ERROR;
}