Revīziju grafs

2028 Revīzijas (main)
 

Autors SHA1 Ziņojums Datums
Joshua Tauberer 14d0e20eab CHANGELOG entries pirms 6 dienas
Joshua Tauberer fa72e015ee Update SMTP Smuggling protection to the 'long-term fix' pirms 6 dienas
KiekerJan 1a239c55bb
More robust reading of sshd configuration (#2330) pirms 6 dienas
Gio 9b450469eb
Mail guide: OS X -> macOS (#2306) pirms 6 dienas
jvolkenant 163b1a297e
Silence "wal" output on setup using hide_output (#2368) pirms 6 dienas
Joshua Tauberer 18b8f9ab4b Revert "Allow customizations to Roundcube settings to persist between updates by including a configuration override file, if it exists (#2333)" pirms 3 nedēļām
KiekerJan 0b1d92388a
Take spamhaus return codes into account in status check and postfix config (#2332) pirms 3 nedēļām
Crag-Monkey 1b8cdeb644
Allow customizations to Roundcube settings to persist between updates by including a configuration override file, if it exists (#2333) pirms 3 nedēļām
Bastian Bittorf 1053340124
setup/preflight.sh: fix some minor shellcheck complaints (#2342) pirms 3 nedēļām
Joshua Tauberer 315d2cf691
Fixed errors found by the Ruff Python linter (#2343) pirms 3 nedēļām
Teal Dulcet dbc2b5eee0 Fixed ISC003 (explicit-string-concatenation): Explicitly concatenated string should be implicitly concatenated pirms 3 nedēļām
Teal Dulcet 775a4223de Fixed F821 (undefined-name): Undefined name `e` pirms 3 nedēļām
Teal Dulcet 618c466b84 Fixed SIM114 (if-with-same-arms): Combine `if` branches using logical `or` operator pirms 3 nedēļām
Teal Dulcet a32354fd91 Fixed PLR5501 (collapsible-else-if): Use `elif` instead of `else` then `if`, to reduce indentation pirms 3 nedēļām
Teal Dulcet 1d79f9bb2b Fixed PERF401 (manual-list-comprehension): Use a list comprehension to create a transformed list pirms 3 nedēļām
Teal Dulcet cacf6d2006 Fixed E721 (type-comparison): Use `is` and `is not` for type comparisons, or `isinstance()` for isinstance checks pirms 3 nedēļām
Teal Dulcet f0377dd59e Fixed SIM105 (suppressible-exception) pirms 3 nedēļām
Teal Dulcet 6a47133e3f Fixed F811 (redefined-while-unused): Redefinition of unused `sys` from line 10 pirms 3 nedēļām
Teal Dulcet 7f456d8e8b Fixed ISC002 (multi-line-implicit-string-concatenation): Implicitly concatenated string literals over multiple lines pirms 3 nedēļām
Teal Dulcet e466b9bb53 Fixed RUF005 (collection-literal-concatenation) pirms 3 nedēļām
Teal Dulcet 0e9193651d Fixed PLW1514 (unspecified-encoding): `open` in text mode without explicit `encoding` argument pirms 3 nedēļām
Teal Dulcet a02b59d4e4 Fixed F401 (unused-import): `socket.timeout` imported but unused pirms 3 nedēļām
Teal Dulcet 15bddcbc39 Fixed RUF010 (explicit-f-string-type-conversion): Use explicit conversion flag pirms 3 nedēļām
Teal Dulcet c719fce40a Fixed UP032 (f-string): Use f-string instead of `format` call pirms 3 nedēļām
Teal Dulcet 3111cf56de Fixed EM102 (f-string-in-exception): Exception must not use an f-string literal, assign to variable first pirms 3 nedēļām
Teal Dulcet 6508d47da1 Fixed C405 (unnecessary-literal-set): Unnecessary `list` literal (rewrite as a `set` literal) pirms 3 nedēļām
Teal Dulcet 9b961b7ba0 Fixed UP024 (os-error-alias): Replace aliased errors with `OSError` pirms 3 nedēļām
Teal Dulcet b13cef9b1d Fixed PIE790 (unnecessary-placeholder): Unnecessary `pass` statement pirms 3 nedēļām
Teal Dulcet 8b9d3ec094 Fixed W292 (missing-newline-at-end-of-file): No newline at end of file pirms 3 nedēļām
Teal Dulcet d1d3d08d70 Fixed B006 (mutable-argument-default): Do not use mutable data structures for argument defaults pirms 3 nedēļām
Teal Dulcet 922c59ddaf Fixed SIM212 (if-expr-with-twisted-arms): Use `with_lines if with_lines else []` instead of `[] if not with_lines else with_lines` pirms 3 nedēļām
Teal Dulcet 20a99c0ab8 Fixed UP041 (timeout-error-alias): Replace aliased errors with `TimeoutError` pirms 3 nedēļām
Teal Dulcet 54af4725f9 Fixed C404 (unnecessary-list-comprehension-dict): Unnecessary `list` comprehension (rewrite as a `dict` comprehension) pirms 3 nedēļām
Teal Dulcet fd4fcdaf53 Fixed E712 (true-false-comparison): Comparison to `False` should be `cond is False` or `if not cond:` pirms 3 nedēļām
Teal Dulcet d661d623dc Fixed RUF017 (quadratic-list-summation): Avoid quadratic list summation pirms 3 nedēļām
Teal Dulcet f621789298 Fixed SIM118 (in-dict-keys): Use `key in dict` instead of `key in dict.keys()` pirms 3 nedēļām
Teal Dulcet ec32e1d578 Fixed E703 (useless-semicolon): Statement ends with an unnecessary semicolon pirms 3 nedēļām
Teal Dulcet 57dcd4bb51 Fixed E713 (not-in-test): Test for membership should be `not in` pirms 3 nedēļām
Teal Dulcet 845393b6e0 Fixed RET503 (implicit-return): Missing explicit `return` at the end of function able to return non-`None` value pirms 3 nedēļām
Teal Dulcet c585c1ecf6 Fixed W291 (trailing-whitespace): Trailing whitespace pirms 3 nedēļām
Teal Dulcet e0e6f1081b Fixed C414 (unnecessary-double-cast-or-process): Unnecessary `list` call within `sorted()` pirms 3 nedēļām
Teal Dulcet 4999ed7b1c Fixed Q003 (avoidable-escaped-quote): Change outer quotes to avoid escaping inner quotes pirms 3 nedēļām
Teal Dulcet ca8f06d590 Fixed PLR1711 (useless-return): Useless `return` statement at end of function pirms 3 nedēļām
Teal Dulcet 57d05c1ab2 Fixed B007 (unused-loop-control-variable) pirms 3 nedēļām
Teal Dulcet c953e5784d Fixed C401 (unnecessary-generator-set): Unnecessary generator (rewrite as a `set` comprehension) pirms 3 nedēļām
Teal Dulcet 81a4da0181 Fixed SIM110 (reimplemented-builtin) pirms 3 nedēļām
Teal Dulcet 99d3929f99 Fixed E711 (none-comparison) pirms 3 nedēļām
Teal Dulcet 541f31b1ba Fixed FURB113 (repeated-append) pirms 3 nedēļām
Teal Dulcet e8d1c037cb Fixed SIM102 (collapsible-if): Use a single `if` statement instead of nested `if` statements pirms 3 nedēļām
Teal Dulcet 67b9d0b279 Fixed PLW0108 (unnecessary-lambda): Lambda may be unnecessary; consider inlining inner function pirms 3 nedēļām