I tell Inbound a number and outbound the same with a minus
if i click i get permission denied
			
			
									
						
										
						Queue display error in latest version
- shawniverson
 - Posts: 3783
 - Joined: 13 Jan 2014 23:30
 - Location: Indianapolis, Indiana USA
 - Contact:
 
Re: Queue display error in latest version
/var/spool/mqueue ?
That should even be used.
 
I will go in there and see what is lingering in there...
			
			
									
						
										
						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
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
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);
			
			
									
						
										
						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);