Re: [exim] Can't close open relay.

Startseite
Nachricht löschen
Nachricht beantworten
Autor: Drav Sloan
Datum:  
To: Renaud Allard
CC: exim users, W B Hacker
Betreff: Re: [exim] Can't close open relay.
Renaud Allard wrote:
> On a side note, there is no killall command on OpenBSD, if you wish an
> equivalent, you will have to install zap from ports or packages.


or:

ps -ax | grep exim-4 | awk '{print $1}' | xargs kill -15

you can also get rid of the 'no such process' error with either
a 2> /dev/null or put a grep -v grep after the initial grep.

:)

D.