Debian 12 & keyhelp [SOLVED]
Re: Debian 12 & keyhelp
Oder doch lieber noch 11?
Tobi
-----------------------------
wewoco.de
Das Forum für Reseller, Digital-Agenturen, Bildschirmarbeiter und Mäuseschubser
Re: Debian 12 & keyhelp
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.
Alexander Mahr
**************************************************************
Keyweb AG - Die Hosting Marke
Neuwerkstr. 45/46, 99084 Erfurt / Germany
http://www.keyweb.de - http://www.keyhelp.de
**************************************************************
Re: Debian 12 & keyhelp
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?
Tobi
-----------------------------
wewoco.de
Das Forum für Reseller, Digital-Agenturen, Bildschirmarbeiter und Mäuseschubser
Re: Debian 12 & keyhelp
THX
Tobi
-----------------------------
wewoco.de
Das Forum für Reseller, Digital-Agenturen, Bildschirmarbeiter und Mäuseschubser
Re: Debian 12 & keyhelp
Have a nice weekend!
Tobi
-----------------------------
wewoco.de
Das Forum für Reseller, Digital-Agenturen, Bildschirmarbeiter und Mäuseschubser
Re: Debian 12 & keyhelp
Re: Debian 12 & keyhelp
Alexander Mahr
**************************************************************
Keyweb AG - Die Hosting Marke
Neuwerkstr. 45/46, 99084 Erfurt / Germany
http://www.keyweb.de - http://www.keyhelp.de
**************************************************************
Re: Debian 12 & keyhelp
Re: Debian 12 & keyhelp
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
Alexander Mahr
**************************************************************
Keyweb AG - Die Hosting Marke
Neuwerkstr. 45/46, 99084 Erfurt / Germany
http://www.keyweb.de - http://www.keyhelp.de
**************************************************************
Re: Debian 12 & keyhelp
-
- Posts: 3
- Joined: Sat 13. Feb 2021, 06:20
Re: Debian 12 & keyhelp
Tnx
Re: Debian 12 & keyhelp
override.d/ would be the appropriate directory.
Alexander Mahr
**************************************************************
Keyweb AG - Die Hosting Marke
Neuwerkstr. 45/46, 99084 Erfurt / Germany
http://www.keyweb.de - http://www.keyhelp.de
**************************************************************
Re: Debian 12 & keyhelp
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";
}
Code: Select all
WHITELIST_SENDER_DOMAIN {
type = "from";
filter = "email:domain";
map = "$LOCAL_CONFDIR/local.d/domain_wl.map.inc";
score = -15.0
}