mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-02 04:39:28 +00:00
2ef386c34e
- Removed not used constants for messaging from config/constants.php - Renamed config entry assistent_function to ou_receivers and converted from string to array - Moved controllers/MailJob.php to controllers/jobs/MailJob.php - Controller MailJob now extends CLI_Controller - Added new function parseText to helpers/hlp_common_helper.php - Improved code function generateToken in helpers/hlp_common_helper.php - helpers/hlp_sancho_helper.php now uses parseText function from hlp_common_helper - Removed method parseVorlagetext from PhrasesLib.php - PhrasesLib.php now uses parseText function from hlp_common_helper - Removed method parseVorlagetext from VorlageLib - Improved code of controller controllers/system/Messages.php (uses parseText too) - Controller controllers/system/Vorlage.php now uses parseText
20 lines
924 B
PHP
20 lines
924 B
PHP
<?php
|
|
|
|
if (! defined('BASEPATH')) exit('No direct script access allowed');
|
|
|
|
// ONLY FOR DEBUGGING - If you are unsure, don't change it. If the message should be sent immediately. Default false
|
|
$config['send_immediately'] = false;
|
|
|
|
$config['msg_delivery'] = true; // Default true
|
|
$config['system_person_id'] = 1; // Dummy sender, used for sending messages from the system
|
|
$config['redirect_view_message_url'] = '/Redirect/redirectByToken/';
|
|
$config['message_html_view_url'] = '/ViewMessage/toHTML/';
|
|
|
|
// Change this to CIS Server (https://cis.example.com/index.ci.php) if you are sending Messages from Vilesci
|
|
$config['message_server'] = site_url();
|
|
$config['ou_receivers'] = array('ass');
|
|
|
|
$config['message_redirect_url'] = array();
|
|
$config['message_redirect_url']['fallback'] = site_url('ViewMessage/writeReply');
|
|
// $config['message_redirect_url']['OE_ROOT'] = 'https://SERVER-NAME/addons/aufnahme/OE_ROOT/cis/index.php';
|