Changeset 3667 in subversion for trunk/roundcubemail/installer/test.php


Ignore:
Timestamp:
May 26, 2010 4:57:00 AM (3 years ago)
Author:
alec
Message:
  • small improvements
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/roundcubemail/installer/test.php

    r3508 r3667  
    120120?> 
    121121 
    122 <h3>Check configured database settings</h3> 
     122<h3>Check DB config</h3> 
    123123<?php 
    124124 
     
    212212?> 
    213213 
    214 <h3>Test SMTP settings</h3> 
     214<h3>Test SMTP config</h3> 
    215215 
    216216<p> 
     
    245245<?php 
    246246 
    247 if (isset($_POST['sendmail']) && !empty($_POST['_from']) && !empty($_POST['_to'])) { 
    248    
     247if (isset($_POST['sendmail'])) { 
     248 
    249249  echo '<p>Trying to send email...<br />'; 
    250    
     250 
    251251  if (preg_match('/^' . $RCI->email_pattern . '$/i', trim($_POST['_from'])) && 
    252252      preg_match('/^' . $RCI->email_pattern . '$/i', trim($_POST['_to']))) { 
     
    327327 
    328328 
    329 <h3>Test IMAP configuration</h3> 
     329<h3>Test IMAP config</h3> 
    330330 
    331331<?php 
Note: See TracChangeset for help on using the changeset viewer.