Queue display error in latest version

Report bugs and workarounds
Post Reply
nicola.piazzi
Posts: 389
Joined: 23 Apr 2015 09:45

Queue display error in latest version

Post by nicola.piazzi »

I tell Inbound a number and outbound the same with a minus
if i click i get permission denied
Cattura.PNG
Cattura.PNG (40.62 KiB) Viewed 3643 times
User avatar
shawniverson
Posts: 3783
Joined: 13 Jan 2014 23:30
Location: Indianapolis, Indiana USA
Contact:

Re: Queue display error in latest version

Post by shawniverson »

/var/spool/mqueue ?

That should even be used. :?:

I will go in there and see what is lingering in there...
nicola.piazzi
Posts: 389
Joined: 23 Apr 2015 09:45

Re: Queue display error in latest version

Post by nicola.piazzi »

It seems to be a permission problem :-( Mailscanner runs with postfix user as other efa installation that works
nicola.piazzi
Posts: 389
Joined: 23 Apr 2015 09:45

SOLVED

Post 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);
Post Reply