Commit Graph

  • 9b961b7ba0 Fixed UP024 (os-error-alias): Replace aliased errors with `OSError` Teal Dulcet 2023-12-22 07:25:57 -0800
  • b13cef9b1d Fixed PIE790 (unnecessary-placeholder): Unnecessary `pass` statement Teal Dulcet 2023-12-22 07:25:50 -0800
  • 8b9d3ec094 Fixed W292 (missing-newline-at-end-of-file): No newline at end of file Teal Dulcet 2023-12-22 07:25:22 -0800
  • d1d3d08d70 Fixed B006 (mutable-argument-default): Do not use mutable data structures for argument defaults Teal Dulcet 2023-12-22 07:25:13 -0800
  • 922c59ddaf Fixed SIM212 (if-expr-with-twisted-arms): Use `with_lines if with_lines else []` instead of `[] if not with_lines else with_lines` Teal Dulcet 2023-12-22 07:24:58 -0800
  • 20a99c0ab8 Fixed UP041 (timeout-error-alias): Replace aliased errors with `TimeoutError` Teal Dulcet 2023-12-22 07:24:29 -0800
  • 54af4725f9 Fixed C404 (unnecessary-list-comprehension-dict): Unnecessary `list` comprehension (rewrite as a `dict` comprehension) Teal Dulcet 2023-12-22 07:24:11 -0800
  • fd4fcdaf53 Fixed E712 (true-false-comparison): Comparison to `False` should be `cond is False` or `if not cond:` Teal Dulcet 2023-12-22 07:23:57 -0800
  • d661d623dc Fixed RUF017 (quadratic-list-summation): Avoid quadratic list summation Teal Dulcet 2023-12-22 07:23:24 -0800
  • f621789298 Fixed SIM118 (in-dict-keys): Use `key in dict` instead of `key in dict.keys()` Teal Dulcet 2023-12-22 07:23:15 -0800
  • ec32e1d578 Fixed E703 (useless-semicolon): Statement ends with an unnecessary semicolon Teal Dulcet 2023-12-22 07:23:08 -0800
  • 57dcd4bb51 Fixed E713 (not-in-test): Test for membership should be `not in` Teal Dulcet 2023-12-22 07:22:55 -0800
  • 845393b6e0 Fixed RET503 (implicit-return): Missing explicit `return` at the end of function able to return non-`None` value Teal Dulcet 2023-12-22 07:22:35 -0800
  • c585c1ecf6 Fixed W291 (trailing-whitespace): Trailing whitespace Teal Dulcet 2023-12-22 07:22:21 -0800
  • e0e6f1081b Fixed C414 (unnecessary-double-cast-or-process): Unnecessary `list` call within `sorted()` Teal Dulcet 2023-12-22 07:22:00 -0800
  • 4999ed7b1c Fixed Q003 (avoidable-escaped-quote): Change outer quotes to avoid escaping inner quotes Teal Dulcet 2023-12-22 07:21:37 -0800
  • ca8f06d590 Fixed PLR1711 (useless-return): Useless `return` statement at end of function Teal Dulcet 2023-12-22 07:21:28 -0800
  • 57d05c1ab2 Fixed B007 (unused-loop-control-variable) Teal Dulcet 2023-12-22 07:21:10 -0800
  • c953e5784d Fixed C401 (unnecessary-generator-set): Unnecessary generator (rewrite as a `set` comprehension) Teal Dulcet 2023-12-22 07:21:04 -0800
  • 81a4da0181 Fixed SIM110 (reimplemented-builtin) Teal Dulcet 2023-12-22 07:20:48 -0800
  • 99d3929f99 Fixed E711 (none-comparison) Teal Dulcet 2023-12-22 07:20:28 -0800
  • 541f31b1ba Fixed FURB113 (repeated-append) Teal Dulcet 2023-12-22 07:20:10 -0800
  • e8d1c037cb Fixed SIM102 (collapsible-if): Use a single `if` statement instead of nested `if` statements Teal Dulcet 2023-12-22 07:20:00 -0800
  • 67b9d0b279 Fixed PLW0108 (unnecessary-lambda): Lambda may be unnecessary; consider inlining inner function Teal Dulcet 2023-12-22 07:19:47 -0800
  • 3d72c32b1d Fixed W605 (invalid-escape-sequence) Teal Dulcet 2023-12-22 07:19:40 -0800
  • 14a5613dc8 Fixed UP031 (printf-string-formatting): Use format specifiers instead of percent format Teal Dulcet 2023-12-22 07:19:06 -0800
  • 64540fbb44 Fixed UP034 (extraneous-parentheses): Avoid extraneous parentheses Teal Dulcet 2023-12-22 07:18:38 -0800
  • eefc0514b2 Fixed UP030 (format-literals): Use implicit references for positional format fields Teal Dulcet 2023-12-22 07:17:45 -0800
  • fba92de051 Fixed SIM108 (if-else-block-instead-of-if-exp) Teal Dulcet 2023-12-22 07:17:23 -0800
  • 51dc7615f7 Fixed RSE102 (unnecessary-paren-on-raise-exception): Unnecessary parentheses on raised exception Teal Dulcet 2023-12-22 07:16:15 -0800
  • 13b38cc04d Fixed F841 (unused-variable) Teal Dulcet 2023-12-22 07:15:14 -0800
  • 2b426851f9 Fixed UP032 (f-string): Use f-string instead of `format` call Teal Dulcet 2023-12-22 07:14:00 -0800
  • b7f70b17ac Fixed RET504 (unnecessary-assign) Teal Dulcet 2023-12-22 07:13:36 -0800
  • 6bfd1e5140 Fixed W293 (blank-line-with-whitespace): Blank line contains whitespace Teal Dulcet 2023-12-22 07:12:50 -0800
  • 555ecc1ebb Fixed PIE810 (multiple-starts-ends-with): Call `startswith` once with a `tuple` Teal Dulcet 2023-12-22 07:12:34 -0800
  • dd61844ced Fixed EM101 (raw-string-in-exception): Exception must not use a string literal, assign to variable first Teal Dulcet 2023-12-22 07:10:48 -0800
  • 49124cc9ca Fixed PLR6201 (literal-membership): Use a `set` literal when testing for membership Teal Dulcet 2023-12-22 07:10:25 -0800
  • cb922ec286 Fixed UP015 (redundant-open-modes): Unnecessary open mode parameters Teal Dulcet 2023-12-22 07:08:56 -0800
  • 0ee64f2fe8 Fixed F401 (unused-import) Teal Dulcet 2023-12-22 07:08:30 -0800
  • 5cf3379507
    Merge 89d50b35ef into 785c337fb3 Justus Wingert 2024-03-10 04:50:43 -0700
  • 785c337fb3
    Make reading of previous status check result more robust (#2347) KiekerJan 2024-03-10 12:27:04 +0100
  • 293d56c781
    Update javascript libraries used by control panel (#2351) KiekerJan 2024-03-10 12:26:33 +0100
  • 040d0cbb7c
    Update roundcube to 1.6.6 (#2360) KiekerJan 2024-03-10 12:24:29 +0100
  • 111468efb9
    Bump Nextcloud to v26.0.12 (#2310) Michael Heuberger 2024-03-11 00:22:51 +1300
  • 4ad679da47
    Issue-2354: Silence "wal" output on setup (#2356) John James Jacoby 2024-03-10 06:16:03 -0500
  • 84919fefa4
    Fix miab-munin.conf filter not capturing HTTP/2.0 (#2359) solomon-s-b 2024-03-10 13:15:25 +0200
  • a93e0b25a2 Bump Nextcloud to v26.0.12 Michael Heuberger 2023-10-08 22:34:33 +1300
  • 7a50e647b4 Empty user and password for backups for AWS Instance roles Hugo Galindo 2024-02-23 13:25:17 +1100
  • 5ef78978e4 update roundcube to 1.6.6 KiekerJan 2024-02-02 10:36:29 +0100
  • 250fb970bc
    Merge ab7a5d4e4d into e931e103fe ValdikSS 2024-01-30 15:25:32 -0500
  • 226cfba82f
    Update miab-munin.conf solomon-s-b 2024-01-29 19:22:54 +0200
  • 1c5c334e09
    Issue-2354: Silence "wal" output on setup John James Jacoby 2024-01-25 16:02:44 -0600
  • a2545522c6 remove logging reference KiekerJan 2024-01-10 20:05:13 +0100
  • c42cd4d898
    Merge b8a3f5066f into e931e103fe Paul 2024-01-10 10:20:37 -0800
  • 56d0075394
    Merge 8c6d822a49 into e931e103fe KiekerJan 2024-01-10 10:20:37 -0800
  • c4b975010b
    Merge dc6d66cc47 into e931e103fe KiekerJan 2024-01-10 10:20:37 -0800
  • 197753106f
    Merge 8884f41414 into e931e103fe KiekerJan 2024-01-10 10:20:37 -0800
  • 34cae62db3
    Merge 7ef135cb0a into e931e103fe Downtown Allday 2024-01-10 10:20:37 -0800
  • e931e103fe
    [security] SMTP smuggling: update short term fix (#2346) KiekerJan 2024-01-10 15:34:06 +0100
  • 9e4d62fa81 update javascript libraries used by control panel KiekerJan 2024-01-05 13:56:53 +0100
  • a498418b06 configurable TTL bilogic 2024-01-05 16:15:42 +0800
  • d394c2f51d autoformat bilogic 2024-01-05 16:13:50 +0800
  • 14db287766 make reading of previous status check result more robust KiekerJan 2024-01-03 18:02:34 +0100
  • d6890457cc
    Merge 893a7274d2 into 7646095b94 qyz 2023-12-31 22:36:55 +0800
  • 771ff78a7e update, add silent-discard as recommended by postfix KiekerJan 2023-12-30 11:09:58 +0100
  • 62d91faefe update short term fix according to postfix advisory KiekerJan 2023-12-29 11:48:21 +0100
  • 045821e585 Started porting in version 67 AiutoPcAmico 2023-12-28 16:49:06 +0100
  • 1cd24ab416
    Merge 9ee7bbf78a into 7646095b94 captainwasabi 2023-12-22 09:52:07 -0800
  • 7646095b94 v67 v67 Joshua Tauberer 2023-12-22 08:56:27 -0500
  • faf23f150c Guard against SMTP smuggling Joshua Tauberer 2023-12-22 08:53:48 -0500
  • 7334dde805 setup/preflight.sh: fix some minor shellcheck complaints Bastian Bittorf 2023-12-20 20:08:17 +0100
  • 20b205f631
    Merge 2a0cd8bfd8 into 8e4e9add78 Michael Heuberger 2023-12-19 15:27:05 -0600
  • 2a0cd8bfd8 Place the PHP version into a variable (#2307) Michael Heuberger 2023-10-01 18:13:27 +1300
  • 8e4e9add78 Version 66 v66 Joshua Tauberer 2023-12-17 16:29:30 -0500
  • 92340d129f
    Fixed broken relative path fftux 2023-12-16 01:16:38 -0500
  • 8b32561a19 Modified SMTPd banner AiutoPcAmico 2023-12-06 00:12:08 +0100
  • 39861ea102 added systemd-resolved install AiutoPcAmico 2023-12-05 23:12:23 +0100
  • 17bee26734 changed PHP version in nginx configuration file AiutoPcAmico 2023-12-05 22:04:39 +0100
  • a98375bc75 changed version AiutoPcAmico 2023-12-05 22:02:54 +0100
  • 6bfbfbda90 Disabled owncloud, not needed and incompatible with php 8.2 AiutoPcAmico 2023-12-05 21:56:53 +0100
  • 3795904150 Added venv for python3 AiutoPcAmico 2023-12-05 21:51:38 +0100
  • f5e583d76d Modify setup scripts to compatibility with Debian 12. Expecially changed apt packages AiutoPcAmico 2023-12-05 21:45:43 +0100
  • f0bdfb2a1f
    Update README.md AiutoPcAmico 2023-12-05 20:50:50 +0100
  • 2e8a77fc7b
    Update README.md AiutoPcAmico 2023-12-05 20:50:27 +0100
  • c26886f7f1
    Update README.md AiutoPcAmico 2023-12-05 20:49:29 +0100
  • fa8c7ddef5
    Upgrade roundcube to 1.6.5 (#2329) KiekerJan 2023-12-04 15:23:36 +0100
  • 6d6ce25e03
    Allow specifying another repo to install from in bootstrap.sh (#2334) bilogic 2023-12-04 22:22:54 +0800
  • 371f5bc1b2 Fix virtualenv creation reported in #2335 Joshua Tauberer 2023-11-28 07:24:30 -0500
  • 8d4a811805 allow specifying another repo bilogic 2023-11-25 07:54:17 +0800
  • 9a00880a20 Update webmail.sh Crag-Monkey 2023-11-24 09:10:22 -0600
  • 400838b790 Use sshd -T instead of directly reading the configuration files KiekerJan 2023-11-05 21:45:11 +0100
  • d976a8b838 upgrade roundcube to 1.6.5 KiekerJan 2023-11-05 21:26:44 +0100
  • 2907639600
    Add install command line for containers (LXC/Docker) Christophe WEILAND 2023-11-04 13:43:30 +0100
  • d749bd0ab6
    Update status_checks.py Dan Bolser 2023-11-02 15:55:23 +0000
  • 7ef135cb0a Merge remote-tracking branch 'upstream/main' into php8.1-docker-method Downtown Allday 2023-10-29 13:27:05 -0400
  • 9ab06013b9 Change accountname to nextcloud. Include cleanup of carddav database KiekerJan 2023-10-28 20:14:35 +0200
  • 0314554207 Version 65 v65 Joshua Tauberer 2023-10-27 06:02:22 -0400
  • 46d55f7866
    Update zpush.sh to version 2.7.1 (#2315) matidau 2023-10-27 00:04:13 +1100
  • 2bbc317873
    Update Roundcube to 1.6.4 (#2317) KiekerJan 2023-10-26 15:03:29 +0200
  • b716c1d37b
    Update webmail.sh bwmravec 2023-10-26 11:48:05 +0200