keep all letters // [:alnum:] -> keep all letters and numbers define("REGEXP_OPTION","[:alpha:]"); //send a md5 checksum file with all email attachments define("SEND_MD5_CHECKSUM","1"); //encoding of your database. you probably don't need to change this //if changed, make sure you use the value iconv (http://www.php.net/iconv) //recognizes for your encoding, not the encoding name postgresql uses define("DBENCODING","ISO-8859-1"); //set this if nobody can delete objects except adminstrators //define("RESTRICTED_DELETE","1"); //site theme define("SITE_THEME","default"); /****************************************************************** these are only needed it you are running two installs on one server under the same domain name. If you set these, you HAVE to access DocMGR using this url, instead of by an ip address or WINS addres. ******************************************************************/ //domain of your server //define("SITE_DOMAIN","docserver.woodlake.eastwestp.com"); //url path to your server (not filesystem path) //define("SITE_COOKIE_PATH","/doc"); /************************************************************************* uncomment the following to disable docmgr support for them *************************************************************************/ //remove support for background indexing //define("DISABLE_BACKINDEX","1"); //remove support for ajax browsing if you don't like it //define("DISABLE_AJAX","1"); //set this if you want to hide the side category mod to speed up page loading times //define("DISABLE_CAT_MOD","1"); //Disable encapsulated pdf support. This is no longer disabled by default //because indexing is done in the background //define("DISABLE_ENCAP_OCR","1"); //OCR support //define("DISABLE_OCR","1"); //pdf support //define("DISABLE_PDF","1"); //thumbnail support //define("DISABLE_THUMB","1"); //email support //define("DISABLE_EMAIL","1"); //clamav support //define("DISABLE_CLAMAV","1"); /************************************************************************* Security Options *************************************************************************/ //login banner. Displayed on the login page /* define("WARNING_BANNER","*---------------- NOTICE - PROPRIETARY SYSTEM --------------*
This system is intended to be used solely by authorized
users for legitimate corporate business. Users are
monitored to the extent necessary to properly administer
the system and to investigate unauthorized access or use.
By accessing this system, you are consenting to this
monitoring. Unauthorized use is subject to prosecution.
*---------------- NOTICE - PROPRIETARY SYSTEM --------------* "); */ //Enable account lockout feature - affects all users but administrators define("ENABLE_ACCOUNT_LOCKOUT",1); // Number of minutes to lock out the account, 0 = forever define("ACCOUNT_LOCKOUT_TIME",5); // Number of attempts before an account is locked define("ACCOUNT_LOCKOUT_ATTEMPTS",5); // Number of minutes before a session is timed out //define("SESSION_TIMEOUT",20); // Select whether cookies should only be sent over secure connections //define("SECURE_COOKIES",1); // Require that emails containing attachments only be sent to users // of the system who have associated email addresses, otherwise, use // anonymous access to send emails //define("REQUIRE_SYSTEM_EMAIL","1"); //characters we disallow in a filename. Anything set it here //will prevent a file from being uploaded if set define("DISALLOW_CHARS","\"/*"); /************************************************************************* Do not modify anything below this line *************************************************************************/ //required system defines define("APP_VERSION","0.55.3"); define("SITE_TITLE","DocMGR ".APP_VERSION); //do we process auths in this site define("PROCESS_AUTH","1"); //set error reporting to not show notices error_reporting(E_ALL ^ E_NOTICE); //reload modules every time for development //define("DEV_MODE","1"); //the debug level for outputting messages (0 - 5). //define("DEBUG","5"); define("KEYWORD1","Bill Number"); define("KEYWORD2","Invoice Number"); define("KEYWORD3","Customer Number"); define("KEYWORD4","Misc World"); define("KEYWORD5","Another Number"); define("KEYWORD6","Yet Another Number"); $exemptRequest = array(); $exemptRequest[] = "editorContent";