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

175 Commits

Author SHA1 Message Date
David Goodwin
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
David Goodwin
eda637df1a
Merge branch 'master' into michaelkrieger-patch-1 2024-01-11 08:51:17 +00:00
John Fawcett
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
David Goodwin
4d17aa6ef9 manaul merge in of verdigado:master (see #753) (MFA/TOTP support) 2023-12-23 17:05:52 +00:00
Fredrik Boström
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
David Goodwin
375350cadd reformat a little 2022-11-30 21:18:40 +00:00
Christian Boltz
9ec3196c6d
Whitespace fixes 2022-07-18 22:55:24 +02:00
Fredrik Falk
9e73025058 Add Domain Key handling 2022-06-23 20:40:06 +02: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
Davide Beatrici
626bd43def Add support for implicit TLS, replace "smtp_sendmail_tls" with "smtp_type"
For reference: https://datatracker.ietf.org/doc/html/rfc8314

Please note that this only applies to the "send email" feature.

In the future we should implement it for the "fetch email" one too.
2021-11-29 07:10:20 +01:00
David Goodwin
89f3ba5387 try and improve documentation in config.inc.php 2021-11-14 20:49:58 +00:00
David Goodwin
6f7e69f21b improve docs 2021-09-29 21:05:03 +01:00
BotoX
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
Sven Strickroth
74a12b4f0c Add support for domain_postedit_script
Signed-off-by: Sven Strickroth <email@cs-ware.de>
2021-05-08 18:27:44 +02:00
David Goodwin
c755e82a36 Merge branch 'postfixadmin_3.3' 2021-02-18 12:12:27 +00:00
David Goodwin
1a9d9847f5 bump version 2021-02-17 21:32:06 +00:00
David Goodwin
5aee2ca4f8 update CHANGELOG and version 2021-02-17 17:21:47 +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
be1f922f7e change reference to file 2021-01-29 21:18:29 +00:00
David Goodwin
9305a250fb change the default password hash to one that may be more secure; add note 2021-01-28 17:04:21 +00:00
David Goodwin
9da4431bef Merge branch 'postfixadmin_3.3' 2021-01-27 22:02:29 +00:00
David Goodwin
96a022747c release 3.3.5 perhaps 2021-01-27 22:01:32 +00:00
David Goodwin
97ae019e10 remove duplication; comment out the length_check password_verify rule as we already have /.{5}/ 2021-01-27 10:56:40 +00:00
David Goodwin
237615502a Merge remote-tracking branch 'origin/postfixadmin_3.3' 2021-01-27 09:29:57 +00:00
David Goodwin
e15d9abe06 improve comment, fix return value in callable for password_verify. 2021-01-26 21:06:35 +00:00
David Goodwin
dd6616bbb2 bump version number 2021-01-26 19:45:59 +00:00
David Goodwin
98dba48c70 add a big note on sudo stuff, remove duplicate comments on hooks - see https://github.com/postfixadmin/postfixadmin/issues/441 2021-01-26 19:08:19 +00:00
David Goodwin
336259957d Merge remote-tracking branch 'origin/postfixadmin_3.3' 2021-01-25 21:58:31 +00:00
David Goodwin
a1025b4760 and trim string before length check 2021-01-25 21:57:59 +00:00
David Goodwin
2acdcdbd75 see : https://github.com/postfixadmin/postfixadmin/issues/423 - change password length check behaviour 2021-01-25 20:12:47 +00:00
David Goodwin
e10f6f3df5 merge postfixadmin_3.3 into master 2021-01-21 13:52:41 +00:00
David Goodwin
6d101b79e6 bump version numbers/changelog for 3.3.4 2021-01-19 20:04:31 +00:00
Gianluca Giacometti
e777252f07
Add a note for new fields
It took me some time to understand that adding fields through the struct hook does not mean that they are automatically displayed in the corresponding virtual list. I think that adding a note here would make life easier to everybody.
2021-01-17 23:53:04 +01:00
David Goodwin
c6a8117e82 improve doc comment - see https://github.com/postfixadmin/postfixadmin/issues/423 2021-01-17 22:31:53 +00:00
David Goodwin
cb161a7cec
Merge pull request #421 from BotoX/master-crypt
Suport for dovecot mail-crypt-plugin via new mailbox_postpassword_script hook
2021-01-14 20:11:14 +00:00
David Goodwin
e9850f3ed4 3.3.3 release 2021-01-14 17:07:55 +00:00
David Goodwin
41531b8bf2 3.3.3 release 2021-01-14 17:06:49 +00:00
David Goodwin
728fc45d38 bump version number 2021-01-12 22:14:23 +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
BotoX
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
David Goodwin
cc23eba9dd bump version number 2021-01-11 09:36:51 +00:00
David Goodwin
d833f6bec8 bump version number 2021-01-07 21:09:59 +00:00
David Goodwin
750838d7f7 psalm fixes; make safepost()/safeget() return strings 2020-11-09 21:40:52 +00:00
David Goodwin
b8fa60bb8a more type hints / psalm fixes 2020-09-28 20:33:54 +01:00
David Goodwin
8abde0dc0b move $version into $CONF / Config from functions.inc.php 2020-09-27 10:47:56 +01:00
David Goodwin
6ad44679a7 change default theme to the bootstrap one 2020-09-25 21:52:22 +01:00
David Goodwin
3b9d8f867e merge sha512.b64 encrypt support - see https://github.com/postfixadmin/postfixadmin/issues/58 2020-03-14 22:30:51 +00:00
Michael Krieger
e3847a8d26
Rename to emailcheck_localaliasonly 2020-03-05 18:03:34 -05:00
Michael Krieger
ab5a6d5894
Add configuration parameter defaulting to 'NO'
Adds optional parameter to limit the alias destinations to local domains.
An additional check makes sure that the domain is in the list of postfix domain names.
2020-03-05 17:41:45 -05:00