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

99 Commits

Author SHA1 Message Date
John Fawcett
8a314079bd Updates to POSTFIX_CONF.txt for configuration of authenticaiton with
dovecot sasl and configuration of Postfix submission service
2024-01-09 23:15:57 +01: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
knofte
2ea74cabb7
Typos fix - Update UPGRADE.txt
A few simple typos fixed.
2023-09-18 20:13:39 +03:00
David Goodwin
9f91c55b24 typos 2023-06-17 19:21:05 +01:00
David Goodwin
0344e729d0 see https://github.com/postfixadmin/postfixadmin/issues/704 - add documentation 2023-02-03 14:33:16 +00:00
David Goodwin
6ffbc9ffe4 update docs, see also https://github.com/postfixadmin/postfixadmin/issues/653 2022-09-01 09:23:07 +01:00
David Goodwin
6b83c2bb0f see https://github.com/postfixadmin/postfixadmin/issues/640 - password expiration doc update 2022-07-22 20:37:04 +01:00
David Goodwin
d3e101e9d8 Merge remote-tracking branch 'origin/master' into feature/dkim 2022-07-18 08:55:07 +01:00
David Goodwin
071ca11502 try to harden the example expiry script in DOCUMENTS/Password_Expiration.md#expiration-script - thanks to @jumecittu - see https://github.com/postfixadmin/postfixadmin/issues/619 2022-07-17 20:09:38 +01:00
Freddo
bced89c78c Update screenshots/README.md 2022-06-23 20:46:33 +02:00
Fredrik Falk
9e73025058 Add Domain Key handling 2022-06-23 20:40:06 +02:00
Christian Boltz
c4c7753740
SECURITY.txt: whitespace fixes 2022-06-06 18:35:28 +02:00
David Goodwin
aa1b80d173 add iterate_query for dovecot 2022-04-22 11:23:23 +01:00
Antony
c11f014e7c
update mysql_transport_maps.cf - translate 'virtual' to ':'
This makes sure our internal/virtual domains aren't caught in other transport map/nexthop

I needed this to safely implement transport rules like .fr => relay:[smtp.relay.com] without smashing our internal domains

So found out that transparent transport was ':' but took me a wile, so thought I could share.
2022-03-07 23:13:39 -04:00
Davide Beatrici
3934add185 DOCUMENTS: Configure "smtpd_sender_login_maps" in Dovecot & PostgreSQL example
A short explanation is also added.
2021-11-28 14:42:29 +01:00
David Goodwin
ed1dc78816
Update HASHING.md 2021-11-21 15:35:44 +00:00
Yudi Purwanto
9d65a5004c
Change notication to notification 2021-11-19 16:24:17 +07:00
Mirko Vogt
e467af14e1 default $transport_maps: exclude results where transport='virtual'
Modify the default query for $transport_maps to exclude all entries
which have the transport set to 'virtual'.

Postfixadmin sets the transport for domains to 'virtual' by default,
which is a rather unfortunate choice when enabling transport_maps, as
it will direct postfix to use the 'virtual' transport as defined in
master.cf, which most likely is not what the user intended.
The user most likely still wants emails being delivered to virtual
mailboxes, via the transport defined per $virtual_transport.

$virtual_transport however is only a fallback, which applies if
$transport_maps is either undefined or the table lookup it refers to
fails.

Hence excluding domains where transport is set to 'virtual', which
by default and therewith in most cases probably means all domains
ever created by postfixadmin.

This results in the query returning no results, leading to postfix
falling back to the transport defined in $virtual_transport.
2021-11-12 17:12:52 +01:00
David Goodwin
0b9b7db917 Merge remote-tracking branch 'origin/master' into feature-improve-pacrypt 2021-09-29 18:04:49 +01:00
Thanassis Zakopoulos
cbac254d60
Update Password_Expiration.md
This line should be like this:

        echo -e "Dear User, \n Your password will expire on ${RESULT[1]}" | mail -s "Password $INTERVAL days before expiration notication" -r $REPLY_ADDRESS  ${RESULT[0]} 


instead of 

        echo -e "Dear User, \n Your password will expire on ${RESULT[1]}" | mail -s "Password 30 days before expiration notication" -r $REPLY_ADDRESS  ${RESULT[0]} 

otherwise the subject will always be 30 days no matter what the $INTERVAL is
2021-07-23 12:56:03 +03:00
David Goodwin
28a4baf857 Merge remote-tracking branch 'origin/feature-improve-pacrypt' into feature-improve-pacrypt 2021-07-07 21:45:25 +01:00
David Goodwin
c3d3978daf
Update README.md
refresh screenshots with bootstrap theme etc.
2021-06-12 21:23:06 +01:00
David Goodwin
e9cea4d4c4 update screenshots perhaps 2021-06-12 21:09:42 +01:00
David Goodwin
8bd608e2f2
Update HASHING.md
reformat so it might look better in plain text
2021-05-24 20:56:07 +01:00
David Goodwin
659b242b59 merge fix 2021-05-15 21:28:19 +01:00
Andrey Miroshnichenko
9cda7f402c
Minor fixes of the password expiration checker script example. 2021-05-13 00:54:41 +03: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
cc2e049050 see: https://github.com/postfixadmin/postfixadmin/issues/468 - token docs on possible migration 2021-03-07 13:34:39 +00:00
David Goodwin
3979e17499 token updates 2021-01-29 21:19:07 +00:00
David Goodwin
154629d732 remove out of date bits 2021-01-29 21:18:47 +00:00
David Goodwin
cfe08d14f5 rename / merge shell script 2021-01-29 21:14:35 +00:00
David Goodwin
96d071dffd add something to the FAQ to help people find error messages 2021-01-26 19:06:19 +00:00
David Goodwin
7ec7f10290 reference config.local.php 2021-01-26 09:35:42 +00:00
David Goodwin
988d5f2996 add another link 2021-01-14 20:20:31 +00:00
David Goodwin
9e63152c0c try and document recent Dovecot permissions problems 2021-01-14 19:53:15 +00:00
David Goodwin
b7c247606f some initial documentation on password hashing for Postfixadmin, probably incomplete, probably contains errors but may be better than nothing 2021-01-12 22:05:48 +00:00
Seff
16848abb8b
Fixed linebreak typo in user_query SQL 2020-12-25 10:44:03 +05:30
David Goodwin
07805ec6c6
Update Postfix-Dovecot-Postgresql-Example.md
v v v v v vmail .....
2020-09-23 11:55:57 +01:00
David Goodwin
8658ed7083
Update Postfix-Dovecot-Postgresql-Example.md
typo fix via Raul (emailed).
2020-09-23 11:45:02 +01:00
David Goodwin
6edbda45e2
Merge pull request #321 from adrium/transport-map-support
POSTFIX_CONF.txt: Add transport map support
2020-03-01 20:02:39 +00:00
Veit
eb83a0aa3f Update dovecot documentation
- added quota2 table dict template for dovecot 1.2 and newer to dovecot
  documentation
2020-02-21 23:33:26 +01:00
Adrian
47618bf5a3 POSTFIX_CONF.txt: Add transport map support 2019-12-29 16:59:28 +01:00
Christian Boltz
06f57767bd
DOVECOT.TXT: update user_query for postgresql and some cleanup
- update postgresql user_query to include quota_rule
- drop partial user_query without quota_rule
- some whitespace fixes
2019-11-11 18:08:58 +01:00
Christian Boltz
125113d83c
POSTFIX_CONF.txt: make queries pgsql-compatible
... by changing WHERE ...=1 to WHERE ...='1' which should work with both
mysql and postgresql.

Reported by xpoint on IRC.
2019-11-05 23:15:07 +01:00
Akhil Jalagam
0f64f22a7e
a small mistake in user_query with quota
mistake in user_query with quota enabled for dovecot 1.2+
It took two days for me to find this issue.

Thank you,
Akhil
2019-08-23 17:28:36 +05:30
Akhil Jalagam
1941f970bd
Update DOVECOT.txt
a small mistake in documentation for imap quota.
2019-08-13 18:02:29 +05:30
David Goodwin
3fc5c74040 drop old / invalid postfix paramaeters - see #262 2019-04-12 19:52:53 +01:00
David Goodwin
9c476be17f move into DOCUMENTS 2018-12-28 19:20:40 +00:00
David Goodwin
2dc502e684 add postfix postgresql dovecot example to DOCUMENTS - see #136 2018-02-15 10:08:20 +00:00