iredmail-doc/html/howto/allow.user.to.send.email.wi...

35 lines
1.1 KiB
HTML
Raw Normal View History

2014-09-17 08:37:38 -05:00
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title> Allow user to send email without authentication </title>
2014-09-17 08:37:38 -05:00
<link href="../css/markdown.css" rel="stylesheet"></head>
</head>
<body>
<h1 id="allow-user-to-send-email-without-authentication">Allow user to send email without authentication</h1>
2014-09-17 08:37:38 -05:00
<div class="toc">
<ul>
<li><a href="#allow-user-to-send-email-without-authentication">Allow user to send email without authentication</a></li>
2014-09-17 08:37:38 -05:00
</ul>
</div>
<p>Create a plain text file: <code>/etc/postfix/accepted_unauth_senders</code>:</p>
<pre>
fax-machine-12@mydomain.tld OK
</pre>
<p>Use postmap to create hash db file:</p>
<pre>
# postmap hash:/etc/postfix/accepted_unauth_senders```
</pre>
<p>Modify Postfix to use this text file: <code>/etc/postfix/main.cf</code></p>
<pre>
smtpd_sender_restrictions =
check_sender_access hash:/etc/postfix/accepted_unauth_senders,
[...OTHER RESTRICTIONS HERE...]
</pre>
<p>Restart/reload postfix to make it work:</p>
<pre>
# /etc/init.d/postfix restart
</pre></body></html>