fixing wrong variable name in autoresponder, fixes #115

This commit is contained in:
Michael Kaufmann (d00p)
2010-04-06 19:28:39 +00:00
parent 6a0fcc1fd9
commit fb4ade70d2

View File

@@ -80,7 +80,7 @@ if($db->num_rows($result) > 0)
$path = $row['homedir'] . $row['maildir'] . "new/";
if(!is_dir($paht) || !is_readable($path))
if(!is_dir($path) || !is_readable($path))
{
$cronlog->logAction(CRON_ACTION, LOG_WARNING, "Error accessing maildir: " . $path);
continue;