Skip to content

Commit

Permalink
Disable "Mail click tracker" config by default
Browse files Browse the repository at this point in the history
remp/remp#1102
  • Loading branch information
markoph committed Jun 2, 2023
1 parent fab11b2 commit efb5af6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
- Fixed mail click tracker to not modify URL in any way other than adding required query parameter. remp/remp#1270
- Changed `url` column type in `mail_template_links` table from `string` to `text` to support longer URLs. remp/remp#1270
- Added Makefile target `make install` to run all commands required after new code is pulled.
- Fixed "Mail click tracker" config. The default setting is now "disabled". remp/remp#1102

## Archive

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
$output->writeln('Required configuration: ');
$configValues = [
['default_mailer', 'Default Mailer', SmtpMailer::ALIAS, '', 'string'],
[RtmClickReplace::CONFIG_NAME, 'Mail click tracker', true, '', 'boolean'],
[RtmClickReplace::CONFIG_NAME, 'Mail click tracker', false, '', 'boolean'],
];
foreach ($configValues as $configValue) {
$config = $this->configsRepository->findBy('name', $configValue['0']);
Expand Down

0 comments on commit efb5af6

Please sign in to comment.