24 lines
813 B
PHP
24 lines
813 B
PHP
<?php
|
|
/*--------------------------------------------------------+
|
|
| SYSTOPIA CiviProxy |
|
|
| a simple proxy solution for external access to CiviCRM |
|
|
| Copyright (C) 2015-2021 SYSTOPIA |
|
|
| Author: B. Endres (endres -at- systopia.de) |
|
|
| http://www.systopia.de/ |
|
|
+---------------------------------------------------------*/
|
|
|
|
require_once "config.php";
|
|
require_once "proxy.php";
|
|
|
|
// see if mail open tracking is enabled
|
|
if (!$target_open) civiproxy_http_error("Feature disabled", 405);
|
|
|
|
// basic check
|
|
civiproxy_security_check('open');
|
|
|
|
// basic restraints
|
|
$valid_parameters = array( 'q' => 'int' );
|
|
|
|
$parameters = civiproxy_get_parameters($valid_parameters);
|
|
civiproxy_redirect($target_open, $parameters);
|