1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
| | From: Eric Wong <e@yhbt.net>
To: meta@public-inbox.org
Subject: [WIP] public-inbox 1.6.0
MIME-Version: 1.0
Content-Type: text/plain; charset=utf-8
Content-Disposition: inline
* General changes:
- ~/.cache/public-inbox/inline-c is automatically used for Inline::C
if it exists. PERL_INLINE_DIRECTORY in env remains supported
and prioritized to support `nobody'-type users without HOME.
- msgmap.sqlite3 uses journal_mode=TRUNCATE, matching over.sqlite3
behavior for a minor reduction in VFS traffic
- message/{rfc822,news,global} attachments are decoded recursively
and indexed for search. Use `public-inbox-index --reindex' to
ensure these attachments are indexed in old messages.
- inbox.lock (v2) and ssoma.lock (v1) files are written to by
on message delivery (or spam removal) to wake up read-only
daemons via inotify or kqueue.
* public-inbox-index
- --batch-size=BYTES or publicinbox.indexBatchSize parameter
- parallelize v2 updates by default, "-j0" is (once again) allowed
to disable parallelization
- v1 (re-)indexing parallelizes blob reads from git
* public-inbox-learn
- `rm' supports `--all' to remove from all configured inboxes
* public-inbox-imapd
- new read-only IMAP daemon similar to public-inbox-nntpd
* public-inbox-nntpd
- blob reads from git are handled asynchronously
* public-inbox-httpd
- Plack::Middleware::Deflater is no longer loaded by default
when no .psgi file is specified; PublicInbox::WWW gzips
natively (see below)
* PublicInbox::WWW
- use consistent blank line around attachment links
- Attachments in message/{rfc822,news,global} messages can be
individually downloaded. Downloading the entire message/rfc822
file in full remains supported
- $INBOX_DIR/description is treated as UTF-8
- HTML, Atom, and text/plain responses are gzipped without
relying on Plack::Middleware::Deflater
- Multi-message endpoints (/t.mbox.gz, /T/, /t/, etc) are ~10% faster
when running under public-inbox-httpd with asynchronous blob
retrieval
* public-inbox-watch
- Linux::Inotify2 or IO::KQueue is used directly,
Filesys::Notify::Simple is no longer required
Please report bugs via plain-text mail to: meta@public-inbox.org
See archives at https://public-inbox.org/meta/ for all history.
See https://public-inbox.org/TODO for what the future holds.
|