22 lines
755 B
PHP
22 lines
755 B
PHP
<?php
|
|
/*--------------------------------------------------------+
|
|
| SYSTOPIA CiviProxy |
|
|
| a simple proxy solution for external access to CiviCRM |
|
|
| Copyright (C) 2015 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_mail_base) civiproxy_http_error("Feature disabled", 405);
|
|
|
|
// basic check
|
|
civiproxy_security_check('mail-subscribe');
|
|
|
|
// just forward, no parameters
|
|
civiproxy_redirect($target_mail_base . '/subscribe', array());
|
|
|