0
0
mirror of https://github.com/postfixadmin/postfixadmin.git synced 2024-09-19 11:12:15 +02:00
Commit Graph

118 Commits

Author SHA1 Message Date
David Goodwin
b726c7aba8
ensure {MD5-CRYPT}$1$ and $1$... are treated the same .. see also #843 2024-07-16 11:16:48 +01:00
David Goodwin
2eb7f34844
try and fix phpunit deprecation warning - assertRegExp => assertMatchesRegularExpression 2024-04-22 21:08:57 +01:00
David Goodwin
f01274ec94
try relaxing composer dependencies to allow php8.2 dev support, reformat so composer format passes 2024-04-22 21:02:01 +01:00
Shao Yu-Lung (Allen)
0876c368e4
feat: support Dovecot DIGEST-MD5 (#816)
Add support for dovecot DIGEST-MD5 auth (using : $CONF['pacrypt'] = 'dovecot:DIGEST-MD5') 

This also changes the pacrypt() function to take an optional 3rd argument (username). 
Thanks @bestlong
2024-04-12 09:57:19 +01:00
David Goodwin
dc792a0222 add unit test to cover some of Login::addAppPassword() 2023-12-27 16:17:55 +00:00
David Goodwin
2ee4b3832e formatting 2023-12-24 19:40:49 +00:00
David Goodwin
a368104fad token test 2023-12-24 19:39:47 +00:00
David Goodwin
605a019a24 better test coverage - make sure pacrypt() respects php_crypt:MD5 and makes something like $1$..... 2023-03-09 21:57:58 +00:00
David Goodwin
6f3c5a73ad add unit test for https://github.com/postfixadmin/postfixadmin/issues/647 2022-08-11 20:21:16 +01:00
David Goodwin
d3e101e9d8 Merge remote-tracking branch 'origin/master' into feature/dkim 2022-07-18 08:55:07 +01:00
David Goodwin
2d6ded2786 PSR2 -> PSR12 formatting 2022-06-28 13:46:11 +01:00
David Goodwin
bed0300fae fix tests (pacrypt/{md5raw} etc) 2022-06-23 22:18:16 +01:00
Fredrik Falk
9e73025058 Add Domain Key handling 2022-06-23 20:40:06 +02:00
David Goodwin
35486a2ca9 remove dead code 2022-06-06 20:35:53 +01:00
David Goodwin
760600cb56 one or more of something needs {1,} not {1} ... 2022-02-13 20:32:39 +00:00
Oliver Cooper
35ecb62730 Add password special character support 2022-02-13 17:21:20 +00:00
David Goodwin
4bc3e1464c make sure php_crypt:BLOWFISH works 2021-11-14 20:50:41 +00:00
David Goodwin
598f7db2e7 skip ARGON2ID* things if using an old PHP variant 2021-09-29 21:27:28 +01:00
David Goodwin
91a3dde446 older php variants do not have argon2i 2021-09-29 21:23:18 +01:00
David Goodwin
40101c84d4 fix formatting 2021-09-29 21:10:43 +01:00
David Goodwin
ac13219894 improve test coverage / compatability 2021-09-29 21:05:19 +01:00
David Goodwin
309b4a84aa get legacy test case to pass 2021-09-29 18:32:46 +01:00
David Goodwin
0b9b7db917 Merge remote-tracking branch 'origin/master' into feature-improve-pacrypt 2021-09-29 18:04:49 +01:00
David Goodwin
561216c83d composer format 2021-09-25 20:34:32 +01:00
David Goodwin
55e7515c9c more testings (pacrypt() related) 2021-09-25 20:33:15 +01:00
David Goodwin
284e1f7eb2 fix test after language change 2021-07-08 19:44:11 +01:00
David Goodwin
179dd4c6e2 try and improve hashing, remove duplicate code, try and cope with the algorithm/method in $pw_db being different from the configured one; add tests 2021-05-11 21:56:48 +01:00
David Goodwin
543285a203 add SSHA format, add some specific courier algorithms, try and partially update docs 2021-05-09 21:31:53 +01:00
David Goodwin
71ee810891 try and implement more hash mechanisms - see e.g. https://github.com/postfixadmin/postfixadmin/issues/479 and https://github.com/postfixadmin/postfixadmin/issues/379 2021-05-08 21:47:45 +01:00
David Goodwin
2edabc3e03 phpcs insists on some brace changes 2021-04-13 21:19:16 +01:00
David Goodwin
c300a8070e ensure timestamps are non-empty after update for mailbox 2021-04-05 21:11:39 +01:00
David Goodwin
3ad0591006 ensure MailboxHandler does result in modified timestamp being updated, and they are both set on insertion - see #469 2021-04-05 21:11:39 +01:00
David Goodwin
823f27b29d phpcs wants to change ... 2021-03-22 09:28:28 +00:00
David Goodwin
5b77278013 add something to test Login::passwordChange() works 2021-02-23 09:57:01 +00:00
David Goodwin
d9813d4cf8 see #446 - try and detect site url but allow for $CONF['site_url'] override to be used. 2021-02-07 20:35:58 +00:00
David Goodwin
d576aafd67 might help stop sqlite test conflicts 2021-01-25 22:08:36 +00:00
David Goodwin
e7e1ce9c28 fix postgresql test 2021-01-19 16:50:56 +00:00
David Goodwin
94836ed156 delete local stuff 2021-01-18 22:16:18 +00:00
David Goodwin
de820e7688 ensure we delete aliases 2021-01-18 22:16:10 +00:00
David Goodwin
f14deb5426 improve tests 2021-01-18 22:15:56 +00:00
David Goodwin
d65d70c6ed fix test if quota is turned on 2021-01-18 20:46:37 +00:00
David Goodwin
ff2a7c96d4 update changelog; try and improve tests 2021-01-14 17:07:55 +00:00
David Goodwin
0096a41693 format 2021-01-12 11:00:56 +00:00
David Goodwin
7090b5af75 changes to pacrypt to support a prefix like {SHA265-CRYPT} on a hash - @see https://github.com/postfixadmin/postfixadmin/issues/344 2021-01-12 10:59:25 +00:00
David Goodwin
a2dd768858 reformat 2020-12-23 16:24:41 +00:00
David Goodwin
4712d83c98 see: https://github.com/postfixadmin/postfixadmin/issues/390 - support a callable which
allows for password validation against any external service.
2020-11-09 21:37:47 +00:00
David Goodwin
ce8c636eb5 rejig Login::__construct() as only one arg is really needed 2020-09-26 09:58:05 +01:00
David Goodwin
7107e17c4c composer format 2020-09-25 21:33:26 +01:00
David Goodwin
b868f950bf refactor Login stuff out of Handler classes into Login... add tests 2020-09-25 21:32:53 +01:00
David Goodwin
f091948381 move password check and recovery code generation out of PFAHandlers and into a Login class 2020-09-25 21:32:03 +01:00