X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=mailbox-count.cabal;h=fb2e6b2a160487d4c952c06214809aea7918907c;hb=423950680d078d163311e53818ca0d37f6a627e8;hp=615d8aa9fee26313b38913a989bed5db3e648e78;hpb=20e4fc40e4c35c949558f6b90455b88057bdc221;p=mailbox-count.git diff --git a/mailbox-count.cabal b/mailbox-count.cabal index 615d8aa..fb2e6b2 100644 --- a/mailbox-count.cabal +++ b/mailbox-count.cabal @@ -1,9 +1,9 @@ +cabal-version: 3.0 name: mailbox-count -version: 0.0.2 -cabal-version: >= 1.8 +version: 0.0.5 author: Michael Orlitzky maintainer: Michael Orlitzky -license: AGPL-3 +license: AGPL-3.0-only license-file: doc/LICENSE bug-reports: mailto:michael@orlitzky.com category: Mail, Utils @@ -16,107 +16,107 @@ synopsis: Count mailboxes in a SQL database. description: /Usage/: - . + @ mailbox-count [OPTIONS] @ - . + Mailbox-count produces a simple count of mailboxes that exist per-domain in some SQL database. The default queries are compatible with the schema used by PostfixAdmin , but it is possible to supply your own queries via the @--summary-query@ and @--detail-query@ options. - . + The summary report lists each domain, along with the number of mailboxes owned by that domain. The order is determined by the summary query, which lists the domains alphabetically by default. - . + The default detail report shows the same, but also contains a list of each individual mailbox (again in alphabetical order) belonging to the domains. - . + /Input/: - . + None. - . + /Output/: - . + Either a summary, or detailed report (with @--detail@) of the number of mailboxes per-domain contained in the database. - . + /Options/: - . + @ \--database @ - . + The name of the database (or file, if SQLite) to which we should connect. - . + Default: The name of the current user (Postgres only). - . + @ \--detail @ - . + Produce a detailed report listing all mailboxes by domain. - . + @ \--detail-query @ - . + SQL query used to produce the detail report. This should return the set of all (domain, username) pairs. See the default value for an example. - . + Default: \"SELECT domain,username FROM mailbox ORDER BY domain;\" - . + @ \--host @ - . + Hostname where the database is located (Postgres-only). - . + Default: None, a UNIX domain socket connection is attempted (Postgres only) - . + @ \--password @ - . + Password used to connect to the database (Postgres-only). - . + Default: None (assumes passwordless authentication) - . + @ \--port @ Port number used to connect to the database (Postgres-only). - . + Default: None, a UNIX domain socket connection is attempted (Postgres only) - . + @ \--summary-query @ - . + SQL query used to produce the summary report. This should return (domain, user count) pairs. See the default value for an example. - . + Default: \"SELECT domain,COUNT(username) FROM mailbox GROUP BY domain ORDER BY domain;\" - . + @ \--username @ - . + Username used to connect to the database (Postgres-only). - . + Default: The current user - . + /Examples/: - . + The default summary report: - . + @ $ mailbox-count --database=postfixadmin.sqlite3 Summary (number of mailboxes per domain) @@ -126,9 +126,9 @@ description: example.net: 2 example.org: 1 @ - . + The more detailed report: - . + @ $ mailbox-count --detail --database=postfixadmin.sqlite3 Detail (list of all mailboxes by domain) @@ -153,7 +153,7 @@ description: executable mailbox-count build-depends: - base >= 4.6 && < 5, + base >= 4.15 && < 5, cmdargs >= 0.10, configurator >= 0.2, containers >= 0.5, @@ -165,6 +165,10 @@ executable mailbox-count MissingH >= 1.2, tasty >= 0.8, tasty-hunit >= 0.8 + + default-language: + Haskell2010 + main-is: Main.hs @@ -175,31 +179,29 @@ executable mailbox-count Configuration CommandLine OptionalConfiguration + Paths_mailbox_count Report - ghc-options: - -Wall - -fwarn-hi-shadowing - -fwarn-missing-signatures - -fwarn-name-shadowing - -fwarn-orphans - -fwarn-type-defaults - -fwarn-tabs - -fwarn-incomplete-record-updates - -fwarn-monomorphism-restriction - -fwarn-unused-do-bind - -rtsopts - -threaded - -optc-O3 - -optc-march=native - + autogen-modules: + Paths_mailbox_count test-suite testsuite type: exitcode-stdio-1.0 hs-source-dirs: src test + default-language: Haskell2010 main-is: TestSuite.hs + + other-modules: + Configuration + OptionalConfiguration + Paths_mailbox_count + Report + + autogen-modules: + Paths_mailbox_count + build-depends: - base >= 4.6 && < 5, + base >= 4.15 && < 5, cmdargs >= 0.10, configurator >= 0.2, containers >= 0.5, @@ -212,47 +214,18 @@ test-suite testsuite tasty >= 0.8, tasty-hunit >= 0.8 - -- It's not entirely clear to me why I have to reproduce all of this. - ghc-options: - -Wall - -fwarn-hi-shadowing - -fwarn-missing-signatures - -fwarn-name-shadowing - -fwarn-orphans - -fwarn-type-defaults - -fwarn-tabs - -fwarn-incomplete-record-updates - -fwarn-monomorphism-restriction - -fwarn-unused-do-bind - -O2 - test-suite doctests type: exitcode-stdio-1.0 hs-source-dirs: test + default-language: Haskell2010 main-is: Doctests.hs build-depends: - base >= 4.6 && < 5, + base >= 4.15 && < 5, -- Additional test dependencies. doctest >= 0.9, filemanip >= 0.3.6 - -- It's not entirely clear to me why I have to reproduce all of this. - ghc-options: - -Wall - -fwarn-hi-shadowing - -fwarn-missing-signatures - -fwarn-name-shadowing - -fwarn-orphans - -fwarn-type-defaults - -fwarn-tabs - -fwarn-incomplete-record-updates - -fwarn-monomorphism-restriction - -fwarn-unused-do-bind - -rtsopts - -threaded - -optc-O3 - -optc-march=native source-repository head