1
0
mirror of https://github.com/Mailu/Mailu.git synced 2024-12-12 10:45:38 +02:00

Fix the logic

This commit is contained in:
Florent Daigniere 2022-11-24 11:22:43 +01:00
parent e43effab63
commit 32d44b96c3

View File

@ -1,14 +1,12 @@
# Malicious macros should be blocked
# see https://github.com/clr2of8/VBAstomp and https://github.com/decalage2/oletools/wiki/mraptor
python3 tests/email_test.py message-macro-stomp "tests/compose/filters/2003x32_word_msgbox_stomped_fakecode.doc"
if [ $? -eq 25 ]; then
exit 0
else
if [ $? -ne 25 ]; then
exit 1
fi
python3 tests/email_test.py message-autoexec-macro "tests/compose/filters/excel4_sample_macro.slk"
if [ $? -eq 25 ]; then
exit 0
else
if [ $? -ne 25 ]; then
exit 1
fi
exit 0