diff options
author | Rodrigo Arias Mallo <rodarima@gmail.com> | 2025-09-28 20:26:15 +0200 |
---|---|---|
committer | Rodrigo <rodarima@gmail.com> | 2025-09-28 23:10:55 +0200 |
commit | fb510ea86be5ceb9e91573890242581fdbd77ad8 (patch) | |
tree | d819fe40683592008d136727f5a0b03e48dc1164 /323 |
Diffstat (limited to '323')
-rw-r--r-- | 323/index.md | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/323/index.md b/323/index.md new file mode 100644 index 0000000..e16aceb --- /dev/null +++ b/323/index.md @@ -0,0 +1,37 @@ +Title: Don't complain (on the console) about missing files which aren't necessary +Author: eyalroz +Created: Mon, 16 Dec 2024 21:04:46 +0000 +State: closed + +What running dillo (3.1.1), I get: +``` +paths: Cannot open file '/home/eyalroz/.dillo/dillorc': No such file or directory +paths: Using /opt/dillo/etc/dillo/dillorc +paths: Cannot open file '/home/eyalroz/.dillo/keysrc': No such file or directory +paths: Using /opt/dillo/etc/dillo/keysrc +paths: Cannot open file '/home/eyalroz/.dillo/domainrc': No such file or directory +paths: Using /opt/dillo/etc/dillo/domainrc +Domain: Default accept. +dillo_dns_init: Here we go! (threaded) +TLS library: OpenSSL 3.3.2 3 Sep 2024 +Disabling cookies. +paths: Cannot open file '/home/eyalroz/.dillo/hsts_preload': No such file or directory +``` +Indeed, I don't have a `dillorc`, `keysrc`, or `domainrc`, and in fact no `.dillo`. But: + +1. That's not an error, it's perfectly legitimate not to have them. +2. Dillo doesn't create them to force them into existence. + +So - why report the files not being there as an error? And, in fact, why even try opening files in `~/.dillo` when it doesn't exist? Plus, you're already saying +``` +paths: Using /opt/dillo/etc/dillo/dillorc +paths: Using /opt/dillo/etc/dillo/keysrc +paths: Using /opt/dillo/etc/dillo/domainrc +``` +is that not sufficient? + +--%-- +From: rodarima +Date: Tue, 17 Dec 2024 04:55:59 +0000 + +There is no error, knowing the reason we cannot use dillorc is useful.
\ No newline at end of file |