798e8b269c
Topt app passwords fixes (WIP) ( #805 )
...
various improvements to the TOTP code see also: #802
2025-05-16 20:31:20 +01:00
24b3b12581
MailboxHandler: change mailbox_postcreation_hook and maildir_name_hook CONF callable check to use is_callable() and not is_string() && function_exists() - this should allow someone to define a PHP 7+ style anonymous function within their config, add unit test to illustrate behaviour etc
...
see also #869 and #812
2024-11-12 20:12:53 +00:00
5bcfc0f613
Fix typo ( #867 )
...
typo fix in config file for mailbox_postcreation_hook; thanks @gianlucagiacometti
2024-11-11 08:54:35 +00:00
25bab8d7a2
code formatting
2024-11-09 14:47:28 +00:00
bfebea5f3c
Create new_mailbox_hook function ( #864 )
...
* Add new postcreate mailbox hook ( mailbox_postcreation_hook ) - which can be called after a mailbox is created (similar to mailbox_postcreation_script).
Thanks @gianlucagiacometti !
2024-11-09 08:23:26 +00:00
9b169e27f9
smtp_active should be a checkboox ( #861 )
2024-11-05 19:08:26 +00:00
f01274ec94
try relaxing composer dependencies to allow php8.2 dev support, reformat so composer format passes
2024-04-22 21:02:01 +01:00
d3dfe6382b
fix syntax error added in 4ae78cd172
and #823
2024-04-22 21:00:12 +01:00
4ae78cd172
dont assume 'quota' will be in the values, just like block before wasn't assuming ( #823 )
...
Co-authored-by: Nuno Tavares <n.tavares@portavita.eu >
2024-04-22 08:35:55 +01:00
279e7f682d
underlying db field is set to an int (for mysql and pgsql), pgsql does not cope with t/f being set for an inty field, so change the model definition .... - see #814
2024-04-07 19:37:41 +01:00
62a76734c9
see #812 - remove config options for create_mailbox_subdirs_* due to the php-imap module being deprecated; leave in an error_log message to perhaps avoid future support tickets asking why this does not work
2024-04-01 19:38:31 +01:00
81a1d45617
drop use of the deprecated PHP imap extension (php-imap) - see #472 and #812
2024-04-01 19:32:47 +01:00
668960ccf6
Add a flag to mailbox table for enable/disable smtp protocol. The table column name
...
is "smtp_active". This enables use of this flag instead of active flag for postfix
mysql queries. There is a new configuration parameter $CONF['smtp_active_flag'] =
YES or NO, which defaults to NO, providing the existing behaviour. When set to YES
the active_smtp field is displayed in the edit mode and can be modified.
The commit includes update to the language files and documentation.
The commit does not include the code to add the field to existing installs,
which I presume can be added during the release cycle in upgrade.php along the
lines of:
_db_add_field('mailbox', 'smtp_active', 'int DEFAULT 1');
2024-01-09 20:50:49 +01:00
ea121c721b
Add Alert() about illegal character in username
2023-09-26 15:27:24 +02:00
7b8532b2b0
Add javascript check for illegal characters in username
...
Signed-off-by: Fredrik Boström <fredrik.bostroem@verdigado.com >
2023-09-26 14:12:33 +02:00
8cc19b0adf
add @todo for php-imap.com - see also #656
2022-10-12 20:28:53 +01:00
2d6ded2786
PSR2 -> PSR12 formatting
2022-06-28 13:46:11 +01:00
b4028bd309
Add Mailbox quota translations
2022-02-13 18:01:36 +00:00
768f2ee844
Improve dovecot mail-crypt postpassword script security (pipe password instead of passing on cmdline)
...
Suggested from: https://github.com/postfixadmin/postfixadmin/issues/441#issuecomment-774736944
2021-06-13 12:24:27 +02:00
ae0d9436b5
Update MailboxHandler.php
2021-06-02 13:13:40 +03:00
2edabc3e03
phpcs insists on some brace changes
2021-04-13 21:19:16 +01:00
823f27b29d
phpcs wants to change ...
2021-03-22 09:28:28 +00:00
9700a3a9c9
fix psalm : bool -> int
2021-02-18 21:19:56 +00:00
336259957d
Merge remote-tracking branch 'origin/postfixadmin_3.3'
2021-01-25 21:58:31 +00:00
34e0367a0b
check if config option exists and do not require it is a string - see https://github.com/postfixadmin/postfixadmin/issues/437
2021-01-25 17:00:04 +00:00
23cec95153
fix php8 moaning about string vs int
2021-01-18 20:49:49 +00:00
e8acde751f
fix php8 moaning about string vs int
2021-01-18 20:46:11 +00:00
c6ae3ea2f3
Suport for dovecot mail-crypt-plugin via new mailbox_postpassword_script hook.
...
Uses doveadm mailbox cryptokey on create user / password change to adjust user encryption key.
https://doc.dovecot.org/configuration_manual/mail_crypt_plugin/
2021-01-11 21:07:45 +01:00
b8fa60bb8a
more type hints / psalm fixes
2020-09-28 20:33:54 +01:00
b868f950bf
refactor Login stuff out of Handler classes into Login... add tests
2020-09-25 21:32:53 +01:00
3c7da4f3b8
Refactor some methods
...
PFAHandler::store() -> PFAHandler::save();
PFAHandler::storemore() -> PFAHandler::postSave();
PFAHandler::beforestore() -> PFAHandler::preSave();
2020-09-25 21:29:45 +01:00
3d46ec7959
revert: 1d1960a476
- see https://github.com/postfixadmin/postfixadmin/issues/384
2020-09-12 21:04:18 +01:00
bbf41c7acc
formatting
2020-06-02 12:59:47 +01:00
864065cd37
fix MailboxHandler -> adding mailbox with empty quota field
2020-05-15 20:30:31 +01:00
d81363541a
fix psalm
2020-03-18 21:03:27 +00:00
338fb8c564
Fix quota storage; see https://github.com/postfixadmin/postfixadmin/issues/342
2020-03-18 14:36:53 +00:00
d3295a59bb
format
2020-03-16 14:10:05 +00:00
d540d904db
cast mailbox['quota'] to be integer.
...
see: https://github.com/postfixadmin/postfixadmin/issues/342
2020-03-16 13:11:51 +00:00
3303f25bcc
add some php 7+ array type hints.
2020-03-16 13:11:15 +00:00
30f97c97ee
avoid: A non-numeric value encountered errors from no quota being specified
2020-03-02 09:55:13 +00:00
1ad184641d
php7.4 / psalm fixes
2020-01-31 16:30:46 +00:00
87824ef970
psalm fixes/workarounds; require PHP 5.6+
2019-10-19 20:51:05 +01:00
f7c7e35b34
fix formatting
2019-09-15 11:42:21 +01:00
34cf66110e
see https://github.com/postfixadmin/postfixadmin/issues/251 - avoid things breaking if imap_open is not present
2019-09-05 18:10:07 +01:00
296fc2f48e
silence psalm error - cast $show_password_fields to an int in model/MailboxHandler.php lines 33/34
2019-08-13 08:53:43 +01:00
600248e955
Add option to use smtp password when sending admin emails ( fixes #272 )
2019-07-02 13:41:58 +02:00
651688c802
if we are generating passwords, there will only be one password value; so reduce the fields we check before deciding whether to update password_expiry - see https://github.com/postfixadmin/postfixadmin/issues/266
2019-06-11 21:05:53 +01:00
1d1960a476
if CONF['generate_password'] == 'YES' then do not display password fields
...
Given we autogenerate a password ....
2019-06-11 21:03:39 +01:00
3ff2436f2f
try a bit harder to avoid non-numeric argument issues with $multiplier
...
(see https://github.com/postfixadmin/postfixadmin/issues/266 )
2019-06-10 20:13:22 +01:00
8e2e4eb189
run: composer format
2019-06-08 20:38:54 +01:00