Re: smtpd outgoing mail configuration

2024-05-18 Thread Ampie Niemand

On Fri, May 17, 2024 at 08:12:27AM +0200, fr...@lilo.org wrote:

How to forward outgoing mail to a remote SMTP server with smtpd?

I found this page, but it's out of date I think.
https://romanzolotarev.com/openbsd/smtpd-forward.html

Tks
Pascal



I have mine setup like this and its working.

My /etc/mail/smtpd.conf:  
 
--- start file ---
#   $OpenBSD: smtpd.conf,v 1.14 2019/11/26 20:14:38 gilles Exp $  
 
# This is the smtpd server system-wide configuration file.
# See smtpd.conf(5) for more information. 
 
table aliases file:/etc/mail/aliases  
 
listen on socket  
 
# To accept external mail, replace with: listen on all
listen on all 
 
action "local_mail" mbox alias   
action "outbound" relay host smtp://"   
 
# Uncomment the following to accept external mail for domain match from 
# any   
for domain "" action "local_mail"
match from local for local action "local_mail"
match from local for any action "outbound"
 
--- End file ---  
 
# doas rcctl enable smtpd 
# doas 

Re: smtpd outgoing mail configuration

2024-05-17 Thread Janne Johansson
Den fre 17 maj 2024 kl 08:56 skrev Pascal Deveaux :
>
> The command
> # chown root:_smtpd /etc/mail/secrets
> Return : group smtpd doesn't exist

The error message doesn't match the command at all, and the _smtpd
group has been in the group file for some 15 years.
Look for misspellings somewhere. Or a broken /etc/group file that
somehow lacks the _smtpd group.

-- 
May the most significant bit of your life be positive.



Re: smtpd outgoing mail configuration

2024-05-17 Thread Pascal Deveaux
The command
# chown root:_smtpd /etc/mail/secrets
Return : group smtpd doesn't exist

17 mai 2024 10:32:19 Otto Moerbeek :

> On Fri, May 17, 2024 at 08:12:27AM +0200, fr...@lilo.org wrote:
> 
>> How to forward outgoing mail to a remote SMTP server with smtpd?
>> 
>> I found this page, but it's out of date I think.
>> https://romanzolotarev.com/openbsd/smtpd-forward.html
>> 
>> Tks
>> Pascal
> 
> man smtpd.conf, first exmaple
> 
>     -Otto

-- 
Pascal




Re: smtpd outgoing mail configuration

2024-05-17 Thread James Watt



On 17/05/24 11:42, fr...@lilo.org wrote:

How to forward outgoing mail to a remote SMTP server with smtpd?

I found this page, but it's out of date I think.
https://romanzolotarev.com/openbsd/smtpd-forward.html

Tks
Pascal





The config looks fine,

use:  man smtpd.conf


-James



Re: smtpd outgoing mail configuration

2024-05-17 Thread Otto Moerbeek
On Fri, May 17, 2024 at 08:12:27AM +0200, fr...@lilo.org wrote:

> How to forward outgoing mail to a remote SMTP server with smtpd?
> 
> I found this page, but it's out of date I think.
> https://romanzolotarev.com/openbsd/smtpd-forward.html
> 
> Tks
> Pascal

man smtpd.conf, first exmaple

-Otto



smtpd outgoing mail configuration

2024-05-17 Thread fr5dh
How to forward outgoing mail to a remote SMTP server with smtpd?

I found this page, but it's out of date I think.
https://romanzolotarev.com/openbsd/smtpd-forward.html

Tks
Pascal