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
computers:truenas:mail [06-Nov-2021 14:00] – [Set up the Mail Delivery Agent] Steve Joyntcomputers:truenas:mail [02-Feb-2025 16:14] (current) – external edit 127.0.0.1
Line 29: Line 29:
 <code> <code>
 jexec "ioc-${JAIL_NAME:?}" adduser jexec "ioc-${JAIL_NAME:?}" adduser
 +
 </code> </code>
  
Line 64: Line 65:
 </code> </code>
  
-====== Set up the Mail Delivery Agent ======+====== Set up the SMTP Mail Delivery Agent ======
  
 I will be using the simple //sendmail// service that comes as standard with BSD installations. It just needs to be configured and started. I don't need any clever security, as it can only be accessed from the LAN, and I'm not going to tell it how to pass messages on to the outside world. I will be using the simple //sendmail// service that comes as standard with BSD installations. It just needs to be configured and started. I don't need any clever security, as it can only be accessed from the LAN, and I'm not going to tell it how to pass messages on to the outside world.
  
-1. Build the initial configuration if this is your first time here. It does nothing the second time it is run.+1. Build the initial configuration.
 <code> <code>
 jexec "ioc-${JAIL_NAME:?}" /bin/sh -c "cd /etc/mail && make" jexec "ioc-${JAIL_NAME:?}" /bin/sh -c "cd /etc/mail && make"
Line 75: Line 76:
  
 2. Tell sendmail where to deliver root's mail to. 2. Tell sendmail where to deliver root's mail to.
- 
-Node: You can't log in as root to pick up your mail - that would be dangerous, because the mail system would have to run as root to access the files containing the mail. If there's any bugs in the mail server or its helper files, that could result in serious problems! So we need to direct all mail for root into another mailbox that we can access as an unprivileged user. 
  
 <code> <code>
Line 94: Line 93:
 After that, insert a new line like this... After that, insert a new line like this...
 <code> <code>
-root: mailbox+root: administrator
 </code> </code>
  
----+3. Generate the aliases.db file and anything else that's required. 
 +<code> 
 +jexec "ioc-${JAIL_NAME:?}" /bin/sh -c "cd /etc/mail && make" 
 + 
 +</code> 
 + 
 +4. Enable sendmail features.
  
 <code> <code>
-jexec "ioc-${JAIL_NAME:?}" sysrc sendmail_enable="NO"+jexec "ioc-${JAIL_NAME:?}" sysrc sendmail_enable="YES"
 jexec "ioc-${JAIL_NAME:?}" sysrc sendmail_outbound_enable="NO" jexec "ioc-${JAIL_NAME:?}" sysrc sendmail_outbound_enable="NO"
 jexec "ioc-${JAIL_NAME:?}" sysrc sendmail_submit_enable="YES" jexec "ioc-${JAIL_NAME:?}" sysrc sendmail_submit_enable="YES"
Line 107: Line 112:
 </code> </code>
  
 +5. Start the sendmail MTA service.
  
 <code> <code>
Line 117: Line 123:
 I need to be able to view messages on my workstation using a normal mail reader. The messages I receive will be actioned and then deleted. I don't need the clever folders that IMAP provides, so I'll just use the POP protocol to access the mailbox.  I need to be able to view messages on my workstation using a normal mail reader. The messages I receive will be actioned and then deleted. I don't need the clever folders that IMAP provides, so I'll just use the POP protocol to access the mailbox. 
  
-Initially just want one mailbox for all notifications from the various devices across my LANThis can easily be configured by creating a normal Unix user on the mail server boxThey don't need to be able to log in, but the normal passwd and shadow files will store all the configuration we need for each mailboxThe root login and other system logins will be set to forward their mail to my special email address on the same host.+will be using the //qpopper// service to provide simple POP mailbox access. 
 + 
 +1. Install the software 
 +<code> 
 +jexec "ioc-${JAIL_NAME:?}" pkg install qpopper 
 + 
 +</code> 
 + 
 +2Configure the service. 
 +<code> 
 +jexec "ioc-${JAIL_NAME:?}" vi /etc/inetd.conf 
 +</code> 
 + 
 +Search for this section in the inetd.conf file, and add the last line shown... 
 +<code> 
 +
 +# example entry for the optional pop3 server 
 +
 +#pop3   stream  tcp     nowait  root    /usr/local/libexec/popper       popper 
 +pop3    stream  tcp     nowait  root    /usr/local/libexec/qpopper      qpopper -s 
 +</code> 
 + 
 +3. Activate the service. 
 +<code> 
 +jexec "ioc-${JAIL_NAME:?}" sysrc inetd_enable="YES" 
 +jexec "ioc-${JAIL_NAME:?}" service inetd restart 
 + 
 +</code> 
  
 ====== Set up Thunderbird to access the Mailbox ====== ====== Set up Thunderbird to access the Mailbox ======
 +
 +Select "Edit" then "Account Settings" from the menu.
 +
 +Select "Add Mail Account" from the "Account Actions" menu.
 +
 +<code>
 +Your full name: System Administrator
 +Email address: administrator@net.joynt.org.uk
 +Password: *****
 +Remember passowrd: checked
 +</code>
 +Configure manually...
 +
 +Incomming Server...
 +<code>
 +Protocol: pop3
 +Hostname: net.joynt.org.uk
 +Port: 110
 +Connection security: none
 +Authentication method: Normal password
 +Username: administrator
 +</code>
 +
 +Outgoing Server...
 +<code>
 +Hostname: net.joynt.org.uk
 +Port: 25
 +Connection security: none
 +Authentication method: No authentication
 +</code>
 +
 +Warning... I understand the risks
  
 ====== Credits ====== ====== Credits ======
Line 128: Line 194:
   * [[https://www.freebsd.org/cgi/man.cgi?query=rc.sendmail&sektion=8&n=1]]   * [[https://www.freebsd.org/cgi/man.cgi?query=rc.sendmail&sektion=8&n=1]]
   * [[https://lists.freebsd.org/pipermail/freebsd-questions/2006-April/120156.html]]   * [[https://lists.freebsd.org/pipermail/freebsd-questions/2006-April/120156.html]]
-  * [[https://logs.paulooi.com/setup-sendmail-smart-relay-in-freebsd.php]]+  * [[https://blog.andreev.it/?p=199]] 
 +  * [[http://freshmeat.sourceforge.net/projects/qpopper/]] 
  
  • computers/truenas/mail.1636207230.txt.gz
  • Last modified: 02-Feb-2025 16:12
  • (external edit)