diff options
Diffstat (limited to 'net-mail/mailbox-count')
-rw-r--r-- | net-mail/mailbox-count/Manifest | 2 | ||||
-rw-r--r-- | net-mail/mailbox-count/metadata.xml | 74 |
2 files changed, 38 insertions, 38 deletions
diff --git a/net-mail/mailbox-count/Manifest b/net-mail/mailbox-count/Manifest index 68be9bd7ad4b..3897f2625119 100644 --- a/net-mail/mailbox-count/Manifest +++ b/net-mail/mailbox-count/Manifest @@ -1,3 +1,3 @@ DIST mailbox-count-0.0.2.tar.gz 20644 SHA256 6eef4b2300a8a5a53bb44ec8c192324025ebddcdc81c2ba145f812a941dba3fd SHA512 98e39927382719295260c64bd5888244000dbbb3fbd7f6405dcffe78a4fc5f1dea7f8236542e58eb0118bb421c19225a8be0560b92c7688c0701418c7221d569 WHIRLPOOL e8a01030415a3be24926d9b0f6ba812a706d361f065c3b8a7622ab532f31282f4d506e976f1fefdf208039ddc95e1e9b8002e27e01d67ca3648cb85cf7cff7e8 EBUILD mailbox-count-0.0.2-r1.ebuild 829 BLAKE2B e51fb757e9b59f080554f53766ec649b6a58f83d2973fd5e3d409bd221ccb23a5bc19fca582ce5ba1b4819b0cba151c55f80e5be5ba03a70ce96a2e406e07232 SHA512 d3b85760e190f0d098dd16220a19bcd6de3338a8b0f7b340951045a454efd2c451688146c4409fcc292c33cda4d2411b91f29262dfd08be6590b034665bb3f0e -MISC metadata.xml 3362 BLAKE2B e43d0051ed4b01e06177b0025c481c9b502dfc914aefbc15fbb87fde9ea17c4f020e3519072e452171914ac879a7a865b33eec7a7c79f86773987c9701d51601 SHA512 5f2021684ece017c676578ec2508e69cf3f4769cfed9282276e962f98ca9114fa67cb197875f45266cca1d77aced83a5af1d08daa33957f5c7661c75949e164c +MISC metadata.xml 3288 BLAKE2B 15a60ecab50dad246513c9060e9cf73b4a00c4a6264085357c04461e83a262497780c831823fd54a94d2c2a2b10cd836c51632e24683bbc5d0541d657e383a4e SHA512 95bbd72ec2a640fc2f4d9b67ce8388edbf3b7e01e181bc874fd62d11fabc5858506c35e613bb9215e6732ae4c968ad87df3b93b917cded023691452d0368e8d9 diff --git a/net-mail/mailbox-count/metadata.xml b/net-mail/mailbox-count/metadata.xml index fb7f98befbe3..7660ec6aa1f9 100644 --- a/net-mail/mailbox-count/metadata.xml +++ b/net-mail/mailbox-count/metadata.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> <pkgmetadata> - <maintainer type="person"> + <maintainer type="person"> <email>mjo@gentoo.org</email> <name>Michael Orlitzky</name> </maintainer> @@ -11,107 +11,107 @@ </maintainer> <longdescription> /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 <http://postfixadmin.sourceforge.net/>, 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) @@ -121,9 +121,9 @@ example.net: 2 example.org: 1 @ - + The more detailed report: - + @ $ mailbox-count --detail --database=postfixadmin.sqlite3 Detail (list of all mailboxes by domain) |