diff --git a/public/ispmail.sh b/public/ispmail.sh index 5a4d19c..814fe47 100755 --- a/public/ispmail.sh +++ b/public/ispmail.sh @@ -5,11 +5,8 @@ # # License: Creative Commons BY-NC-SA license # -# Version 0.1 / 2025-12-14 -# First release. -# -# Version 0.2 / 2025-12-28 -# Enable plugins (managesieve, password) in Roundcube +# Version 0.1 +# 2025-12-14 # usage() { @@ -437,13 +434,6 @@ EOF sed -i "s|^\s*\$config\['imap_host'\]\s*=.*|\$config['imap_host'] = 'tls://$FQDN:143';|" /etc/roundcube/config.inc.php sed -i "s|^\s*\$config\['smtp_host'\]\s*=.*|\$config['smtp_host'] = 'tls://$FQDN:587';|" /etc/roundcube/config.inc.php - # Enable plugins - sed -i "/\$config\['plugins'\] = \[/,/\];/c\\ - \$config['plugins'] = [\\ - 'managesieve',\\ - 'password',\\ - ];" /etc/roundcube/config.inc.php - # Check if web interface is loading curl -s https://$FQDN | grep title | grep -q "Roundcube Webmail" if [[ $? -ne 0 ]]; then diff --git a/src/content/docs/ispmail-trixie/310-prevent-spoofing-dkim.mdx b/src/content/docs/ispmail-trixie/310-prevent-spoofing-dkim.mdx index eba69be..4fabc91 100644 --- a/src/content/docs/ispmail-trixie/310-prevent-spoofing-dkim.mdx +++ b/src/content/docs/ispmail-trixie/310-prevent-spoofing-dkim.mdx @@ -299,7 +299,7 @@ that file for your own domain and selector: ```sh title="Run this on your server" # Add the mapping of domain/selector (use your own domain here) -echo example.org 2025100901 > /etc/rspamd/dkim_selectors.map +echo example.org 20251000901 > /etc/rspamd/dkim_selectors.map ``` That’s all. rspamd now knows that whenever it sees an outgoing email from `anyone@example.org` it will get the DKIM diff --git a/src/content/docs/ispmail-trixie/330-quotas.mdx b/src/content/docs/ispmail-trixie/330-quotas.mdx index cb60f22..1de792f 100644 --- a/src/content/docs/ispmail-trixie/330-quotas.mdx +++ b/src/content/docs/ispmail-trixie/330-quotas.mdx @@ -8,6 +8,315 @@ sidebar: import { Aside } from "@astrojs/starlight/components"; -