Commit Graph

235 Commits (bbf0ac5d477c866281ae07bcc13dfcffc637c14e)

Author SHA1 Message Date
Florent Daigniere 052f8e41ba Upgrade to snuffleupagus 0.9.0
Florent Daigniere bf0c345bb9 Fix snappymail
Florent Daigniere 108958cabb drop privs better
Alexander Graf 15ba442477
Duh
Alexander Graf 5a99ab316d
Duh
Alexander Graf 373488148b
Remove useless style for larry skin
Alexander Graf c38e6aae4e
Add button to mailu-admin in roundcube task menu
bors[bot] 4315227215
Merge
2587: fix roundcube/sieve r=mergify[bot] a=nextgens

## What type of PR?

bug-fix

## What does this PR do?

Without this snuffleupagus is throwing a tantrum on ini_get(), when saving a sieve filter from roundcube.

```
[17-Dec-2022 13:44:08] WARNING: [pool php] child 21853 said into stderr: "NOTICE: PHP message: PHP Fatal error:  [snuffleupagus][0.0.0.0][disabled_function][drop] Ab
orted execution on call of the function 'ini_get', because its argument '$option' content (suhosin.request.max_vars) matched a rule in /var/www/roundcube/plugins/man
agesieve/lib/Roundcube/rcube_sieve_engine.php on line 532"
```

### Related issue(s)

## Prerequisites
Before we can consider review and merge, please make sure the following list is done and checked.
If an entry in not applicable, you can check it or remove it from the list.

- [ ] In case of feature or enhancement: documentation updated accordingly
- [ ] Unless it's docs or a minor change: add [changelog](https://mailu.io/master/contributors/workflow.html#changelog) entry file.


Co-authored-by: Florent Daigniere <nextgens@freenetproject.org>
bors[bot] 251db0b1af
Merge
2562: Dynamic address resolution everywhere r=mergify[bot] a=nextgens

## What type of PR?

enhancement

## What does this PR do?

Use dynamic address resolution everywhere.
Derive a new key for admin/SECRET_KEY
Cleanup the environment

This should allow restarting containers.

### Related issue(s)
- closes 
- closes 
- closes 

## Prerequisites
Before we can consider review and merge, please make sure the following list is done and checked.
If an entry in not applicable, you can check it or remove it from the list.

- [x] In case of feature or enhancement: documentation updated accordingly
- [x] Unless it's docs or a minor change: add [changelog](https://mailu.io/master/contributors/workflow.html#changelog) entry file.


Co-authored-by: Florent Daigniere <nextgens@freenetproject.org>
Florent Daigniere 170b12baf0 fix sieve
fastlorenzo 2fa8dcb51d
Fixed roundcube carddav module
Signed-off-by: fastlorenzo <git@bernardi.be>
Florent Daigniere 4e3874b0c1 Enable dynamic resolution of hostnames
Florent Daigniere 8150ca77b2 this isn't required anymore either
Florent Daigniere e927426dfa Turns out that php81-ctype is required by roundcube
see https://github.com/roundcube/roundcubemail/issues/7049
Florent Daigniere c4595fddca Change perms first
Florent Daigniere 9566c297d9 Don't do it as root
Florent Daigniere 63a12d9857 changes requested by ghost
Florent Daigniere 9fa3a3e0c7 doc
Florent Daigniere 9e61a33cb2 Merge branch 'master' of https://github.com/Mailu/Mailu into webmail-hardening
Florent Daigniere ab852772f9 Bump snappymail to 2.21.3
Florent Daigniere 28d720bbc9 As requested
Florent Daigniere 840b2bd9df block o:0:{} too
Florent Daigniere 017ea5298e typo
Florent Daigniere 2a4f6836cf protect unserialize()
Florent Daigniere e5ab9821f9 Add snuffleupagus
This seems to work in my limited testing.
Florent Daigniere 56a106ad60 Only one labs section in the conf file
Florent Daigniere 071ad15a97 Better snappymail defaults
Florent Daigniere 6b2cb95a7d This is not required anymore
Florent Daigniere a508eeaafb Use /dev/shm for tmp
Florent Daigniere f2f430af5d Redirect the logs where they belong
Florent Daigniere 06c0c78956 Hardening: run the http and php as different users
Florent Daigniere 7ebac75045 fix tests
Florent Daigniere f3a91d1a18 enable APCu
Florent Daigniere 225322fe88 More hardening
Florent Daigniere ad17b10c8e redirects should be HTTP/302
Florent Daigniere 1379a58352 Basic hardening
Florent Daigniere 7e722cd0c3 fix : ensure rainloop uses _ADDRESS
Florent Daigniere 224f2f4508 This isn't used anymore
The healthcheck is now done by fpm
Florent Daigniere a8d405cb48 Verify the gpg signature of webmails
Florent Daigniere 1edef755f1 Fix bug
Florent Daigniere dc9e2a3e70 Upgrade Snappymail to 2.21 and merge the webmail containers
Dimitri Huisman 0e5443a867
Update php8 to php81. Update snappymail to 2.19.4
Dimitri Huisman 59c5b152b2
Switch to using set -euxo pipefail for better error handling
-e immediately exit when a command fails. No further commands are processed.
-o pipefail, if a series of piped commands fail, do NOt return the last commands returncode, but DO return the return code of the failing command in the pipeline series
-u, raise an error when an unset variable is used. Not using this results in an empty value being used and the script being executed differently without you knowing why.
-x, print each command before executing it. Actual arguments are expanded. So you see the command with the actual parameter values. This is printed in red in the buildx log output.
Dimitri Huisman f6cdfb3392
Allow Healthcheck requests over IPv6
Dimitri Huisman 2a894cb15d
Process nextgens review remarks
Dimitri Huisman 92f270c94e
Update the webmail images:
Roundcube
  - Switch to base image (alpine)
  - Switch to php-fpm
SnappyMail
  - Switch to base image
  - Upgrade php7 to php8.
Vincent Kling 23d06a5761 Fix a bunch of typos
bors[bot] 04a932bf66
Merge
2423: Correct the extension of files used for Roundcube overrides r=mergify[bot] a=DannyDaemonic

This adds ".inc.php" files to the included overrides while maintaining support for existing ".inc" files previously included via overrides. It also updates the corresponding documentation.

Roundcube itself uses "inc.php" files and these overrides are expected to match that format. Switching to "inc.php" both tells the user that these need to be proper php files and conveys they are used for changing the same settings that Roundcube's inc.php files modify.

## What type of PR?

bug-fix, documentation

## What does this PR do?

- Adds ".inc.php" to the list of include files being built in roundcube's start.py
- Updates override information in the faq section: [How can I override settings?](https://github.com/Mailu/Mailu/blob/master/docs/faq.rst#how-can-i-override-settings)
- Includes changelog recommends using .inc.php moving forward

## Related issue(s)
- This addresses confusion seen in issues like: 

## Prerequisites
Before we can consider review and merge, please make sure the following list is done and checked.
If an entry in not applicable, you can check it or remove it from the list.

- [x] In case of feature or enhancement: documentation updated accordingly
- [x] Unless it's docs or a minor change: add [changelog](https://mailu.io/master/contributors/workflow.html#changelog) entry file.


Co-authored-by: Danny Daemonic <DannyDaemonic@gmail.com>
Dimitri Huisman dd3f1a3376 Switch to mode=min for GHA cache for docker buildx to prevent ratelimiting in GHA workflow
Danny Daemonic 3eeb7962c2 Correct the extension used for Roundcube overrides
This adds ".inc.php" files to the included overrides while maintaining
support for existing ".inc" files previously included via overrides.

Roundcube itself uses "inc.php" files and these overrides are expected
to match that format. Switching to "inc.php" both tells the user that
these need to be proper php files and conveys they are used for changing
the same settings that Roundcube's inc.php files modify.