IRCNow

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Last revision Both sides next revision
openbsd:mail:opensmtpd3 [2020/07/29 06:54]
jrmu
openbsd:mail:opensmtpd3 [2020/07/29 11:10]
jrmu
Line 1: Line 1:
-Here is how I set up my independent mail server.+Here is how I set up my independent mail server. ​It is based on the old (now deleted) [[https://​cvsweb.openbsd.org/​cgi-bin/​cvsweb/​~checkout~/​www/​opensmtpd/​faq/​Attic/​example1.html?​rev=1.14|OpenSMTPd FAQ]]. 
 + 
 +Make sure to install opensmtpd-extras:​ 
 + 
 +<​code>​ 
 +$ doas pkg_add opensmtpd-extras 
 +</​code>​
  
 In my /​etc/​mail/​smtpd.conf:​ In my /​etc/​mail/​smtpd.conf:​
Line 26: Line 32:
 listen on egress port 25 tls pki mail.ircnow.org mask-src filter { check_rdns check_fcrdns check_spammers } hostname ircnow.org listen on egress port 25 tls pki mail.ircnow.org mask-src filter { check_rdns check_fcrdns check_spammers } hostname ircnow.org
 listen on egress port 587 tls-require pki mail.ircnow.org auth <​passwd>​ mask-src filter { check_rdns check_fcrdns } hostname ircnow.org listen on egress port 587 tls-require pki mail.ircnow.org auth <​passwd>​ mask-src filter { check_rdns check_fcrdns } hostname ircnow.org
 +
 +action "​lmtp"​ lmtp "/​var/​dovecot/​lmtp"​ rcpt-to virtual <​virtuals>​
 +action "​relay"​ relay
 +action "​relay_dkim"​ relay host smtp://​127.0.0.1:​10027
  
 # If mail is for any of our domains, pass it to dovecot # If mail is for any of our domains, pass it to dovecot
Line 36: Line 46:
 match from src <​hosts>​ for any action "​relay_dkim"​ match from src <​hosts>​ for any action "​relay_dkim"​
 match auth from any for any action "​relay_dkim"​ match auth from any for any action "​relay_dkim"​
 +</​code>​
  
-action "​lmtp"​ lmtp "/​var/​dovecot/​lmtp"​ rcpt-to ​virtual <virtuals+A single user vmail will receive mail for all virtual ​users: 
-action ​"relay" ​relay + 
-action "​relay_dkim"​ relay host smtp://127.0.0.1:​10027+<code
 +$ doas useradd -m -g =uid -c "Virtual Mail" ​-d /var/vmail -s /​sbin/​nologin vmail
 </​code>​ </​code>​
 +
 +The /etc/passwd file will contain a line similar to this:
 +
 +<​code>​
 +vmail:​*:​1000:​1000:​Virtual Mail:/​var/​vmail:/​sbin/​nologin
 +</​code>​
 +
 +/var/vmail is used to store virtual users' maildir folders. It will be managed by dovecot, which receives mail via LMTP.
  
 At the bottom of /​etc/​mail/​aliases,​ add these lines: At the bottom of /​etc/​mail/​aliases,​ add these lines:
Line 56: Line 76:
  
 <​code>​ <​code>​
-admin@ircnow.org ​                                                                                     vmail +admin@ircnow.org ​       vmail 
-jrmu@ircnow.org ​                                                                                    ​vmail +jrmu@ircnow.org ​     vmail 
-username@ircnow.org ​                                                                                    ​vmail+username@ircnow.org ​    ​vmail
 </​code>​ </​code>​