1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2025-03-30 23:37:05 +00:00

Commit Graph

  • cacf6d2006 Fixed E721 (type-comparison): Use is and is not for type comparisons, or isinstance() for isinstance checks Teal Dulcet 2023-12-23 05:32:34 -0800
  • f0377dd59e Fixed SIM105 (suppressible-exception) Teal Dulcet 2023-12-23 05:26:32 -0800
  • 6a47133e3f Fixed F811 (redefined-while-unused): Redefinition of unused sys from line 10 Teal Dulcet 2023-12-23 05:24:59 -0800
  • 7f456d8e8b Fixed ISC002 (multi-line-implicit-string-concatenation): Implicitly concatenated string literals over multiple lines Teal Dulcet 2023-12-23 05:23:58 -0800
  • e466b9bb53 Fixed RUF005 (collection-literal-concatenation) Teal Dulcet 2023-12-23 05:20:45 -0800
  • 0e9193651d Fixed PLW1514 (unspecified-encoding): open in text mode without explicit encoding argument Teal Dulcet 2023-12-23 05:07:25 -0800
  • a02b59d4e4 Fixed F401 (unused-import): socket.timeout imported but unused Teal Dulcet 2023-12-22 07:42:38 -0800
  • 15bddcbc39 Fixed RUF010 (explicit-f-string-type-conversion): Use explicit conversion flag Teal Dulcet 2023-12-22 07:42:13 -0800
  • c719fce40a Fixed UP032 (f-string): Use f-string instead of format call Teal Dulcet 2023-12-22 07:41:21 -0800
  • 3111cf56de Fixed EM102 (f-string-in-exception): Exception must not use an f-string literal, assign to variable first Teal Dulcet 2023-12-22 07:40:31 -0800
  • 6508d47da1 Fixed C405 (unnecessary-literal-set): Unnecessary list literal (rewrite as a set literal) Teal Dulcet 2023-12-22 07:26:06 -0800
  • 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
  • c884d63dda QA: extent tick wait from 1ms to 100ms to avoid ElementNotInteractableException downtownallday 2024-03-05 08:58:53 -0500
  • da2d88e4f4 Fix invalid escape sequences downtownallday 2024-03-05 08:56:39 -0500
  • 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
  • b54aa9d5e9 Changed version of AiutoPcAmico Porting AiutoPcAmico 2024-01-28 20:53:37 +0100
  • ead119c68e
    Merge pull request #5 from AiutoPcAmico/v67.2.0 AiutoPcAmico 2024-01-28 20:46:07 +0100
  • 3bb9888bbe
    Merge pull request #4 from mail-in-a-box/main AiutoPcAmico 2024-01-28 20:41:38 +0100
  • 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
  • 34cae62db3
    Merge 7ef135cb0a into e931e103fe Downtown Allday 2024-01-10 10:20:37 -0800
  • 38ad0d3cd6 Merge branch 'main' of https://github.com/mail-in-a-box/mailinabox downtownallday 2024-01-10 09:52:53 -0500
  • 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
  • 0384e52206 Updated version number and ReadMe file AiutoPcAmico 2023-12-31 11:43:57 +0100
  • 15dc71a5ef Fixed DNSStubListener AiutoPcAmico 2023-12-30 21:51:29 +0100
  • 361e058dd4 Removed systemd-resolved package installation. It seems that Debian don't uses systemd-resolved by default, so I don't need to install. We need only to modify the resolv.conf file. AiutoPcAmico 2023-12-30 20:48:07 +0100
  • 771ff78a7e update, add silent-discard as recommended by postfix KiekerJan 2023-12-30 11:09:58 +0100
  • 73174d5979 changed footer AiutoPcAmico 2023-12-29 16:47:43 +0100
  • 78fa747c23 modified version AiutoPcAmico 2023-12-29 16:39:57 +0100
  • 47c7f4be22 Updated ReadMe AiutoPcAmico 2023-12-29 16:14:35 +0100
  • a9f3969d86 Added Installation guide Removed warning about install failure AiutoPcAmico 2023-12-29 16:13:01 +0100
  • 8b4f8140f9 moved variable greylistDisabled to another file Re-Added installation of systemd-resolved, but moved after bind9 installation AiutoPcAmico 2023-12-29 16:01:50 +0100
  • 6e3ffd5b22 Merge branch 'main' of https://github.com/AiutoPcAmico/debian-mailinabox AiutoPcAmico 2023-12-29 14:23:51 +0100
  • f899a09fe2 Added some packages needed for installation AiutoPcAmico 2023-12-29 14:23:41 +0100
  • a4f53e3ac0
    Update README.md AiutoPcAmico 2023-12-29 13:53:26 +0100
  • 8531b63c25 DEVELOPING: remove systemd AiutoPcAmico 2023-12-29 13:51:56 +0100
  • edbded7a6f Resolved a little problem with variables AiutoPcAmico 2023-12-29 13:23:23 +0100
  • 62d91faefe update short term fix according to postfix advisory KiekerJan 2023-12-29 11:48:21 +0100
  • ea9af9ac4a Fixed typo AiutoPcAmico 2023-12-29 11:43:09 +0100
  • 029f68b97f Modified release checks AiutoPcAmico 2023-12-29 11:41:00 +0100
  • 5c81962001 Updated ReadMe and Changelog files Modified project versioning AiutoPcAmico 2023-12-29 10:33:31 +0100
  • 6b2e165f0d - Added disable greylist functions - removed bootstrap script, I don't need because cloning repository - Changed default mail-in-a-box homepage AiutoPcAmico 2023-12-29 09:41:44 +0100
  • e541686dcb Updating informations AiutoPcAmico 2023-12-28 18:10:27 +0100
  • 8e3fc28112 Merge remote-tracking branch 'upstream/main' AiutoPcAmico 2023-12-28 17:53:48 +0100
  • 6af594f145 Started updating to V67 AiutoPcAmico 2023-12-28 17:39:15 +0100