From 1f46d5e5da438255eaf5f897a7c0f09d6479c9a2 Mon Sep 17 00:00:00 2001 From: "B. Endres" Date: Mon, 7 Sep 2020 09:32:57 +0200 Subject: [PATCH] [#44] added warning for CiviCRM < 5.27 --- proxy/config.dist.php | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/proxy/config.dist.php b/proxy/config.dist.php index 9572a03..631facd 100644 --- a/proxy/config.dist.php +++ b/proxy/config.dist.php @@ -33,11 +33,16 @@ $target_civicrm = 'https://your.civicrm.installation.org'; // default paths, override if you want. Set to NULL to disable $target_rest = $target_civicrm . '/sites/all/modules/civicrm/extern/rest.php'; -$target_url = $target_civicrm . '/civicrm/mailing/url'; -$target_open = $target_civicrm . '/civicrm/mailing/open'; $target_file = $target_civicrm . '/sites/default/files/civicrm/persist/'; $target_mosaico = NULL; // (disabled by default): $target_civicrm . '/civicrm/mosaico/img?src='; $target_mail_view = $target_civicrm . '/civicrm/mailing/view'; +$target_url = $target_civicrm . '/civicrm/mailing/url'; +$target_open = $target_civicrm . '/civicrm/mailing/open'; + +// CAUTION: use the following for CiviCRM < 5.27 +$target_url = $target_civicrm . '/sites/all/modules/civicrm/extern/url.php'; +$target_open = $target_civicrm . '/sites/all/modules/civicrm/extern/open.php'; + /**************************************************************** ** GENERAL OPTIONS **