1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2025-08-04 04:20:53 +00:00
Commit Graph

1994 Commits

Author SHA1 Message Date
Teal Dulcet
850ad325e2 Fixed B006 (mutable-argument-default): Do not use mutable data structures for argument defaults 2023-12-22 07:25:13 -08:00
Teal Dulcet
7981859997 Fixed SIM212 (if-expr-with-twisted-arms): Use with_lines if with_lines else [] instead of [] if not with_lines else with_lines 2023-12-22 07:24:58 -08:00
Teal Dulcet
7035197fd4 Fixed UP041 (timeout-error-alias): Replace aliased errors with TimeoutError 2023-12-22 07:24:29 -08:00
Teal Dulcet
3ce1d97052 Fixed C404 (unnecessary-list-comprehension-dict): Unnecessary list comprehension (rewrite as a dict comprehension) 2023-12-22 07:24:11 -08:00
Teal Dulcet
10f59d70d1 Fixed E712 (true-false-comparison): Comparison to False should be cond is False or if not cond: 2023-12-22 07:23:57 -08:00
Teal Dulcet
3013907425 Fixed RUF017 (quadratic-list-summation): Avoid quadratic list summation 2023-12-22 07:23:24 -08:00
Teal Dulcet
6fb9c7a945 Fixed SIM118 (in-dict-keys): Use key in dict instead of key in dict.keys() 2023-12-22 07:23:15 -08:00
Teal Dulcet
a484a65620 Fixed E703 (useless-semicolon): Statement ends with an unnecessary semicolon 2023-12-22 07:23:08 -08:00
Teal Dulcet
f8005307a7 Fixed E713 (not-in-test): Test for membership should be not in 2023-12-22 07:22:55 -08:00
Teal Dulcet
dc8ecfefd9 Fixed RET503 (implicit-return): Missing explicit return at the end of function able to return non-None value 2023-12-22 07:22:35 -08:00
Teal Dulcet
44bc1a8d37 Fixed W291 (trailing-whitespace): Trailing whitespace 2023-12-22 07:22:21 -08:00
Teal Dulcet
935a0c91bd Fixed SIM222 (expr-or-true): Use True instead of ... or True 2023-12-22 07:22:06 -08:00
Teal Dulcet
bddc2385db Fixed C414 (unnecessary-double-cast-or-process): Unnecessary list call within sorted() 2023-12-22 07:22:00 -08:00
Teal Dulcet
d952590457 Fixed SIM223 (expr-and-false): Use False instead of ... and False 2023-12-22 07:21:50 -08:00
Teal Dulcet
8af1faf05a Fixed Q003 (avoidable-escaped-quote): Change outer quotes to avoid escaping inner quotes 2023-12-22 07:21:37 -08:00
Teal Dulcet
7647176191 Fixed PLR1711 (useless-return): Useless return statement at end of function 2023-12-22 07:21:28 -08:00
Teal Dulcet
8adda9895c Fixed B007 (unused-loop-control-variable) 2023-12-22 07:21:10 -08:00
Teal Dulcet
c65d2b6e30 Fixed C401 (unnecessary-generator-set): Unnecessary generator (rewrite as a set comprehension) 2023-12-22 07:21:04 -08:00
Teal Dulcet
b50f133a4e Fixed SIM110 (reimplemented-builtin) 2023-12-22 07:20:48 -08:00
Teal Dulcet
71b173968a Fixed E711 (none-comparison) 2023-12-22 07:20:28 -08:00
Teal Dulcet
bfb287b227 Fixed FURB113 (repeated-append) 2023-12-22 07:20:10 -08:00
Teal Dulcet
fd1bf44981 Fixed SIM102 (collapsible-if): Use a single if statement instead of nested if statements 2023-12-22 07:20:00 -08:00
Teal Dulcet
5981197e4d Fixed PLW0108 (unnecessary-lambda): Lambda may be unnecessary; consider inlining inner function 2023-12-22 07:19:47 -08:00
Teal Dulcet
5f45bc7642 Fixed W605 (invalid-escape-sequence) 2023-12-22 07:19:40 -08:00
Teal Dulcet
ce1ab5518f Fixed UP031 (printf-string-formatting): Use format specifiers instead of percent format 2023-12-22 07:19:06 -08:00
Teal Dulcet
355cad3563 Fixed UP034 (extraneous-parentheses): Avoid extraneous parentheses 2023-12-22 07:18:38 -08:00
Teal Dulcet
502f29822e Fixed UP030 (format-literals): Use implicit references for positional format fields 2023-12-22 07:17:45 -08:00
Teal Dulcet
1dcf1600fc Fixed SIM108 (if-else-block-instead-of-if-exp) 2023-12-22 07:17:23 -08:00
Teal Dulcet
4a81762a6b Fixed RSE102 (unnecessary-paren-on-raise-exception): Unnecessary parentheses on raised exception 2023-12-22 07:16:15 -08:00
Teal Dulcet
298e6de15e Fixed F841 (unused-variable) 2023-12-22 07:15:14 -08:00
Teal Dulcet
0315ff42ae Fixed UP032 (f-string): Use f-string instead of format call 2023-12-22 07:14:00 -08:00
Teal Dulcet
12c4e643f0 Fixed RET504 (unnecessary-assign) 2023-12-22 07:13:36 -08:00
Teal Dulcet
84c5557d03 Fixed W293 (blank-line-with-whitespace): Blank line contains whitespace 2023-12-22 07:12:50 -08:00
Teal Dulcet
5cc598fb72 Fixed PIE810 (multiple-starts-ends-with): Call startswith once with a tuple 2023-12-22 07:12:34 -08:00
Teal Dulcet
d842f9c531 Fixed EM101 (raw-string-in-exception): Exception must not use a string literal, assign to variable first 2023-12-22 07:10:48 -08:00
Teal Dulcet
e6adda6f97 Fixed PLR6201 (literal-membership): Use a set literal when testing for membership 2023-12-22 07:10:25 -08:00
Teal Dulcet
e2349f1137 Fixed UP015 (redundant-open-modes): Unnecessary open mode parameters 2023-12-22 07:08:56 -08:00
Teal Dulcet
fa755d7968 Fixed F401 (unused-import) 2023-12-22 07:08:30 -08:00
Joshua Tauberer
7646095b94 v67 2023-12-22 08:56:43 -05:00
Joshua Tauberer
faf23f150c Guard against SMTP smuggling
This short-term workaround is recommended at https://www.postfix.org/smtp-smuggling.html:

    smtpd_data_restrictions=reject_unauth_pipelining
2023-12-22 08:54:15 -05:00
Joshua Tauberer
8e4e9add78 Version 66 2023-12-17 16:31:18 -05:00
KiekerJan
fa8c7ddef5
Upgrade roundcube to 1.6.5 (#2329) 2023-12-04 09:23:36 -05:00
bilogic
6d6ce25e03
Allow specifying another repo to install from in bootstrap.sh (#2334) 2023-12-04 09:22:54 -05:00
Joshua Tauberer
371f5bc1b2 Fix virtualenv creation reported in #2335 2023-11-28 07:25:50 -05:00
Joshua Tauberer
0314554207 Version 65 2023-10-27 06:02:22 -04:00
matidau
46d55f7866
Update zpush.sh to version 2.7.1 (#2315)
Updating to latest release, bugfixes no new features.
2023-10-26 09:04:13 -04:00
KiekerJan
2bbc317873
Update Roundcube to 1.6.4 (#2317) 2023-10-26 09:03:29 -04:00
clpo13
28f929dc13
Fix typo in system-backup.html: Amazone -> Amazon (#2311) 2023-10-10 13:22:19 -04:00
Joshua Tauberer
e419b62034 Version 64 2023-09-02 19:46:24 -04:00
Joshua Tauberer
a966913963
Fix command line arguments for duplicity 2.1 (#2301) 2023-09-02 15:54:16 -04:00