<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
</head>
<body>
<div>Hi Michael,</div>
<div><br>
</div>
<div>At the moment it is Sendmail. Switching it will do no harm to my mail maps and files?</div>
<div>Thanx again!</div>
<div><br>
</div>
<div>P.s.: the cronjob? It was a home cooked job to backup mail and pix etc to a spare drive, a remnant from my foolish days. </div>
<div><br>
</div>
<div>Regards,</div>
<div><br>
</div>
<div>Arie</div>
<hr style="display:inline-block;width:98%" tabindex="-1">
<div id="divRplyFwdMsg" dir="ltr"><font face="Calibri, sans-serif" style="font-size:11pt" color="#000000"><b>From:</b> Blueonyx <blueonyx-bounces@mail.blueonyx.it> on behalf of Michael Stauber <mstauber@blueonyx.it><br>
<b>Sent:</b> Wednesday, 31 May 2023 18:03<br>
<b>To:</b> blueonyx@mail.blueonyx.it <blueonyx@mail.blueonyx.it><br>
<b>Subject:</b> [EXTERNAL] [BlueOnyx:26256] Re: ISP SMTP credentials, how to?</font>
<div> </div>
</div>
<div class="BodyFragment"><font size="2"><span style="font-size:11pt;">
<div class="PlainText">Hi Arie,<br>
<br>
> So my ISP got smart and changed the connection mode to his smtp server. <br>
> I've been using this as smart relay on port 587. Now I'm required to <br>
> login using my ISP mail credentials and security=AUT.<br>
> Sending mail directly from Blueonyx is sketchie as I do not have a <br>
> static ip address and sometimes get a blacklisted one.<br>
> So, is it possible to fill in the needed credentials somewhere in the <br>
> GUI or am I screwed?<br>
<br>
It is not possible (yet) to do this entirely via the GUI. But if your <br>
MTA is Postfix, it requires just a few steps.<br>
<br>
First do this in the GUI, all in "Server Management" / "Network <br>
Services" / "Email":<br>
<br>
Make sure that in the "Basic" tab your "MTA server" is set to Postfix.<br>
<br>
Then in the "Advanced" tab under "Smart Relay Server" enter the email <br>
server you need to relay through (the one of your ISP).<br>
<br>
Save the changes.<br>
<br>
Then as "root" and via SSH create this file:<br>
<br>
/etc/postfix/sasl_passwd<br>
<br>
Add the following text into it, but change it to your needs:<br>
<br>
[mail.isp.example] username:password<br>
<br>
Run "postmap" against that file:<br>
<br>
postmap /etc/postfix/sasl_passwd<br>
<br>
Fix permissions and ownerships just to be sure:<br>
<br>
chown root:root /etc/postfix/sasl_passwd /etc/postfix/sasl_passwd.db<br>
chmod 0600 /etc/postfix/sasl_passwd /etc/postfix/sasl_passwd.db<br>
<br>
Then edit /etc/postfix/main.cf and add the following three options to it:<br>
<br>
# enable SASL authentication<br>
smtp_sasl_auth_enable = yes<br>
<br>
# disallow methods that allow anonymous authentication.<br>
smtp_sasl_security_options = noanonymous<br>
<br>
# where to find sasl_passwd<br>
smtp_sasl_password_maps = hash:/etc/postfix/sasl_passwd<br>
<br>
Then restart Postfix and test if it works:<br>
<br>
service postfix restart<br>
<br>
<br>
-- <br>
With best regards<br>
<br>
Michael Stauber<br>
_______________________________________________<br>
Blueonyx mailing list<br>
Blueonyx@mail.blueonyx.it<br>
<a href="http://mail.blueonyx.it/mailman/listinfo/blueonyx">http://mail.blueonyx.it/mailman/listinfo/blueonyx</a><br>
</div>
</span></font></div>
</body>
</html>