Search found 11 matches

by kommunen
16 Dec 2019 14:58
Forum: 4.x Bugs
Topic: https://efa4/mailscanner/grey.php
Replies: 2
Views: 10700

Re: https://efa4/mailscanner/grey.php

It seems to be caused by the default "greymethod = smart" in /etc/sqlgrey/sqlgrey.conf. "smart" greylists by class C network if there is a reverse lookup for the IP address. Try setting "greymethod = full" and do a "systemctl restart sqlgrey" and see if all di...
by kommunen
03 Dec 2019 07:19
Forum: 4.x Bugs
Topic: Install Script - dbus.exceptions.DBusException: org.freedesktop.DBus.Error.NoReply: Message recipient disconnected from
Replies: 3
Views: 5922

Re: Install Script - dbus.exceptions.DBusException: org.freedesktop.DBus.Error.NoReply: Message recipient disconnected f

The problem seems to be in certain versions of CentOS/RHEL7.
Here's a Bugzilla report about the same problem https://bugzilla.redhat.com/show_bug.cgi?id=1575845

The quick fix appears to be

Code: Select all

systemctl restart dbus
systemctl restart firewalld
by kommunen
11 Nov 2019 15:56
Forum: 4.x Bugs
Topic: SSL uses self signed instead of Lets encrypt
Replies: 4
Views: 3504

Re: SSL uses self signed instead of Lets encrypt

Not unless you re-run the setup script.
by kommunen
08 Nov 2019 14:22
Forum: 4.x Bugs
Topic: EFA4.0 rc3 updates
Replies: 12
Views: 9701

Re: EFA4.0 rc3 updates

The question was how to migrate from eFa4 rc3 to final. That's not mentioned in the eFa3 -> eFa4 page. That said, the build.bash we currently get from https://install.efa-project.org still refers to the testing repo (https://dl.efa-project.org/rpm/eFa4/testing/x86_64). That's either an oversight or ...
by kommunen
07 Nov 2019 12:25
Forum: 4.x Bugs
Topic: Unable to block old doc files
Replies: 4
Views: 3109

Re: Unable to block old doc files

Make sure the rule blocks are separated by tabs and not spaces.
Your rule should be

Code: Select all

deny<tab>\.doc$<tab>Old .doc file<tab>- 
That worked for me, at lease.
by kommunen
07 Nov 2019 10:53
Forum: 4.x Bugs
Topic: Unable to block old doc files
Replies: 4
Views: 3109

Re: Unable to block old doc files

The systemd service is called mailscanner.service

So you have to run 'service mailscanner restart' or the more properly correct 'systemctl restart mailscanner'
by kommunen
06 Nov 2019 07:56
Forum: 4.x Bugs
Topic: SSL uses self signed instead of Lets encrypt
Replies: 4
Views: 3504

Re: SSL uses self signed instead of Lets encrypt

That mx99.domain.nl certificate was automatically created when you installed EFA.

Its location is defined in /etc/postfix/main.cf . Look for smtpd_tls
by kommunen
05 Feb 2015 10:31
Forum: How-to
Topic: SSL3 Volunerbility
Replies: 12
Views: 8613

Re: SSL3 Volunerbility

See https://disablessl3.com/#postfix

Code: Select all

smtpd_tls_mandatory_protocols=!SSLv2,!SSLv3
smtp_tls_mandatory_protocols=!SSLv2,!SSLv3
smtpd_tls_protocols=!SSLv2,!SSLv3
smtp_tls_protocols=!SSLv2,!SSLv3

- Peder
by kommunen
05 Feb 2015 09:20
Forum: 3.x Bugs
Topic: Out of memory
Replies: 7
Views: 5405

Re: Out of memory

It shouldn't be gone. I've rebooted my server several times and it's still there. Are you sure it's just that it isn't active, i.e. you forgot to add the 'swapon /var/SWAPFILE.swp' command to /etc/rc.local ? What does a 'ls -la /var/SWAPFILE.swp' show? If it really isn't there it might be that some ...
by kommunen
04 Feb 2015 11:03
Forum: 3.x Bugs
Topic: Out of memory
Replies: 7
Views: 5405

Re: Out of memory

Depending on the root cause of your OOM problem it might not help but I suggest adding a swap file to your system. For some reason EFA doesn't set up any swap during install so it has to be done manually. dd if=/dev/zero of=/var/SWAPFILE.swp bs=100M count=20 mkswap /var/SWAPFILE.swp swapon /var/SWAP...
by kommunen
28 Apr 2014 14:44
Forum: 3.x Bugs
Topic: Installer suggestion
Replies: 3
Views: 4377

Installer suggestion

When I tried to configure EFA-3.0.0.1 for the first time I ran into a problem with the installer hanging when it was running freshclam to update the virus database. The problem turned out to be that dnsmasq hadn't started so freshclam couldn't resolve the address. Therefore I suggest EFA-Init be pat...