Re: Minimum configuration for Dovecot SASL only?

2023-11-06 Thread Urban Loesch via dovecot
Hi, I use the same setup with the following packages: # dpkg -l |grep dovecot ii dovecot-core 2:2.3.21-1+debian10 amd64secure POP3/IMAP server - core files ii dovecot-mysql2:2.3.21-1+debian10 amd64

Re: Minimum configuration for Dovecot SASL only?

2023-11-06 Thread Paul Kudla
postfix does support tls for sasl (i use starttls from thunderbird with out issues) assumning that sasl + postfix + openssl have been compiled in properly here are my config files (without password / auth for the databases) : Note(s) : PLEASE READ ALL OF THIS AS POSTFIX + SASL + SSL/TLS +

Re: Minimum configuration for Dovecot SASL only?

2023-11-05 Thread jeremy ardley via dovecot
On 6/11/23 04:36, jeremy ardley via dovecot wrote: You should be able to use ssh with port forwarding to establish a TLS connection between devices. Postfix would see a remote SASL service as a local service. An alternative and possibly more reliable and easily configured mechanism would

Re: Minimum configuration for Dovecot SASL only?

2023-11-05 Thread jeremy ardley via dovecot
On 6/11/23 03:25, Nick Lockheart wrote: I can't use the real Dovecot IMAP server for auth, because it runs on a separate server, and Postfix does not support TLS connections for SASL. -- You should be able to use ssh with port forwarding to establish a TLS connection between devices. Postfix

Re: Minimum configuration for Dovecot SASL only?

2023-11-05 Thread Nick Lockheart
On Sat, 2023-11-04 at 16:32 -0700, Michael Peddemors wrote: > Why use Dovecot/IMAP at all for the SMTP Authentication, can't you > simply go direct to your database? > > On 2023-11-03 09:55, Nick Lockheart wrote: > > I have a Dovecot IMAP server and a Postfix server on separate > > machines. > >

Re: Minimum configuration for Dovecot SASL only?

2023-11-04 Thread Paul Kudla
i researched MariaDB it seems that it is based from mysql, you will probably need to lookup postfix + mysql auth but the syntax should be pretty close. Have A Happy Saturday !!! Thanks - Paul Kudla (Manager SCOM.CA Internet Services Inc.) Scom.ca Internet Services

Re: Minimum configuration for Dovecot SASL only?

2023-11-04 Thread Paul Kudla
some of the main.cf config #Auth Stuff smtpd_sasl_auth_enable = yes #Dovecot #smtpd_sasl_path = private/auth #smtpd_sasl_type = dovecot #Cyrus smtpd_sasl_type = cyrus smtpd_sasl_path = smtpd #SASL Common broken_sasl_auth_clients = yes smtpd_sasl_security_options = noanonymous

Re: Minimum configuration for Dovecot SASL only?

2023-11-04 Thread Paul Kudla
Actually postfix can auth with sasl without dovecot I run this myself. I am unfamiliar with MariaDB however postgresql runs just fine. You need to setup postfix + sasl (its an option at compile time) and then setup the main.cf postfix config mappings & outgoing sasl auth accordingly that

Re: Minimum configuration for Dovecot SASL only?

2023-11-04 Thread Michael Peddemors
Why use Dovecot/IMAP at all for the SMTP Authentication, can't you simply go direct to your database? On 2023-11-03 09:55, Nick Lockheart wrote: I have a Dovecot IMAP server and a Postfix server on separate machines. The user information is stored in a MariaDB database that is replicated on

Minimum configuration for Dovecot SASL only?

2023-11-03 Thread Nick Lockheart
I have a Dovecot IMAP server and a Postfix server on separate machines. The user information is stored in a MariaDB database that is replicated on both servers. Postfix needs to authenticate outgoing mail against our valid user database. I believe this requires us to install a "dummy" Dovecot on