Monday, April 29, 2024
 Popular · Latest · Hot · Upcoming
7
rated 0 times [  7] [ 0]  / answers: 1 / hits: 33196  / 2 Years ago, thu, november 10, 2022, 1:09:13

I'm trying to setup an easy mail server to support my "lost password" function in my website.



I'd like to know if Exim is good or not, or is there any better solution?



I would also like to know that it isn't easy to manage an smtp server (such as blocking junk mail, or being hacked, etc), does setting up a send-only mail server cause any security issues?



Thanks!


More From » 14.04

 Answers
3

Simple example to setup postfix with satellite SMTP




  1. install postfix



    sudo aptitude install postfix


  2. configure postfix



    sudo vi /etc/postfix/smtp_auth



    add your smtp authentication information in /etc/postfix/smtp_auth:



    smtp.foo.bar user@host:password



    and generate the postfix lookup table file (/etc/postfix/smtp_auth.db) using



    sudo postmap /etc/postfix/smtp_auth



    add the relayhost (outgoing smtp server e.g. smtp.foo.bar on port 587, depending your relay host info) information to /etc/postfix/main.cf:



    relayhost = [smtp.foo.bar]:587



    add the following lines to /etc/postfix/main.cf in order to enable smtp-auth for outgoing mails:



    smtp_sasl_auth_enable = yes
    smtp_sasl_password_maps = hash:/etc/postfix/smtp_auth
    smtp_sasl_security_options = noanonymous


  3. restart postfix



    sudo service postfix restart



[#25592] Thursday, November 10, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
cheeturage

Total Points: 432
Total Questions: 111
Total Answers: 115

Location: Bahrain
Member since Tue, Mar 1, 2022
2 Years ago
;