alecpl
2010-06-03 058eb6cd7002e066d037063d60f0a3ad27fe67c7
- support dynamic hostname variables in config


2 files modified
4 ■■■■ changed files
installer/rcube_install.php 2 ●●● patch | view | raw | blame | history
installer/test.php 2 ●●● patch | view | raw | blame | history
installer/rcube_install.php
@@ -466,7 +466,7 @@
    
    foreach ($default_hosts as $key => $name) {
      if (!empty($name))
        $out[] = is_numeric($key) ? $name : $key;
        $out[] = rcube_parse_host(is_numeric($key) ? $name : $key);
    }
    
    return $out;
installer/test.php
@@ -214,7 +214,7 @@
<h3>Test SMTP config</h3>
<p>
Server: <?php echo $RCI->getprop('smtp_server', 'PHP mail()'); ?><br />
Server: <?php echo rcube_parse_host($RCI->getprop('smtp_server', 'PHP mail()')); ?><br />
Port: <?php echo $RCI->getprop('smtp_port'); ?><br />
<?php