linux_wiki:configure_a_system_to_forward_all_email_to_a_central_mail_server

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
Next revision Both sides next revision
linux_wiki:configure_a_system_to_forward_all_email_to_a_central_mail_server [2018/04/17 23:33]
billdozor [Null Client Testing]
linux_wiki:configure_a_system_to_forward_all_email_to_a_central_mail_server [2018/05/10 22:37]
billdozor [Null Client Setup]
Line 40: Line 40:
 \\ \\
 Configure postfix parameters Configure postfix parameters
 +  * Option A: Use postconf (faster if you have an idea what parameters you need to configure)<code bash># check a setting
 +postconf relayhost
  
-  * Option A: Edit the main configuration<code bash>vim /etc/postfix/main.cf+# check all settings 
 +postconf | grep <keyword> 
 + 
 +# configure 
 +postconf -e 'relayhost = [192.168.1.151]' 
 +postconf -e 'inet_interfaces = loopback-only' 
 +postconf -e 'mydestination =' 
 +postconf -e 'mydomain = example.com' 
 +</code> 
 +  * Option B: Edit the main configuration<code bash>vim /etc/postfix/main.cf
  
 # Relayhost to forward mail to # Relayhost to forward mail to
Line 55: Line 66:
 mydomain = example.com mydomain = example.com
 </code> </code>
-  * Option B: Use postconf<code bash># check a setting 
-postconf relayhost 
  
-# check all settings 
-postconf | grep <keyword> 
- 
-# configure 
-postconf -e 'relayhost = [192.168.1.151]' 
-postconf -e 'inet_interfaces = loopback-only' 
-postconf -e 'mydestination =' 
-postconf -e 'mydomain = example.com' 
-</code> 
  
 \\ \\
Line 114: Line 114:
 vim /etc/postfix/main.cf vim /etc/postfix/main.cf
  
 +# listening interfaces
 inet_interfaces = all inet_interfaces = all
 +
 +# Accept mail for these domains
 mydestination = example.com, server2.example.com, server2 mydestination = example.com, server2.example.com, server2
  
  • linux_wiki/configure_a_system_to_forward_all_email_to_a_central_mail_server.txt
  • Last modified: 2019/05/25 23:50
  • (external edit)