]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
maildaemon.php uses commandline.inc
authorEvan Prodromou <evan@controlyourself.ca>
Tue, 23 Jun 2009 00:02:40 +0000 (17:02 -0700)
committerEvan Prodromou <evan@controlyourself.ca>
Tue, 23 Jun 2009 00:02:40 +0000 (17:02 -0700)
scripts/maildaemon.php

index dc3ab0b56e746d605c27db3d56fbf188ca184e4a..cfb11a36fc11e113c9b1f983f744fd21d954d249 100755 (executable)
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
-# Abort if called from a web server
-if (isset($_SERVER) && array_key_exists('REQUEST_METHOD', $_SERVER)) {
-    print "This script must be run from the command line\n";
-    exit();
-}
-
 define('INSTALLDIR', realpath(dirname(__FILE__) . '/..'));
-define('LACONICA', true);
 
-// Preset the server at the command line
+$helptext = <<<END_OF_HELP
+Script for converting mail messages into notices. Takes message body
+as STDIN.
+
+END_OF_HELP;
 
-$server = ($argc > 1) ? $argv[1] : null;
-$path   = ($argc > 2) ? $argv[2] : null;
+require_once INSTALLDIR.'/scripts/commandline.inc';
 
-require_once(INSTALLDIR . '/lib/common.php');
 require_once(INSTALLDIR . '/lib/mail.php');
 require_once('Mail/mimeDecode.php');