0
0
mirror of https://github.com/postfixadmin/postfixadmin.git synced 2024-09-19 19:22:14 +02:00

slightly better docs for app passwords

This commit is contained in:
David Goodwin 2024-01-01 22:37:11 +00:00
parent f3ce7e232d
commit b43590b5c7
No known key found for this signature in database

View File

@ -237,7 +237,12 @@ password_query = SELECT username AS user,password FROM mailbox WHERE username =
user_query = SELECT '/var/mail/vmail/' || maildir AS home, 8 as uid, 8 as gid FROM mailbox WHERE username = '%u' AND active = '1'
```
Password query with app password and allowed remote IP support:
### With application password ('app password')
An application password is intended to provide a way of sharing access to a specific account, while maintaining a unique password. In other words: providing multiple passwords for one account.
PostfixAdmin app passwords cannot be used to sign in to PostfixAdmin itself, but can be used by e.g. dovecot with the following password query :
```
password query = SELECT user, password FROM (\
SELECT username AS user, password, '0' AS is_app_password FROM\