On Wed, Jul 22, 2015 at 05:31:56AM -0700, Seth wrote:
> [...]
> You might try adding this line an the end of smtpd.conf
> 
> accept for any relay
> [...]

Please don't. This will allow people from the outside to send mail to
other people not on your machine using your server as a relay. This is
most certainly not what you want. Use something like

        accept from local for any relay

or

        listen on em0 \
                tls pki "mail" auth \
                tag AUTH
        accept tagged AUTH for any relay

instead. This will require senders to either come from the local machine
or be authenticated before sending.

-- 
        Gregor Best

Reply via email to