[ "url" => "http://localhost/accounthub", "mobileapi" => "/mobile/index.php", "icon" => "/static/img/logo.svg", "title" => SITE_TITLE ], "binstack" => [ "url" => "http://localhost/inventory", "mobileapi" => "/mobile/index.php", "icon" => "/static/img/logo.svg", "title" => "BinStack" ], "taskfloor" => [ "url" => "http://localhost/taskfloor", "mobileapi" => "/mobile/index.php", "icon" => "/static/img/logo.svg", "title" => "TaskFloor", "station_features" => [ "taskfloor_viewtasks", "taskfloor_viewmessages" ] ], "qwikclock" => [ "url" => "http://localhost/qwikclock", "mobileapi" => "/mobile/index.php", "icon" => "/static/img/logo.svg", "title" => "QwikClock", "station_features" => [ "qwikclock_punchinout", "qwikclock_myshifts", "qwikclock_jobs" ] ], "managepanel" => [ "url" => "http://localhost/managepanel", "mobileapi" => "/mobile/index.php", "icon" => "/static/img/logo.svg", "title" => "ManagePanel" ] ]); // Email settings for receiving admin alerts. define("USE_SMTP", TRUE); // if FALSE, will use PHP's mail() instead define("ADMIN_EMAIL", ""); define("FROM_EMAIL", "alert-noreply@apps.biz.netsyms.com"); define("SMTP_HOST", ""); define("SMTP_AUTH", true); define("SMTP_PORT", 587); define("SMTP_SECURE", 'tls'); define("SMTP_USER", ""); define("SMTP_PASS", ""); define("SMTP_ALLOW_INVALID_CERTIFICATE", TRUE); // Minimum length for new passwords // The system checks new passwords against the 500 worst passwords and rejects // any matches. // If you want to have additional password requirements, go edit action.php. // However, all that does is encourage people to use the infamous // "post-it password manager". See also https://xkcd.com/936/ and // http://stackoverflow.com/a/34166252 for reasons why forcing passwords // like CaPs45$% is not actually a great idea. // Encourage users to use 2-factor auth whenever possible. define("MIN_PASSWORD_LENGTH", 8); // Maximum number of rows to get in a query. define("QUERY_LIMIT", 1000); define("FOOTER_TEXT", ""); define("COPYRIGHT_NAME", "Netsyms Technologies"); //////////////////////////////////////////////////////////////