Postfix: Difference between revisions

From Freephile Wiki
might need the CA file
m Text replacement - "<(\/?)source" to "<$1syntaxhighlight"
 
Line 7: Line 7:
Add '''[[Postfix]]''' Mail Transfer Agent as satellite smarthosting through Google, install mail utilities, setup an alias for root's mail and test it all
Add '''[[Postfix]]''' Mail Transfer Agent as satellite smarthosting through Google, install mail utilities, setup an alias for root's mail and test it all
   <ol>
   <ol>
     <li><source lang="bash"> sudo su - </source>
     <li><syntaxhighlight lang="bash"> sudo su - </syntaxhighlight>
     <li><source lang="bash"> apt-get install postfix </source>
     <li><syntaxhighlight lang="bash"> apt-get install postfix </syntaxhighlight>
     <li><source lang="bash"> apt-get install bsd-mailx
     <li><syntaxhighlight lang="bash"> apt-get install bsd-mailx
# or  
# or  
apt-get install mailutils
apt-get install mailutils
</source>
</syntaxhighlight>
     <li><pre>cat <<HERE | sudo tee /etc/postfix/main.cf > /dev/null
     <li><pre>cat <<HERE | sudo tee /etc/postfix/main.cf > /dev/null
# work-around for Digital Ocean's blocking of IPv6 for email
# work-around for Digital Ocean's blocking of IPv6 for email
Line 28: Line 28:
HERE
HERE
</pre>
</pre>
     <li><source lang="bash"> echo "smtp.gmail.com me@example.com:PASSWORD" > /etc/postfix/sasl_passwd </source>
     <li><syntaxhighlight lang="bash"> echo "smtp.gmail.com me@example.com:PASSWORD" > /etc/postfix/sasl_passwd </syntaxhighlight>
     <li><source lang="bash"> postmap /etc/postfix/sasl_passwd </source>
     <li><syntaxhighlight lang="bash"> postmap /etc/postfix/sasl_passwd </syntaxhighlight>
     <li><source lang="bash"> chmod 640 /etc/postfix/sasl_passwd* </source>
     <li><syntaxhighlight lang="bash"> chmod 640 /etc/postfix/sasl_passwd* </syntaxhighlight>
     <li><source lang="bash"> chown postfix:postfix /etc/postfix/sasl_passwd* </source>
     <li><syntaxhighlight lang="bash"> chown postfix:postfix /etc/postfix/sasl_passwd* </syntaxhighlight>
     <li><source lang="bash"> /etc/init.d/postfix restart </source>
     <li><syntaxhighlight lang="bash"> /etc/init.d/postfix restart </syntaxhighlight>
     <li><source lang="bash"> echo "root: me@example.com" >> /etc/aliases && newaliases </source>
     <li><syntaxhighlight lang="bash"> echo "root: me@example.com" >> /etc/aliases && newaliases </syntaxhighlight>
     <li><source lang="bash"> echo test |mail -s "test mail sent to external" greg.rundlett@gmail.com </source>
     <li><syntaxhighlight lang="bash"> echo test |mail -s "test mail sent to external" greg.rundlett@gmail.com </syntaxhighlight>
     <li><source lang="bash"> echo test |mail -s "test mail sent to root" root </source>
     <li><syntaxhighlight lang="bash"> echo test |mail -s "test mail sent to root" root </syntaxhighlight>
   </ol>
   </ol>


Line 48: Line 48:
== Log ==
== Log ==
All mail activity goes to the mail log, and you can see what's going on there:
All mail activity goes to the mail log, and you can see what's going on there:
<source lang="bash">
<syntaxhighlight lang="bash">
sudo tail -100 /var/log/mail.log
sudo tail -100 /var/log/mail.log
</source>
</syntaxhighlight>


== Delete Mail ==
== Delete Mail ==
Postfix stores mails in a queue before sending it. Sometimes you wish to remove the mails from the queue but wonder how. Postfix offers the <code>postsuper</code> command which can be used to delete unsent mails from the queue. Before removing the mail from the queue it is good idea to list all mails in the queue. By issuing the command:
Postfix stores mails in a queue before sending it. Sometimes you wish to remove the mails from the queue but wonder how. Postfix offers the <code>postsuper</code> command which can be used to delete unsent mails from the queue. Before removing the mail from the queue it is good idea to list all mails in the queue. By issuing the command:
<source lang="bash">
<syntaxhighlight lang="bash">
mailq
mailq
</source>
</syntaxhighlight>
you will list all of the mails which are queued or simply timed out for some reason.
you will list all of the mails which are queued or simply timed out for some reason.


If you want to remove a mail from the "mailq" type:
If you want to remove a mail from the "mailq" type:
<source lang="bash">
<syntaxhighlight lang="bash">
postsuper -d mailID
postsuper -d mailID
</source>
</syntaxhighlight>
where mailID is the ID of the message in the mail queue.
where mailID is the ID of the message in the mail queue.


Issuing the command:
Issuing the command:
<source lang="bash">
<syntaxhighlight lang="bash">
postsuper -d ALL
postsuper -d ALL
</source>
</syntaxhighlight>
will delete all queued messages from the mailq.
will delete all queued messages from the mailq.



Latest revision as of 13:28, 24 February 2025

visit www.postfix.org

Notes on using Postfix [1]. Quick and dirty procedure for setting up Postfix on a new machine that needs email.

Setting up Postfix[edit]

Add Postfix Mail Transfer Agent as satellite smarthosting through Google, install mail utilities, setup an alias for root's mail and test it all

  1.  sudo su -
    
  2.  apt-get install postfix
    
  3.  apt-get install bsd-mailx
    # or 
    apt-get install mailutils
    
  4. cat <<HERE | sudo tee /etc/postfix/main.cf > /dev/null
    # work-around for Digital Ocean's blocking of IPv6 for email
    smtp_bind_address = 0.0.0.0
    # or set inet_protocols = ipv4
    # satellite configuration
    smtp_use_tls = yes
    smtp_sasl_auth_enable = yes
    smtp_sasl_password_maps = hash:/etc/postfix/sasl_passwd
    smtp_sasl_security_options = noanonymous
    smtp_sasl_tls_security_options = noanonymous
    # list of CAs to trust when verifying server certificate
    smtp_tls_CAfile = /etc/ssl/certs/ca-certificates.crt
    
    HERE
    
  5.  echo "smtp.gmail.com me@example.com:PASSWORD" > /etc/postfix/sasl_passwd
    
  6.  postmap /etc/postfix/sasl_passwd
    
  7.  chmod 640 /etc/postfix/sasl_passwd*
    
  8.  chown postfix:postfix /etc/postfix/sasl_passwd*
    
  9.  /etc/init.d/postfix restart
    
  10.  echo "root: me@example.com" >> /etc/aliases && newaliases
    
  11.  echo test |mail -s "test mail sent to external" greg.rundlett@gmail.com
    
  12.  echo test |mail -s "test mail sent to root" root
    


Security[edit]

https://drownattack.com/postfix.html illustrates how to secure your Postfix installation against weak encryption.

Version[edit]

Run postconf -d | grep mail_version to find out your Postfix version.


Log[edit]

All mail activity goes to the mail log, and you can see what's going on there:

sudo tail -100 /var/log/mail.log

Delete Mail[edit]

Postfix stores mails in a queue before sending it. Sometimes you wish to remove the mails from the queue but wonder how. Postfix offers the postsuper command which can be used to delete unsent mails from the queue. Before removing the mail from the queue it is good idea to list all mails in the queue. By issuing the command:

mailq

you will list all of the mails which are queued or simply timed out for some reason.

If you want to remove a mail from the "mailq" type:

postsuper -d mailID

where mailID is the ID of the message in the mail queue.

Issuing the command:

postsuper -d ALL

will delete all queued messages from the mailq.

References[edit]

  1. loosely following the info at http://braiden.org/?p=15