1<?php 2// (c) Copyright by authors of the Tiki Wiki CMS Groupware Project 3// 4// All Rights Reserved. See copyright.txt for details and a complete list of authors. 5// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details. 6// $Id$ 7 8if (basename($_SERVER['SCRIPT_NAME']) === basename(__FILE__)) { 9 die('This script may only be included.'); 10} 11 12if ($prefs['mailin_autocheck'] == 'y') { 13 if ((time() - $prefs['mailin_autocheckLast']) / 60 > $prefs['mailin_autocheckFreq']) { 14 $tikilib->set_preference('mailin_autocheckLast', time()); 15 include_once('tiki-mailin-code.php'); 16 } 17} 18