Page 1 of 1
Queue display error in latest version
Posted: 14 Sep 2016 16:30
by nicola.piazzi
I tell Inbound a number and outbound the same with a minus
if i click i get permission denied

- Cattura.PNG (40.62 KiB) Viewed 3646 times
Re: Queue display error in latest version
Posted: 14 Sep 2016 21:03
by shawniverson
/var/spool/mqueue ?
That should even be used.
I will go in there and see what is lingering in there...
Re: Queue display error in latest version
Posted: 15 Sep 2016 07:08
by nicola.piazzi
It seems to be a permission problem

Mailscanner runs with postfix user as other efa installation that works
SOLVED
Posted: 16 Sep 2016 08:34
by nicola.piazzi
To install OPENDKIM also SENDMAIL is installed
THen i stopped sendmail service
But noq the command mailq that is used by mailwatch refers to sendmail queue and not postfix one
To solve i substituted mailq command with postqueue -p in postfix.inc.php (two occorrences)
vi /var/www/html/mailscanner/postfix.inc.php
## $last_line = exec('mailq', $output);
$last_line = exec('postqueue -p', $output);