#!/usr/bin/perl -w # $Id$ # $Date$ # $Revision$ # $HeadURL$ # $Author$ # Land of Zoho Creator (LoZC) # http://landofzohocreator.com # Processes incoming email message from # standard input (i.e., via a pipe in # a dot forward file) BEGIN { push @INC, './perl5lib/lib'; } use strict; use ZCrIS; # Read configuration and process the current # message. ZCrIS->processIncomingMessage('./conf/zcris.custom'); exit;