(2003-2009) * @author Froxlor team (2010-) * @license GPLv2 http://files.froxlor.org/misc/COPYING.txt * @package Functions * */ /** * Function which returns a correct destination for Postfix Virtual Table * * @param string The destinations * @return string the corrected destinations * @author Florian Lippert */ function makeCorrectDestination($destination) { $search = '/ +/'; $replace = ' '; $destination = preg_replace($search, $replace, $destination); if(substr($destination, 0, 1) == ' ') { $destination = substr($destination, 1); } if(substr($destination, -1, 1) == ' ') { $destination = substr($destination, 0, strlen($destination) - 1); } return $destination; }