Commit Graph

4590 Commits (b52fa1146acc13db5de230d12b55f01340a9a7bd)

Author SHA1 Message Date
ValdikSS b52fa1146a
Unset Postfix smtpd_tls_session_cache_database, reduce disk writes (#3981)
Postfix may update smtpd_tls_session_cache_database quite frequently even on not busy server, which leads to unnecessary (excessive) disk writes, which is an issue for SSD.
Postfix documentation suggests not to use this parameter anymore since there's another, better TLS session resumption method available.

>As of Postfix 2.11 the preferred mechanism for session resumption is RFC 5077 TLS session tickets, which don't require server-side storage. Consequently, for Postfix ≥ 2.11 this parameter should generally be left empty.

http://www.postfix.org/postconf.5.html#smtpd_tls_session_cache_database
2021-02-16 11:01:27 +01:00
andryyy d29a671cf4 Merge branch 'master' of github.com:mailcow/mailcow-dockerized 2021-02-14 21:33:50 +01:00
andryyy 666d344322
[Web] Remove XMPP site when disabling XMPP 2021-02-14 21:33:43 +01:00
Timo 4dc789a1bd
Merge pull request #3983 from virre131/master
[Web] lang.sv.json
2021-02-14 12:57:27 +01:00
Victor Nyberg 8c166eb982 [Web] lang.sv.json 2021-02-14 13:35:52 +02:00
andryyy 9c4cb21df6
[Web] Show JID example when editing a domain 2021-02-14 10:48:18 +01:00
andryyy 9febe4e86b [Ejabberd] Require s2s TLS, enforce protocols and ciphers, move admin UI (WIP) 2021-02-14 10:47:53 +01:00
andryyy 38e5dc37d2
[Rspamd] Edit RBL 2021-02-14 10:47:05 +01:00
andryyy f48bbfaa48 Merge branch 'master' of github.com:mailcow/mailcow-dockerized 2021-02-13 18:21:40 +01:00
andryyy d67dc55293
[Nginx] Be more explicit with server names 2021-02-13 18:21:32 +01:00
Victor Nyberg 5b0b84ab09
[Web] lang.sv.json (#3976) 2021-02-13 09:34:42 +01:00
andryyy fee4b50b9b
[Web] Do not print invalid date 2021-02-12 21:22:05 +01:00
andryyy 02fd0b03f6
[Update] Fix moving old jabber site 2021-02-12 21:17:57 +01:00
andryyy 67bedb3fb6
[Web] Fix administrator badge for xmpp users, fixes #3977 2021-02-12 20:07:08 +01:00
andryyy 8c6b512f05
[mailcow] Move ejabberd site to last available site 2021-02-12 19:26:49 +01:00
andryyy 63160890e0
[Web] Fix XMPP site #2 2021-02-12 12:10:49 +01:00
andryyy ee87e4ab77
[Web] Fix XMPP site 2021-02-12 11:50:46 +01:00
andryyy 5809e5b82e
[mailcow] Fix C22 -> C2S 2021-02-12 11:22:43 +01:00
andryyy f2453e316f
[Ejabberd] More fixes for Ejabberd integration (WIP) 2021-02-12 10:04:19 +01:00
andryyy 2bac898a15
[Ejabberd] Update image 2021-02-11 21:12:20 +01:00
andryyy 38c5470d54
[Ejabberd] Various fixes, sorry (still WIP) 2021-02-11 21:09:46 +01:00
andryyy 462aa0a764
[Ejabberd] Fix bootstrapping, ejabberd could not be enabled 2021-02-11 20:46:13 +01:00
andryyy 9c1bd5c18b
[Ejabberd] Add new Dockerfile 2021-02-11 15:24:49 +01:00
andryyy f69f6b84f3
[Git] Sort gitignore 2021-02-11 15:24:34 +01:00
andryyy 04bd21663c
[Web] Minor fixes 2021-02-11 14:41:00 +01:00
Tobias Krischer e3546fe90c
move white/blacklist form above the table (#3975)
* move white/blacklist form above the table

* move white/blacklist form above the table for domain edit
2021-02-11 13:09:19 +01:00
andryyy 386d6109c8 Merge branch 'master' of github.com:mailcow/mailcow-dockerized 2021-02-11 09:36:18 +01:00
andryyy 628e699538
[Helper] Add ejabberd to build overrides 2021-02-11 09:36:14 +01:00
andryyy 5203beda01
[Config] Add XMPP ports 2021-02-11 09:35:48 +01:00
andryyy 21bc7d02d2 [Compose] Add XMPP 2021-02-11 09:35:32 +01:00
andryyy d146ee12ad
[Update] Add XMPP ports 2021-02-11 09:35:19 +01:00
andryyy 06c89bac7d
[Web] Implement XMPP
[Web] Various small fixes and enhancements
2021-02-11 09:34:21 +01:00
andryyy e51479700b
[Web] Show XMPP status in /debug 2021-02-11 09:34:08 +01:00
andryyy 77ceb5e8ad
[Web] Show XMPP status for user 2021-02-11 09:33:46 +01:00
andryyy 5aaf00bd29
[Git] Ignore autogen ejabberd 2021-02-11 09:33:19 +01:00
andryyy fa9c584912
[PHP-FPM] Add sleep to loop 2021-02-11 09:33:02 +01:00
andryyy 29bcd94b7c
[Rspamd] Increase spam symbol weight 2021-02-11 09:32:47 +01:00
Felix Kaechele 31805f1656
[Web] Implement all supported dovecot password schemas (#3974)
When migrating from other Dovecot based installations it can be very
convenient to just copy over existing hashed passwords.
However, mailcow currently only supports a limited number of password
schemes.

This commit implements all password schemes that do not require
challenge/response or OTP mechanisms.

A convenient way to generate the regex with all supported schemas is
`docker-compose exec dovecot-mailcow doveadm pw -l | awk -F' ' '{printf
"/^{("; for(i=1;i<=NF-1;i++){printf "%s%s", sep, $i; sep="|"}; printf
")}/i\n"}'`

Note that this will also include unsupported challenge/response and OTP
schemas.

Furthermore this increases the vsz_limit for the dovecot auth service to
2G for the use of ARGON2I and ARGON2ID schemas.

Signed-off-by: Felix Kaechele <felix@kaechele.ca>
2021-02-11 09:31:53 +01:00
Peter 6286cda396
Merge pull request #3970 from guiguir68/master
Added missing french parts, based on the english file
2021-02-08 16:05:57 +01:00
Dmitriy Alekseev 32b6495ea3
[Dovecot] Add Russian and Ukrainian folders (#3967)
Update dovecot.conf
2021-02-08 16:09:23 +02:00
guiguir68 c55baed20b Added missing french parts, based on the english file 2021-02-08 14:36:23 +01:00
Timo b7546220c1
Merge pull request #3968 from myOmikron/myOmikron-docs
[docs] /api/v1/edit/mailbox Changed type of items parameter to list
2021-02-07 01:05:34 +01:00
myOmikron 7ad07a8fdd Changed type of items parameter to list 2021-02-07 00:16:27 +01:00
Dmitriy Alekseev a2783d44ad
[SOGo] Add custom favicon (#3957)
* [SOGo] Add custom favicon

* Update docker-compose.yml
2021-01-31 09:58:08 +01:00
Dmitriy Alekseev 0a102444fc
[Rspamd] Add FUZZY_SPAM_MISMATCH (#3958)
Remove score from FUZZY_HAM_MISMATCH
2021-01-31 09:56:47 +01:00
ValdikSS 0a0d9e873e
Use tmpfs for watchdog's /tmp, reduce disk writes (#3923) 2021-01-31 09:45:34 +01:00
JD 1bc0f0fa6b
[Api docs] Add sogo_visible property to alias endpoints (#3956) 2021-01-30 15:48:31 +01:00
andryyy 0d1ea05ae2
[Git] Ignore custom SOGo logo
[SOGo] Slightly more contrast
2021-01-29 07:37:37 +01:00
andryyy 01b2179d56
[SOGo] Lighter logo 2021-01-28 19:42:52 +01:00
andryyy cabdd67b8d
[Dovecot] Update image 2021-01-28 16:03:29 +01:00