Force e-mail retry

If that's the case, what's with all the 'retry' under the 'path' column? Just trying to understand what I should tell them
 
Run "exim -bp" and see if it's in the list waiting for retry. If it is, force a queue run. Here's what I do:

Code:
for i in $(exim -bp | awk '{print $3}'); do exim -M $i; done
 
I'm getting from a Linux / shell expert so I need full instructions.

Run as admin or root?
Where do I run that (ssh shell?)
Directly from prompt regardless of the directory I'm in...?
 
I'm getting from a Linux / shell expert so I need full instructions.

Run as admin or root?
Where do I run that (ssh shell?)
Directly from prompt regardless of the directory I'm in...?

Run as root over SSH, current directory not relevant.
 
Back
Top