summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2020-04-22 15:13:41 +0200
committerRicardo Wurmus <rekado@elephly.net>2020-04-22 15:14:02 +0200
commitbb33b92fad33d319544ddf676b4c13a67e04acdc (patch)
tree033961d545c2d33b5cea5b1ea357adc393e54ec0
parent3729735e752dc15e78463108e1c37bbed1962283 (diff)
xapian: search: Increase default number of results.
-rw-r--r--mumi/xapian.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/mumi/xapian.scm b/mumi/xapian.scm
index 613e9f9..debee37 100644
--- a/mumi/xapian.scm
+++ b/mumi/xapian.scm
@@ -201,7 +201,7 @@ messages and index their contents in the Xapian database at DBPATH."
query)))
(define* (search querystring #:key
- (pagesize 10)
+ (pagesize 1000)
(dbpath (string-append (%config 'db-dir) "/mumi.xapian")))
;; Open database for reading. call-with-database automatically
;; closes the database once we're done.