Page 1 of 1

openEMM of Debian 8.0 whit Plesk

Posted: Mon Sep 05, 2016 8:58 am
by dema80
Hello

ICh the OpenEMM 2015 wants to install my root server with Debian 8.0 and Plesk

Where can I find step by step instructions.

because the link no longer works
http://www.openemm.org/wiki/Installatio ... uideDebian

can someone help me

Re: openEMM of Debian 8.0 whit Plesk

Posted: Fri Nov 04, 2016 11:39 am
by vjrj
I installed openemm 2015 R3 in debian 8.0 jessie + postfix using the manual.

See my post on libmilter link for a missing library:
http://openemm.agnitas.de/installation- ... c3120.html

Another workaround that should be documented: /home/openemm/bin/scripts/slrtscn.py failed to start because a missing python dependency, so looking to the imports in every python script I also I installed python-gdbm and python-dns, so slrtscn and bounces detection seems to work:

Code: Select all

apt-get install python-gdbm python-dns
As postfix runs chrooted in debian by default I have disabled (temporally) so now postfix can reach /home/openemm/var/run/bav.sock . I'm trying to find a better way to reach bav.sock without disabling the postfix chroot.

By two cents

Re: openEMM of Debian 8.0 whit Plesk

Posted: Fri Nov 04, 2016 5:38 pm
by vjrj
I finally enabled again the postfix chroot

Code: Select all

adduser postfix openemm
mkdir /var/spool/postfix/openemm
chown openemm:openemm /var/spool/postfix/openemm/
mount --bind /home/openemm/var/run/ /var/spool/postfix/openemm
and in /etc/postfix/main.cf:

Code: Select all

smtpd_milters = local:/openemm/bav.sock local:/opendkim/opendkim.sock
#smtpd_milters = local:/home/openemm/var/run/bav.sock local:/var/spool/postfix/opendkim/opendkim.sock
My previous configuration (disabling chroot) is commented.

More info:
http://www.linuxtopia.org/online_books/ ... E_003.html