1 # Copyright (C) 2016-2020 all contributors <meta@public-inbox.org>
2 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
4 # ref: https://cr.yp.to/proto/maildir.html
5 # http://wiki2.dovecot.org/MailboxFormat/Maildir
6 package PublicInbox::WatchMaildir;
10 use PublicInbox::InboxWritable qw(eml_from_path warn_ignore_cb);
11 use PublicInbox::Filter::Base qw(REJECT);
12 use PublicInbox::Spamcheck;
13 use PublicInbox::Sigfd;
14 use PublicInbox::DS qw(now);
15 use PublicInbox::MID qw(mids);
16 use PublicInbox::ContentHash qw(content_hash);
19 sub compile_watchheaders ($) {
22 if (my $whs = $ibx->{watchheader}) {
24 my ($k, $v) = split(/:/, $_, 2);
25 # XXX should this be case-insensitive?
26 # Or, mutt-style, case-sensitive iff
27 # a capital letter exists?
28 push @$watch_hdrs, [ $k, qr/\Q$v\E/ ];
31 if (my $list_ids = $ibx->{listid}) {
33 # RFC2919 section 6 stipulates
34 # "case insensitive equality"
35 my $re = qr/<[ \t]*\Q$_\E[ \t]*>/i;
36 push @$watch_hdrs, ['List-Id', $re ];
39 $ibx->{-watchheaders} = $watch_hdrs if scalar @$watch_hdrs;
43 my ($class, $config) = @_;
45 my (%imap, %nntp); # url => [inbox objects] or 'watchspam'
47 # "publicinboxwatch" is the documented namespace
48 # "publicinboxlearn" is legacy but may be supported
50 foreach my $pfx (qw(publicinboxwatch publicinboxlearn)) {
51 my $k = "$pfx.watchspam";
52 defined(my $dirs = $config->{$k}) or next;
53 $dirs = PublicInbox::Config::_array($dirs);
54 for my $dir (@$dirs) {
56 if (is_maildir($dir)) {
57 # skip "new", no MUA has seen it, yet.
58 $mdmap{"$dir/cur"} = 'watchspam';
59 } elsif ($url = imap_url($dir)) {
60 $imap{$url} = 'watchspam';
61 } elsif ($url = nntp_url($dir)) {
62 $nntp{$url} = 'watchspam';
64 warn "unsupported $k=$dir\n";
69 my $k = 'publicinboxwatch.spamcheck';
71 my $spamcheck = PublicInbox::Spamcheck::get($config, $k, $default);
72 $spamcheck = _spamcheck_cb($spamcheck) if $spamcheck;
74 $config->each_inbox(sub {
75 # need to make all inboxes writable for spam removal:
76 my $ibx = $_[0] = PublicInbox::InboxWritable->new($_[0]);
78 my $watches = $ibx->{watch} or return;
79 $watches = PublicInbox::Config::_array($watches);
80 for my $watch (@$watches) {
82 if (is_maildir($watch)) {
83 compile_watchheaders($ibx);
84 my ($new, $cur) = ("$watch/new", "$watch/cur");
85 my $cur_dst = $mdmap{$cur} //= [];
86 return if is_watchspam($cur, $cur_dst, $ibx);
87 push @{$mdmap{$new} //= []}, $ibx;
89 } elsif ($url = imap_url($watch)) {
90 return if is_watchspam($url, $imap{$url}, $ibx);
91 compile_watchheaders($ibx);
92 push @{$imap{$url} ||= []}, $ibx;
93 } elsif ($url = nntp_url($watch)) {
94 return if is_watchspam($url, $nntp{$url}, $ibx);
95 compile_watchheaders($ibx);
96 push @{$nntp{$url} ||= []}, $ibx;
98 warn "watch unsupported: $k=$watch\n";
104 if (scalar keys %mdmap) {
105 $mdre = join('|', map { quotemeta($_) } keys %mdmap);
106 $mdre = qr!\A($mdre)/!;
108 return unless $mdre || scalar(keys %imap) || scalar(keys %nntp);
111 spamcheck => $spamcheck,
115 imap => scalar keys %imap ? \%imap : undef,
116 nntp => scalar keys %nntp? \%nntp : undef,
118 opendirs => {}, # dirname => dirhandle (in progress scans)
119 ops => [], # 'quit', 'full'
125 local $PublicInbox::DS::in_loop = 0; # waitpid() synchronously
126 for my $im (values %{$self->{importers}}) {
127 next if !$im; # $im may be undef during cleanup
129 warn "$im->{ibx}->{name} ->done: $@\n" if $@;
133 sub remove_eml_i { # each_inbox callback
134 my ($ibx, $arg) = @_;
135 my ($self, $eml, $loc) = @$arg;
137 my $im = _importer_for($self, $ibx);
138 $im->remove($eml, 'spam');
139 if (my $scrub = $ibx->filter($im)) {
140 my $scrubbed = $scrub->scrub($eml, 1);
141 if ($scrubbed && $scrubbed != REJECT) {
142 $im->remove($scrubbed, 'spam');
147 warn "error removing spam at: $loc from $ibx->{name}: $@\n";
148 _done_for_now($self);
153 my ($self, $path) = @_;
154 # path must be marked as (S)een
155 $path =~ /:2,[A-R]*S[T-Za-z]*\z/ or return;
156 my $eml = eml_from_path($path) or return;
157 local $SIG{__WARN__} = warn_ignore_cb();
158 $self->{config}->each_inbox(\&remove_eml_i, [ $self, $eml, $path ]);
161 sub import_eml ($$$) {
162 my ($self, $ibx, $eml) = @_;
164 # any header match means it's eligible for the inbox:
165 if (my $watch_hdrs = $ibx->{-watchheaders}) {
167 for my $wh (@$watch_hdrs) {
168 my @v = $eml->header_raw($wh->[0]);
169 $ok = grep(/$wh->[1]/, @v) and last;
174 my $im = _importer_for($self, $ibx);
175 if (my $scrub = $ibx->filter($im)) {
176 my $scrubbed = $scrub->scrub($eml) or return;
177 $scrubbed == REJECT and return;
180 $im->add($eml, $self->{spamcheck});
183 warn "$ibx->{name} add failed: $@\n";
184 _done_for_now($self);
189 my ($self, $path) = @_;
190 return unless PublicInbox::InboxWritable::is_maildir_path($path);
191 if ($path !~ $self->{mdre}) {
192 warn "unrecognized path: $path\n";
195 my $inboxes = $self->{mdmap}->{$1};
197 warn "unmappable dir: $1\n";
200 my $warn_cb = $SIG{__WARN__} || sub { print STDERR @_ };
201 local $SIG{__WARN__} = sub {
202 my $pfx = ($_[0] // '') =~ /^([A-Z]: )/g ? $1 : '';
203 $warn_cb->($pfx, "path: $path\n", @_);
205 if (!ref($inboxes) && $inboxes eq 'watchspam') {
206 return _remove_spam($self, $path);
208 foreach my $ibx (@$inboxes) {
209 my $eml = eml_from_path($path) or next;
210 import_eml($self, $ibx, $eml);
216 return unless $self->{quit};
218 # don't have reliable wakeups, keep signalling
220 for (qw(idle_pids poll_pids)) {
221 my $pids = $self->{$_} or next;
223 $done = undef if kill('QUIT', $_);
232 %{$self->{opendirs}} = ();
233 _done_for_now($self);
235 if (my $idle_mic = $self->{idle_mic}) {
236 eval { $idle_mic->done };
238 warn "IDLE DONE error: $@\n";
239 eval { $idle_mic->disconnect };
240 warn "IDLE LOGOUT error: $@\n" if $@;
245 sub watch_fs_init ($) {
248 delete $self->{done_timer};
249 _done_for_now($self);
252 _try_path($self, $_[0]->fullname);
253 $self->{done_timer} //= PublicInbox::DS::requeue($done);
255 require PublicInbox::DirIdle;
256 # inotify_create + EPOLL_CTL_ADD
257 PublicInbox::DirIdle->new([keys %{$self->{mdmap}}], $cb);
260 # avoid exposing deprecated "snews" to users.
261 my %SCHEME_MAP = ('snews' => 'nntps');
265 my $scheme = $uri->scheme;
266 $SCHEME_MAP{$scheme} // $scheme;
269 # returns the git config section name, e.g [imap "imaps://user@example.com"]
270 # without the mailbox, so we can share connections between different inboxes
271 sub uri_section ($) {
273 uri_scheme($uri) . '://' . $uri->authority;
276 sub cfg_intvl ($$$) {
277 my ($cfg, $key, $url) = @_;
278 my $v = $cfg->urlmatch($key, $url) // return;
279 $v =~ /\A[0-9]+(?:\.[0-9]+)?\z/s and return $v + 0;
280 if (ref($v) eq 'ARRAY') {
281 $v = join(', ', @$v);
282 warn "W: $key has multiple values: $v\nW: $key ignored\n";
284 warn "W: $key=$v is not a numeric value in seconds\n";
289 my ($cfg, $key, $url) = @_;
290 my $orig = $cfg->urlmatch($key, $url) // return;
291 my $bool = $cfg->git_bool($orig);
292 warn "W: $key=$orig for $url is not boolean\n" unless defined($bool);
296 # flesh out common IMAP-specific data structures
297 sub imap_common_init ($) {
299 my $cfg = $self->{config};
300 my $mic_args = {}; # scheme://authority => Mail:IMAPClient arg
301 for my $url (sort keys %{$self->{imap}}) {
302 my $uri = PublicInbox::URIimap->new($url);
303 my $sec = uri_section($uri);
304 for my $k (qw(Starttls Debug Compress)) {
305 my $bool = cfg_bool($cfg, "imap.$k", $url) // next;
306 $mic_args->{$sec}->{$k} = $bool;
308 my $to = cfg_intvl($cfg, 'imap.timeout', $url);
309 $mic_args->{$sec}->{Timeout} = $to if $to;
310 for my $k (qw(pollInterval idleInterval)) {
311 $to = cfg_intvl($cfg, "imap.$k", $url) // next;
312 $self->{imap_opt}->{$sec}->{$k} = $to;
314 my $k = 'imap.fetchBatchSize';
315 my $bs = $cfg->urlmatch($k, $url) // next;
316 if ($bs =~ /\A([0-9]+)\z/) {
317 $self->{imap_opt}->{$sec}->{batch_size} = $bs;
319 warn "$k=$bs is not an integer\n";
325 sub auth_anon_cb { '' }; # for Mail::IMAPClient::Authcallback
327 sub mic_for ($$$) { # mic = Mail::IMAPClient
328 my ($self, $url, $mic_args) = @_;
329 my $uri = PublicInbox::URIimap->new($url);
330 require PublicInbox::GitCredential;
333 protocol => $uri->scheme,
335 username => $uri->user,
336 password => $uri->password,
337 }, 'PublicInbox::GitCredential';
338 my $common = $mic_args->{uri_section($uri)} // {};
339 # IMAPClient and Net::Netrc both mishandles `0', so we pass `127.0.0.1'
340 my $host = $cred->{host};
341 $host = '127.0.0.1' if $host eq '0';
345 Ssl => $uri->scheme eq 'imaps',
346 Keepalive => 1, # SO_KEEPALIVE
347 %$common, # may set Starttls, Compress, Debug ....
349 my $mic = PublicInbox::IMAPClient->new(%$mic_arg) or
350 die "E: <$url> new: $@\n";
352 # default to using STARTTLS if it's available, but allow
353 # it to be disabled since I usually connect to localhost
354 if (!$mic_arg->{Ssl} && !defined($mic_arg->{Starttls}) &&
355 $mic->has_capability('STARTTLS') &&
356 $mic->can('starttls')) {
357 $mic->starttls or die "E: <$url> STARTTLS: $@\n";
360 # do we even need credentials?
361 if (!defined($cred->{username}) &&
362 $mic->has_capability('AUTH=ANONYMOUS')) {
366 $cred->check_netrc unless defined $cred->{password};
367 $cred->fill; # may prompt user here
368 $mic->User($mic_arg->{User} = $cred->{username});
369 $mic->Password($mic_arg->{Password} = $cred->{password});
370 } else { # AUTH=ANONYMOUS
371 $mic->Authmechanism($mic_arg->{Authmechanism} = 'ANONYMOUS');
372 $mic->Authcallback($mic_arg->{Authcallback} = \&auth_anon_cb);
374 if ($mic->login && $mic->IsAuthenticated) {
375 # success! keep IMAPClient->new arg in case we get disconnected
376 $self->{mic_arg}->{uri_section($uri)} = $mic_arg;
378 warn "E: <$url> LOGIN: $@\n";
381 $cred->run($mic ? 'approve' : 'reject') if $cred;
385 sub imap_import_msg ($$$$) {
386 my ($self, $url, $uid, $raw) = @_;
387 # our target audience expects LF-only, save storage
388 $$raw =~ s/\r\n/\n/sg;
390 my $inboxes = $self->{imap}->{$url};
392 for my $ibx (@$inboxes) {
393 my $eml = PublicInbox::Eml->new($$raw);
394 my $x = import_eml($self, $ibx, $eml);
396 } elsif ($inboxes eq 'watchspam') {
397 local $SIG{__WARN__} = warn_ignore_cb();
398 my $eml = PublicInbox::Eml->new($raw);
399 my $arg = [ $self, $eml, "$url UID:$uid" ];
400 $self->{config}->each_inbox(\&remove_eml_i, $arg);
402 die "BUG: destination unknown $inboxes";
406 sub imap_fetch_all ($$$) {
407 my ($self, $mic, $url) = @_;
408 my $uri = PublicInbox::URIimap->new($url);
409 my $sec = uri_section($uri);
410 my $mbx = $uri->mailbox;
411 $mic->Clear(1); # trim results history
412 $mic->examine($mbx) or return "E: EXAMINE $mbx ($sec) failed: $!";
413 my ($r_uidval, $r_uidnext);
414 for ($mic->Results) {
415 /^\* OK \[UIDVALIDITY ([0-9]+)\].*/ and $r_uidval = $1;
416 /^\* OK \[UIDNEXT ([0-9]+)\].*/ and $r_uidnext = $1;
417 last if $r_uidval && $r_uidnext;
419 $r_uidval //= $mic->uidvalidity($mbx) //
420 return "E: $url cannot get UIDVALIDITY";
421 $r_uidnext //= $mic->uidnext($mbx) //
422 return "E: $url cannot get UIDNEXT";
423 my $itrk = PublicInbox::IMAPTracker->new($url);
424 my ($l_uidval, $l_uid) = $itrk->get_last;
425 $l_uidval //= $r_uidval; # first time
427 if ($l_uidval != $r_uidval) {
428 return "E: $url UIDVALIDITY mismatch\n".
429 "E: local=$l_uidval != remote=$r_uidval";
431 my $r_uid = $r_uidnext - 1;
432 if ($l_uid != 1 && $l_uid > $r_uid) {
433 return "E: $url local UID exceeds remote ($l_uid > $r_uid)\n".
434 "E: $url strangely, UIDVALIDLITY matches ($l_uidval)\n";
436 return if $l_uid >= $r_uid; # nothing to do
438 warn "I: $url fetching UID $l_uid:$r_uid\n";
439 $mic->Uid(1); # the default, we hope
440 my $bs = $self->{imap_opt}->{$sec}->{batch_size} // 1;
441 my $req = $mic->imap4rev1 ? 'BODY.PEEK[]' : 'RFC822.PEEK';
443 # TODO: FLAGS may be useful for personal use
447 my $warn_cb = $SIG{__WARN__} || sub { print STDERR @_ };
448 local $SIG{__WARN__} = sub {
449 my $pfx = ($_[0] // '') =~ /^([A-Z]: )/g ? $1 : '';
451 $warn_cb->("$pfx$url UID:$batch\n", @_);
455 # I wish "UID FETCH $START:*" could work, but:
456 # 1) servers do not need to return results in any order
457 # 2) Mail::IMAPClient doesn't offer a streaming API
458 $uids = $mic->search("UID $l_uid:*") or
459 return "E: $url UID SEARCH $l_uid:* error: $!";
460 return if scalar(@$uids) == 0;
462 # RFC 3501 doesn't seem to indicate order of UID SEARCH
463 # responses, so sort it ourselves. Order matters so
464 # IMAPTracker can store the newest UID.
465 @$uids = sort { $a <=> $b } @$uids;
467 # Did we actually get new messages?
468 return if $uids->[0] < $l_uid;
470 $l_uid = $uids->[-1] + 1; # for next search
473 while (scalar @$uids) {
474 my @batch = splice(@$uids, 0, $bs);
475 $batch = join(',', @batch);
476 local $0 = "UID:$batch $mbx $sec";
477 my $r = $mic->fetch_hash($batch, $req);
478 unless ($r) { # network error?
479 $err = "E: $url UID FETCH $batch error: $!";
482 for my $uid (@batch) {
483 # messages get deleted, so holes appear
484 my $per_uid = delete $r->{$uid} // next;
485 my $raw = delete($per_uid->{$key}) // next;
486 imap_import_msg($self, $url, $uid, \$raw);
488 last if $self->{quit};
490 last if $self->{quit};
492 _done_for_now($self);
493 $itrk->update_last($r_uidval, $last_uid) if defined $last_uid;
494 } until ($err || $self->{quit});
498 sub imap_idle_once ($$$$) {
499 my ($self, $mic, $intvl, $url) = @_;
500 my $i = $intvl //= (29 * 60);
501 my $end = now() + $intvl;
502 warn "I: $url idling for ${intvl}s\n";
503 local $0 = "IDLE $0";
504 unless ($mic->idle) {
505 return if $self->{quit};
506 return "E: IDLE failed on $url: $!";
508 $self->{idle_mic} = $mic; # for ->quit
510 until ($self->{quit} || !$mic->IsConnected ||
511 grep(/^\* [0-9]+ EXISTS/, @res) || $i <= 0) {
512 @res = $mic->idle_data($i);
515 delete $self->{idle_mic};
516 unless ($self->{quit}) {
517 $mic->IsConnected or return "E: IDLE disconnected on $url";
518 $mic->done or return "E: IDLE DONE failed on $url: $!";
523 # idles on a single URI
524 sub watch_imap_idle_1 ($$$) {
525 my ($self, $url, $intvl) = @_;
526 my $uri = PublicInbox::URIimap->new($url);
527 my $sec = uri_section($uri);
528 my $mic_arg = $self->{mic_arg}->{$sec} or
529 die "BUG: no Mail::IMAPClient->new arg for $sec";
531 local $0 = $uri->mailbox." $sec";
532 until ($self->{quit}) {
533 $mic //= PublicInbox::IMAPClient->new(%$mic_arg);
535 if ($mic && $mic->IsConnected) {
536 $err = imap_fetch_all($self, $mic, $url);
537 $err //= imap_idle_once($self, $mic, $intvl, $url);
539 $err = "not connected: $!";
541 if ($err && !$self->{quit}) {
544 sleep 60 unless $self->{quit};
549 sub watch_atfork_child ($) {
551 delete $self->{idle_pids};
552 delete $self->{poll_pids};
553 delete $self->{opendirs};
554 PublicInbox::DS->Reset;
555 %SIG = (%SIG, %{$self->{sig}}, CHLD => 'DEFAULT');
556 PublicInbox::Sigfd::sig_setmask($self->{oldset});
559 sub watch_atfork_parent ($) {
561 _done_for_now($self);
564 sub imap_idle_requeue ($) { # DS::add_timer callback
565 my ($self, $url_intvl) = @{$_[0]};
566 return if $self->{quit};
567 push @{$self->{idle_todo}}, $url_intvl;
571 sub imap_idle_reap { # PublicInbox::DS::dwaitpid callback
572 my ($self, $pid) = @_;
573 my $url_intvl = delete $self->{idle_pids}->{$pid} or
574 die "BUG: PID=$pid (unknown) reaped: \$?=$?\n";
576 my ($url, $intvl) = @$url_intvl;
577 return if $self->{quit};
578 warn "W: PID=$pid on $url died: \$?=$?\n" if $?;
579 PublicInbox::DS::add_timer(60,
580 \&imap_idle_requeue, [ $self, $url_intvl ]);
583 sub imap_idle_fork ($$) {
584 my ($self, $url_intvl) = @_;
585 my ($url, $intvl) = @$url_intvl;
586 defined(my $pid = fork) or die "fork: $!";
588 watch_atfork_child($self);
589 watch_imap_idle_1($self, $url, $intvl);
592 $self->{idle_pids}->{$pid} = $url_intvl;
593 PublicInbox::DS::dwaitpid($pid, \&imap_idle_reap, $self);
598 return if $self->{quit};
599 my $idle_todo = $self->{idle_todo};
600 if ($idle_todo && @$idle_todo) {
601 watch_atfork_parent($self);
602 while (my $url_intvl = shift(@$idle_todo)) {
603 imap_idle_fork($self, $url_intvl);
606 goto(&fs_scan_step) if $self->{mdre};
609 sub watch_imap_fetch_all ($$) {
610 my ($self, $urls) = @_;
611 for my $url (@$urls) {
612 my $uri = PublicInbox::URIimap->new($url);
613 my $sec = uri_section($uri);
614 my $mic_arg = $self->{mic_arg}->{$sec} or
615 die "BUG: no Mail::IMAPClient->new arg for $sec";
616 my $mic = PublicInbox::IMAPClient->new(%$mic_arg) or next;
617 my $err = imap_fetch_all($self, $mic, $url);
618 last if $self->{quit};
619 warn $err, "\n" if $err;
623 sub watch_nntp_fetch_all ($$) {
624 my ($self, $urls) = @_;
625 for my $url (@$urls) {
626 my $uri = uri_new($url);
627 my $sec = uri_section($uri);
628 my $nn_arg = $self->{nn_arg}->{$sec} or
629 die "BUG: no Net::NNTP->new arg for $sec";
630 my $nntp_opt = $self->{nntp_opt}->{$sec};
631 my $nn = nn_new($nn_arg, $nntp_opt, $url);
633 warn "E: $url: \$!=$!\n";
636 last if $self->{quit};
637 if (my $postconn = $nntp_opt->{-postconn}) {
638 for my $m_arg (@$postconn) {
639 my ($method, @args) = @$m_arg;
640 $nn->$method(@args) and next;
641 warn "E: <$url> $method failed\n";
646 last if $self->{quit};
648 my $err = nntp_fetch_all($self, $nn, $url);
649 warn $err, "\n" if $err;
654 sub poll_fetch_fork ($) { # DS::add_timer callback
655 my ($self, $intvl, $urls) = @{$_[0]};
656 return if $self->{quit};
657 watch_atfork_parent($self);
658 defined(my $pid = fork) or die "fork: $!";
660 watch_atfork_child($self);
661 if ($urls->[0] =~ m!\Aimaps?://!i) {
662 watch_imap_fetch_all($self, $urls);
664 watch_nntp_fetch_all($self, $urls);
668 $self->{poll_pids}->{$pid} = [ $intvl, $urls ];
669 PublicInbox::DS::dwaitpid($pid, \&poll_fetch_reap, $self);
672 sub poll_fetch_reap { # PublicInbox::DS::dwaitpid callback
673 my ($self, $pid) = @_;
674 my $intvl_urls = delete $self->{poll_pids}->{$pid} or
675 die "BUG: PID=$pid (unknown) reaped: \$?=$?\n";
676 return if $self->{quit};
677 my ($intvl, $urls) = @$intvl_urls;
679 warn "W: PID=$pid died: \$?=$?\n", map { "$_\n" } @$urls;
681 warn("I: will check $_ in ${intvl}s\n") for @$urls;
682 PublicInbox::DS::add_timer($intvl, \&poll_fetch_fork,
683 [$self, $intvl, $urls]);
686 sub watch_imap_init ($$) {
687 my ($self, $poll) = @_;
688 eval { require PublicInbox::IMAPClient } or
689 die "Mail::IMAPClient is required for IMAP:\n$@\n";
690 eval { require PublicInbox::IMAPTracker } or
691 die "DBD::SQLite is required for IMAP\n:$@\n";
693 my $mic_args = imap_common_init($self); # read args from config
695 # make sure we can connect and cache the credentials in memory
696 $self->{mic_arg} = {}; # schema://authority => IMAPClient->new args
697 my $mics = {}; # schema://authority => IMAPClient obj
698 for my $url (sort keys %{$self->{imap}}) {
699 my $uri = PublicInbox::URIimap->new($url);
700 $mics->{uri_section($uri)} //= mic_for($self, $url, $mic_args);
703 my $idle = []; # [ [ url1, intvl1 ], [url2, intvl2] ]
704 for my $url (keys %{$self->{imap}}) {
705 my $uri = PublicInbox::URIimap->new($url);
706 my $sec = uri_section($uri);
707 my $mic = $mics->{$sec};
708 my $intvl = $self->{imap_opt}->{$sec}->{pollInterval};
709 if ($mic->has_capability('IDLE') && !$intvl) {
710 $intvl = $self->{imap_opt}->{$sec}->{idleInterval};
711 push @$idle, [ $url, $intvl // () ];
713 push @{$poll->{$intvl || 120}}, $url;
717 $self->{idle_todo} = $idle;
718 PublicInbox::DS::requeue($self); # ->event_step to fork
722 # flesh out common NNTP-specific data structures
723 sub nntp_common_init ($) {
725 my $cfg = $self->{config};
726 my $nn_args = {}; # scheme://authority => Net::NNTP->new arg
727 for my $url (sort keys %{$self->{nntp}}) {
728 my $sec = uri_section(uri_new($url));
730 # Debug and Timeout are passed to Net::NNTP->new
731 my $v = cfg_bool($cfg, 'nntp.Debug', $url);
732 $nn_args->{$sec}->{Debug} = $v if defined $v;
733 my $to = cfg_intvl($cfg, 'nntp.Timeout', $url);
734 $nn_args->{$sec}->{Timeout} = $to if $to;
736 # Net::NNTP post-connect commands
737 for my $k (qw(starttls compress)) {
738 $v = cfg_bool($cfg, "nntp.$k", $url) // next;
739 $self->{nntp_opt}->{$sec}->{$k} = $v;
743 for my $k (qw(pollInterval)) {
744 $to = cfg_intvl($cfg, "nntp.$k", $url) // next;
745 $self->{nntp_opt}->{$sec}->{$k} = $to;
751 # Net::NNTP doesn't support CAPABILITIES, yet
752 sub try_starttls ($) {
754 return if $host =~ /\.onion\z/s;
755 return if $host =~ /\A127\.[0-9]+\.[0-9]+\.[0-9]+\z/s;
756 return if $host eq '::1';
761 my ($nn_arg, $nntp_opt, $url) = @_;
762 my $nn = Net::NNTP->new(%$nn_arg) or die "E: <$url> new: $!\n";
764 # default to using STARTTLS if it's available, but allow
765 # it to be disabled for localhost/VPN users
766 if (!$nn_arg->{SSL} && $nn->can('starttls')) {
767 if (!defined($nntp_opt->{starttls}) &&
768 try_starttls($nn_arg->{Host})) {
769 # soft fail by default
770 $nn->starttls or warn <<"";
771 W: <$url> STARTTLS tried and failed (not requested)
773 } elsif ($nntp_opt->{starttls}) {
774 # hard fail if explicitly configured
775 $nn->starttls or die <<"";
776 E: <$url> STARTTLS requested and failed
779 } elsif ($nntp_opt->{starttls}) {
780 $nn->can('starttls') or
781 die "E: <$url> Net::NNTP too old for STARTTLS\n";
782 $nn->starttls or die <<"";
783 E: <$url> STARTTLS requested and failed
789 sub nn_for ($$$) { # nn = Net::NNTP
790 my ($self, $url, $nn_args) = @_;
791 my $uri = uri_new($url);
792 my $sec = uri_section($uri);
793 my $nntp_opt = $self->{nntp_opt}->{$sec} //= {};
794 my $host = $uri->host;
795 # Net::NNTP and Net::Netrc both mishandle `0', so we pass `127.0.0.1'
796 $host = '127.0.0.1' if $host eq '0';
799 if (defined(my $ui = $uri->userinfo)) {
800 require PublicInbox::GitCredential;
803 protocol => uri_scheme($uri),
805 }, 'PublicInbox::GitCredential';
806 ($u, $p) = split(/:/, $ui, 2);
807 ($cred->{username}, $cred->{password}) = ($u, $p);
808 $cred->check_netrc unless defined $p;
810 my $common = $nn_args->{$sec} // {};
814 SSL => $uri->secure, # snews == nntps
815 %$common, # may Debug ....
817 my $nn = nn_new($nn_arg, $nntp_opt, $url);
820 $cred->fill; # may prompt user here
821 if ($nn->authinfo($u, $p)) {
822 push @{$nntp_opt->{-postconn}}, [ 'authinfo', $u, $p ];
824 warn "E: <$url> AUTHINFO $u XXXX failed\n";
829 if ($nntp_opt->{compress}) {
830 # https://rt.cpan.org/Ticket/Display.html?id=129967
831 if ($nn->can('compress')) {
833 push @{$nntp_opt->{-postconn}}, [ 'compress' ];
835 warn "W: <$url> COMPRESS failed\n";
838 delete $nntp_opt->{compress};
840 W: <$url> COMPRESS not supported by Net::NNTP
841 W: see https://rt.cpan.org/Ticket/Display.html?id=129967 for updates
846 $self->{nn_arg}->{$sec} = $nn_arg;
847 $cred->run($nn ? 'approve' : 'reject') if $cred;
851 sub nntp_fetch_all ($$$) {
852 my ($self, $nn, $url) = @_;
853 my $uri = uri_new($url);
854 my ($group, $num_a, $num_b) = $uri->group;
855 my $sec = uri_section($uri);
856 my ($nr, $beg, $end) = $nn->group($group);
857 unless (defined($nr)) {
858 chomp(my $msg = $nn->message);
859 return "E: GROUP $group <$sec> $msg";
862 # IMAPTracker is also used for tracking NNTP, UID == article number
863 # LIST.ACTIVE can get the equivalent of UIDVALIDITY, but that's
864 # expensive. So we assume newsgroups don't change:
865 my $itrk = PublicInbox::IMAPTracker->new($url);
866 my (undef, $l_art) = $itrk->get_last;
867 $l_art //= $beg; # initial import
869 # allow users to specify articles to refetch
870 # cf. https://tools.ietf.org/id/draft-gilman-news-url-01.txt
871 # nntp://example.com/inbox.foo/$num_a-$num_b
872 $l_art = $num_a if defined($num_a) && $num_a < $l_art;
873 $end = $num_b if defined($num_b) && $num_b < $end;
875 return if $l_art >= $end; # nothing to do
878 warn "I: $url fetching ARTICLE $beg..$end\n";
879 my $warn_cb = $SIG{__WARN__} || sub { print STDERR @_ };
881 local $SIG{__WARN__} = sub {
882 my $pfx = ($_[0] // '') =~ /^([A-Z]: )/g ? $1 : '';
883 $warn_cb->("$pfx$url ", $art ? ("ARTICLE $art") : (), "\n", @_);
885 my $inboxes = $self->{nntp}->{$url};
888 last if $self->{quit};
890 my $raw = $nn->article($art);
891 unless (defined($raw)) {
892 my $msg = $nn->message;
893 if ($nn->code == 421) { # pseudo response from Net::Cmd
896 } else { # probably just a deleted message (spam)
901 s/\r\n/\n/ for @$raw;
902 $raw = join('', @$raw);
904 for my $ibx (@$inboxes) {
905 my $eml = PublicInbox::Eml->new($raw);
906 import_eml($self, $ibx, $eml);
908 } elsif ($inboxes eq 'watchspam') {
909 my $eml = PublicInbox::Eml->new(\$raw);
910 my $arg = [ $self, $eml, "$url ARTICLE $art" ];
911 $self->{config}->each_inbox(\&remove_eml_i, $arg);
913 die "BUG: destination unknown $inboxes";
917 $itrk->update_last(0, $last_art) if defined $last_art;
918 _done_for_now($self);
922 sub watch_nntp_init ($$) {
923 my ($self, $poll) = @_;
924 eval { require Net::NNTP } or
925 die "Net::NNTP is required for NNTP:\n$@\n";
926 eval { require PublicInbox::IMAPTracker } or
927 die "DBD::SQLite is required for NNTP\n:$@\n";
929 my $nn_args = nntp_common_init($self); # read args from config
931 # make sure we can connect and cache the credentials in memory
932 $self->{nn_arg} = {}; # schema://authority => Net::NNTP->new args
933 for my $url (sort keys %{$self->{nntp}}) {
934 nn_for($self, $url, $nn_args);
936 for my $url (keys %{$self->{nntp}}) {
937 my $uri = uri_new($url);
938 my $sec = uri_section($uri);
939 my $intvl = $self->{nntp_opt}->{$sec}->{pollInterval};
940 push @{$poll->{$intvl || 120}}, $url;
945 my ($self, $sig, $oldset) = @_;
946 $self->{oldset} = $oldset;
948 my $poll = {}; # intvl_seconds => [ url1, url2 ]
949 watch_imap_init($self, $poll) if $self->{imap};
950 watch_nntp_init($self, $poll) if $self->{nntp};
951 while (my ($intvl, $urls) = each %$poll) {
952 # poll all URLs for a given interval sequentially
953 PublicInbox::DS::add_timer(0, \&poll_fetch_fork,
954 [$self, $intvl, $urls]);
956 watch_fs_init($self) if $self->{mdre};
957 PublicInbox::DS->SetPostLoopCallback(sub { !$self->quit_done });
958 PublicInbox::DS->EventLoop;
959 _done_for_now($self);
963 my ($self, $op) = @_;
964 push @{$self->{ops}}, $op;
965 PublicInbox::DS::requeue($self);
970 return if $self->{quit};
971 my $op = shift @{$self->{ops}};
972 local $PublicInbox::DS::in_loop = 0; # waitpid() synchronously
974 # continue existing scan
976 my $opendirs = $self->{opendirs};
977 my @dirnames = keys %$opendirs;
978 foreach my $dir (@dirnames) {
979 my $dh = delete $opendirs->{$dir};
981 while (my $fn = readdir($dh)) {
982 _try_path($self, "$dir/$fn");
985 $opendirs->{$dir} = $dh if $n < 0;
987 if ($op && $op eq 'full') {
988 foreach my $dir (keys %{$self->{mdmap}}) {
989 next if $opendirs->{$dir}; # already in progress
990 my $ok = opendir(my $dh, $dir);
992 warn "failed to open $dir: $!\n";
996 while (my $fn = readdir($dh)) {
997 _try_path($self, "$dir/$fn");
1000 $opendirs->{$dir} = $dh if $n < 0;
1003 _done_for_now($self);
1004 # do we have more work to do?
1005 PublicInbox::DS::requeue($self) if keys %$opendirs;
1009 my ($self, $op) = @_;
1010 push @{$self->{ops}}, $op;
1015 my ($self, $ibx) = @_;
1016 my $importers = $self->{importers};
1017 my $im = $importers->{"$ibx"} ||= $ibx->importer(0);
1018 if (scalar(keys(%$importers)) > 2) {
1019 delete $importers->{"$ibx"};
1020 _done_for_now($self);
1023 $importers->{"$ibx"} = $im;
1026 # XXX consider sharing with V2Writable, this only requires read-only access
1027 sub content_exists ($$) {
1028 my ($ibx, $eml) = @_;
1029 my $over = $ibx->over or return;
1030 my $mids = mids($eml);
1031 my $chash = content_hash($eml);
1033 for my $mid (@$mids) {
1034 while (my $smsg = $over->next_by_mid($mid, \$id, \$prev)) {
1035 my $cmp = $ibx->smsg_eml($smsg) or return;
1036 return 1 if $chash eq content_hash($cmp);
1045 my ($mime, $ibx) = @_;
1046 return if content_exists($ibx, $mime);
1048 if ($sc->spamcheck($mime, \$tmp)) {
1049 return PublicInbox::Eml->new(\$tmp);
1051 warn $mime->header('Message-ID')." failed spam check\n";
1057 $_[0] =~ s!\Amaildir:!! or return;
1064 my ($cur, $ws, $ibx) = @_;
1065 if ($ws && !ref($ws) && $ws eq 'watchspam') {
1067 E: $cur is a spam folder and cannot be used for `$ibx->{name}' input
1077 # URI::snews exists, URI::nntps does not, so use URI::snews
1078 $url =~ s!\Anntps://!snews://!i;
1084 require PublicInbox::URIimap;
1085 my $uri = PublicInbox::URIimap->new($url);
1086 $uri ? $uri->canonical->as_string : undef;
1089 my %IS_NNTP = (news => 1, snews => 1, nntp => 1);
1093 my $uri = uri_new($url);
1094 return unless $uri && $IS_NNTP{$uri->scheme} && $uri->group;
1095 $url = $uri->canonical->as_string;
1096 # nntps is IANA registered, snews is deprecated
1097 $url =~ s!\Asnews://!nntps://!;