Page 2 of 3
Re: Debian 12 & keyhelp
Posted: Fri 29. Sep 2023, 12:19
by Tobi
Kann ich heute und am Wochenende ganz normal Debian 12 als Grundlage nehmen?
Oder doch lieber noch 11?
Re: Debian 12 & keyhelp
Posted: Fri 29. Sep 2023, 12:22
by Alexander
Can you explain what you mean with 'Grundlage'?
I will turn off the update of 23.2 today at around 16:00 o'clock until next Wednesday, when i activate it again.
So you wont be able to install Debian 12 with KeyHelp until Wednesday.
Re: Debian 12 & keyhelp
Posted: Fri 29. Sep 2023, 12:26
by Tobi
Sorry!
i forgot we are in the english section.
I prefer Debian over Ubuntu and i have to install two servers this weekend.
I dont care if i use Debian11 or 12.
i just wanted to avoid any trouble while installing.
So what is the preferred Debian Version regarding the KeyHelp installer?
Re: Debian 12 & keyhelp
Posted: Fri 29. Sep 2023, 12:27
by Tobi
Alexander wrote: ↑Fri 29. Sep 2023, 12:22
Can you explain what you mean with 'Grundlage'?
I will turn off the update of 23.2 today at around 16:00 o'clock until next Wednesday, when i activate it again.
So you wont be able to install Debian 12 with KeyHelp until Wednesday.
THX
Re: Debian 12 & keyhelp
Posted: Fri 29. Sep 2023, 12:31
by Tobi

- linux auswahl.png (22.91 KiB) Viewed 11569 times
Thank you anyway for your quick answer.
Have a nice weekend!
Re: Debian 12 & keyhelp
Posted: Fri 29. Sep 2023, 12:51
by ADG1
Have a look here: System Status -> Rspamd Web Interface
Re: Debian 12 & keyhelp
Posted: Fri 29. Sep 2023, 12:55
by ADG1
Re: Debian 12 & keyhelp
Posted: Fri 29. Sep 2023, 13:03
by Alexander
Before I start guessing, can you send me the login data to your server, so I can have a look?
Re: Debian 12 & keyhelp
Posted: Fri 29. Sep 2023, 13:12
by ADG1
Hi, pn for you
Re: Debian 12 & keyhelp
Posted: Fri 29. Sep 2023, 13:39
by Alexander
Thanks for reporting. I have found the issue and fixed it on your server.
This is caused by a bug, when letting KeyHelp rewrite its /etc/apache2/keyhelp/keyhelp.conf file (e.g. via keyhelp-toolbox)
It will pick the wrong template for this configuration file.
I will create a proper forum post in a couple of minutes, a fix and update the release files.
EDIT: The post can be found here:
viewtopic.php?t=12687
Re: Debian 12 & keyhelp
Posted: Fri 29. Sep 2023, 13:48
by ADG1
Thank you
Re: Debian 12 & keyhelp
Posted: Sat 30. Sep 2023, 02:32
by jcolideles
Alexander wrote: ↑Fri 29. Sep 2023, 11:31
Have a look here: System Status -> Rspamd Web Interface
ahh that's where it is thank you. it's working.
Re: Debian 12 & keyhelp
Posted: Wed 4. Oct 2023, 11:20
by amarc
@Alexander what would be proper location to do own rspamd customisation ? I see in local.d/* it says "do not edit". override.d/* I guess ?
Tnx
Re: Debian 12 & keyhelp
Posted: Wed 4. Oct 2023, 11:29
by Alexander
Hello,
override.d/ would be the appropriate directory.
Re: Debian 12 & keyhelp
Posted: Fri 13. Oct 2023, 17:50
by amarc
Just had time to again test install and play some more with Debian 12 version.
Too bad you missed how extensible Rspamd is @Alexander . For example I see you completely removed "Spam filter Black/White list" under Settings>Configuration>Email server.
That could easily be done with
Multimap module but with nice UI to maintain this. I tend not to do anything via Rspamd Web interface, specially do not want to give clients to mess with it.
Example config could look like:
Code: Select all
BLACKLIST_SENDER_DOMAIN {
type = "from";
filter = "email:domain";
map = "$LOCAL_CONFDIR/local.d/domain_bl.map.inc";
action = "reject";
}
or similar for "whitelist" but not with action = "accept" but maybe just lowering score:
Code: Select all
WHITELIST_SENDER_DOMAIN {
type = "from";
filter = "email:domain";
map = "$LOCAL_CONFDIR/local.d/domain_wl.map.inc";
score = -15.0
}