committing changes in /etc after apt run

Package changes:
-libnss-systemd 247.3-7+deb11u2 amd64
+libnss-systemd 247.3-7+deb11u4 amd64
-libpam-systemd 247.3-7+deb11u2 amd64
+libpam-systemd 247.3-7+deb11u4 amd64
-libsystemd0 247.3-7+deb11u2 amd64
+libsystemd0 247.3-7+deb11u4 amd64
-libudev1 247.3-7+deb11u2 amd64
+libudev1 247.3-7+deb11u4 amd64
-linux-compiler-gcc-10-x86 5.10.179-2 amd64
-linux-headers-5.10.0-23-amd64 5.10.179-2 amd64
-linux-headers-5.10.0-23-common 5.10.179-2 all
-linux-headers-amd64 5.10.179-2 amd64
-linux-image-5.10.0-23-amd64 5.10.179-2 amd64
+linux-compiler-gcc-10-x86 5.10.179-3 amd64
+linux-headers-5.10.0-23-amd64 5.10.179-3 amd64
+linux-headers-5.10.0-23-common 5.10.179-3 all
+linux-headers-amd64 5.10.179-3 amd64
+linux-image-5.10.0-23-amd64 5.10.179-3 amd64
-linux-kbuild-5.10 5.10.179-2 amd64
-linux-libc-dev 5.10.179-2 amd64
+linux-kbuild-5.10 5.10.179-3 amd64
+linux-libc-dev 5.10.179-3 amd64
-rspamd 3.5-2~0c671194e~bullseye amd64
+rspamd 3.6-1~bbb8660e5~bullseye amd64
-systemd 247.3-7+deb11u2 amd64
-systemd-sysv 247.3-7+deb11u2 amd64
+systemd 247.3-7+deb11u4 amd64
+systemd-sysv 247.3-7+deb11u4 amd64
-udev 247.3-7+deb11u2 amd64
+udev 247.3-7+deb11u4 amd64
This commit is contained in:
2023-08-04 07:57:54 +02:00
committed by Gitea
parent efec72fd33
commit acb7e224a7
4 changed files with 42 additions and 0 deletions
+1
View File
@@ -3074,6 +3074,7 @@ maybe chmod 0644 'rspamd/cgp.inc'
maybe chmod 0644 'rspamd/common.conf'
maybe chmod 0644 'rspamd/composites.conf'
maybe chmod 0644 'rspamd/groups.conf'
maybe chmod 0644 'rspamd/lang_detection.inc'
maybe chmod 0755 'rspamd/local.d'
maybe chmod 0644 'rspamd/local.d/antivirus.conf'
maybe chmod 0644 'rspamd/local.d/arc.conf'
+28
View File
@@ -0,0 +1,28 @@
# Language detection configuration
# Please don't modify this file as your changes might be overwritten with
# the next update.
#
# You can modify 'local.d/lang_detection.inc' to add and merge
# parameters defined inside this section
#
# You can modify 'override.d/lang_detection.inc' to strictly override all
# parameters defined inside this section
# Path to the languages shared data
# languages = "${RSPAMD_SHAREDIR}/languages"
# Limit in words to treat text as short for language detection
# short_text_limit = 10
# Enable only specific languages
# languages_enable = ["en", "de"]
# Disable specific languages
# languages_disable = ["fr", "es"]
# Use the following fasttext model for language detection (if Fasttext support is compiled in)
# fasttext_model = "${RSPAMD_SHAREDIR}/languages/fasttext_model.ftz"
# Prefer fasttext over all other methods
# prefer_fasttext = true;
+7
View File
@@ -20,6 +20,7 @@ multimap {
symbol = "REDIRECTOR_URL";
description = "The presence of a redirector in the mail";
score = 0.0;
one_shot = true;
}
# Freemail Addresses
@@ -39,6 +40,7 @@ multimap {
symbol = "FREEMAIL_ENVRCPT";
description = "Envelope Recipient is a Freemail address";
score = 0.0;
one_shot = true;
}
freemail_from {
@@ -59,6 +61,7 @@ multimap {
symbol = "FREEMAIL_TO";
description = "To is a Freemail address";
score = 0.0;
one_shot = true;
}
freemail_cc {
@@ -69,6 +72,7 @@ multimap {
symbol = "FREEMAIL_CC";
description = "To is a Freemail address";
score = 0.0;
one_shot = true;
}
freemail_replyto {
@@ -98,6 +102,7 @@ multimap {
symbol = "DISPOSABLE_ENVRCPT";
description = "Envelope Recipient is a Disposable e-mail address";
score = 0.0;
one_shot = true;
}
disposable_from {
@@ -118,6 +123,7 @@ multimap {
symbol = "DISPOSABLE_TO";
description = "To a disposable e-mail address";
score = 0.0;
one_shot = true;
}
disposable_cc {
@@ -128,6 +134,7 @@ multimap {
symbol = "DISPOSABLE_CC";
description = "To a disposable e-mail address";
score = 0.0;
one_shot = true;
}
disposable_replyto {
+6
View File
@@ -24,6 +24,12 @@ options {
.include(try=true; priority=10) "$LOCAL_CONFDIR/override.d/options.inc"
}
lang_detection {
.include "$CONFDIR/lang_detection.inc"
.include(try=true; priority=1,duplicate=merge) "$LOCAL_CONFDIR/local.d/lang_detection.inc"
.include(try=true; priority=10) "$LOCAL_CONFDIR/override.d/lang_detection.inc"
}
.include(try=true; duplicate=merge) "$CONFDIR/cgp.inc"
.include(try=true; priority=1,duplicate=merge) "$LOCAL_CONFDIR/local.d/cgp.inc"