Changes

From Amahi Wiki
Jump to: navigation, search
no edit summary
Here's how to enable outgoing emails on your Amahi server.
 
Note: Make sure to use copy-paste to execute those commands. In particular, they contain back-ticks as the starting string delimiter, which can be hard to find on a keyboard!
[[Open Terminal as root|As root]]:
make
service sendmail restart
</div>
 
If you need to connect to the SMTP server using port 465 (SSL), you'll need to do this too:
 
<div style="border: 1px solid #A3B1BF; padding: .5em 1em; color: #000; background-color: #E6F2FF; margin: 3px 3px 1em 3px;">
cd /etc/mail
echo "define(\`RELAY_MAILER_ARGS', \`TCP \$h 465')dnl" >> sendmail.mc
echo "define(\`ESMTP_MAILER_ARGS', \`TCP \$h 465')dnl" >> sendmail.mc
m4 sendmail.mc > sendmail.cf
make
service sendmail restart
</div>