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

Página superior
Eliminar este mensaje
Responder a este mensaje
Autor: Drav Sloan
Fecha:  
A: Renaud Allard
Cc: exim users, W B Hacker
Asunto: 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.