Jeferson Pessoa Santana wrote:
> Hi guys,
> 
> A few hours ago I started my spamassassin with this command line:
> 
> /usr/bin/spamd -i -d -u nobody --allowed-ips=200.X.X.X,127.0.0.1
> 
> And then, for some reason that I don't know yet, wi th the "ps ax"
> command, I received this 
> 
> /usr/bin/spamd -d -u nobody

Well...
-i requires an argument, which you don't supply.  So -i is ignored.

--allowed-ips takes IP addresses, but not in the format you specify.  spamd 
doesn't understand 200.X.X.X, so --allowed-ips is ignored.

Try

/usr/bin/spamd -d -u nobody --allowed-ips=200.0.0.0/8,127.0.0.1
or
/usr/bin/spamd -i -d -u nobody --allowed-ips=200.,127.0.0.1

-- 
Matthew.van.Eerde (at) hbinc.com               805.964.4554 x902
Hispanic Business Inc./HireDiversity.com       Software Engineer

Reply via email to