Re: sasl service for other app

2022-12-12 Thread justina colmena ~biz
Okay. Let's try this. With the snippet you posted from "/etc/dovecot/conf.d/10-master.conf " inside the "service auth {...}" section. This is from my "/etc/postfix/master.cf" > submission inet n - n - - smtpd > # -o syslog_name=postfix/submission > > -o

Re: sasl service for other app

2022-12-08 Thread justina colmena ~biz
So this should allow postfix to piggyback on top of whatever dovecot auth is being used. On Thursday, December 8, 2022 4:49:06 AM AKST, Shawn Heisey wrote: On 12/7/22 21:53, Henry R wrote: can dovecot run as a general sasl service for other apps? such as webdav. I am using dovecot to

Re: sasl service for other app

2022-12-08 Thread justina colmena ~biz
https://doc.dovecot.org/configuration_manual/authentication/sql/#password-verification-by-sql-server Perfect. However on Postfix it is more finicky. https://www.postfix.org/SASL_README.html#auxprop_sql Tip If you must store encrypted passwords, you cannot use the sql auxprop plugin. Instead,

Re: sasl service for other app

2022-12-08 Thread Michael Peddemors
On 2022-12-07 20:53, Henry R wrote: can dovecot run as a general sasl service for other apps? such as webdav. Thanks. Almost anything can use dovecot (or any other system) as an authentication SASL service, but it is the 'gotchas' that you have to think about. * Does this open your SASL

Re: sasl service for other app

2022-12-08 Thread Shawn Heisey
On 12/7/22 21:53, Henry R wrote: can dovecot run as a general sasl service for other apps? such as webdav. I am using dovecot to provide authentication for postfix submission.  This is the config in postfix: smtpd_sasl_type = dovecot # Referring to /var/spool/postfix/private/auth

Re: sasl service for other app

2022-12-08 Thread justina colmena ~biz
I suppose. Essentially create a database table and supply a custom SQL query for authentication. Program a PHP web form with a token to reset user password with a recovery email, etc. Postgres/nginx should be just as easy as mysql/apache. -- On Wednesday, December 7, 2022 10:48:27 PM AKST,

Re: sasl service for other app

2022-12-07 Thread Robert Schetterer
Am 08.12.22 um 06:14 schrieb justina colmena ~biz: On Wednesday, December 7, 2022 7:53:43 PM AKST, Henry R wrote: can dovecot run as a general sasl service for other apps? such as webdav. Thanks. For some reason I use cyrus-sasl with postfix, but I can't get it to work with dovecot. Ideas?

Re: sasl service for other app

2022-12-07 Thread justina colmena ~biz
On Wednesday, December 7, 2022 7:53:43 PM AKST, Henry R wrote: can dovecot run as a general sasl service for other apps? such as webdav. Thanks. For some reason I use cyrus-sasl with postfix, but I can't get it to work with dovecot. Ideas? Pointers to docs online?