Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Sympl
Sympl
Commits
d16cd60e
Commit
d16cd60e
authored
Apr 08, 2021
by
Paul Cammish
Browse files
Fixes
#310
parent
f0f81e26
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
CHANGELOG
View file @
d16cd60e
CHANGELOG
---------
2021-04-08
sympl-mail
* Fix tag option not working correctly for antispam and antivirus configs
2020-09-23
sympl-core
* Properly filter public/cgi-bin
...
...
mail/debian/changelog
View file @
d16cd60e
sympl-mail (10.20210408.0) stable; urgency=medium
* Fixed readable check for antispam and antivirus configs
-- Paul Cammish <sympl@kelduum.net> Thu, 08 Apr 2021 15:18:19 +0100
sympl-mail (10.0.200418.0) stable; urgency=medium
* Fixed sympl-mail-dovecot-sni issue with filesystem loops (#281)
...
...
mail/exim4/sympl.d/10-acl/50-acl-check-rcpt/80-enable-antispam-check
View file @
d16cd60e
...
...
@@ -19,11 +19,11 @@
}}\
}
# Reuse acl_m0 since we don't need it any more. If it
contains tag,
# then the message will be accepted
,
and tagged, else
we reject the
# mail.
# Reuse acl_m0 since we don't need it any more. If it
is readable and
#
starts with 'tag',
then the message will be accepted and tagged, else
#
we reject the
mail.
set acl_m0 = ${if match{${extract{smode}{${stat:VHOST_DIR/${domain}/VHOST_CONFIG_DIR/antispam}}}}{\Nr
..$
\N}{\
set acl_m0 = ${if match{${extract{smode}{${stat:VHOST_DIR/${domain}/VHOST_CONFIG_DIR/antispam}}}}{\Nr\N}{\
${if match{${readfile{VHOST_DIR/${domain}/VHOST_CONFIG_DIR/antispam}}}{^tag}{tag}{reject}}\
}{reject}}
mail/exim4/sympl.d/10-acl/50-acl-check-rcpt/85-enable-antivirus-check
View file @
d16cd60e
...
...
@@ -5,7 +5,7 @@
{!eq{$acl_m2}{tag}} \
}}
set acl_m2 = ${if match{${extract{smode}{${stat:VHOST_DIR/${domain}/VHOST_CONFIG_DIR/antivirus}}}}{\Nr
..$
\N}{\
set acl_m2 = ${if match{${extract{smode}{${stat:VHOST_DIR/${domain}/VHOST_CONFIG_DIR/antivirus}}}}{\Nr\N}{\
${if match{${readfile{VHOST_DIR/${domain}/VHOST_CONFIG_DIR/antivirus}}}{^tag}{tag}{reject}}\
}{reject}}
Paul Cammish
@kelduum
mentioned in commit
96e17a88
·
Apr 08, 2021
mentioned in commit
96e17a88
mentioned in commit 96e17a882fbbac1c3d3123b802f944fbb5562c80
Toggle commit list
Paul Cammish
@kelduum
mentioned in merge request
!216 (closed)
·
Apr 08, 2021
mentioned in merge request
!216 (closed)
mentioned in merge request !216
Toggle commit list
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment