boka3/config.php.example
Erik Thuning ddaa1c6663 Broke the Cron class into its own include file, and made some addresses configurable.
Introduced a configuration variable to use for future implementation of discard notifications.
2019-10-24 09:57:47 +02:00

22 lines
509 B
Plaintext

<?php
# Database info
$db_host = 'dbserver';
$db_user = 'dbname';
$db_pass = 'dbpassword';
$db_name = 'dbuser';
# Address to use as the sender for reminder emails
$reminder_sender = 'noreply@example.com';
# Address to send cron error messages to
$error_address = 'root@example.com';
# Discard notifications
# If this is set to an email address, the system will send a notification
# there each time a product is discarded.
#$notify_discard = 'inventory-tracking@example.com';
$discard_notify = false;
?>