File: bugs.debian.org.conf

package info (click to toggle)
debiancontributors 0.7.11
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 372 kB
  • sloc: python: 1,780; makefile: 18
file content (21 lines) | stat: -rw-r--r-- 393 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
contribution: bug-submission
method: postgres
db: service=udd
query:
	select
	    submitter_email as id,
	    min(arrival),
	    max(arrival)
	from
	    all_bugs
	where
	    arrival != 'epoch'
	    and
	    arrival <= 'now'
	group by
	    submitter_email
	having
	    count(*) > 1
	    and
	    max(arrival) >= '-infinity'
url: https://bugs.debian.org/cgi-bin/pkgreport.cgi?correspondent={id}