Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | scripts: Allow the REPL to listen on Unix domain sockets. | Arun Isaac | 2022-01-07 | 1 | -12/+15 |
| | | | | | | | * scripts/mumi.in (%options): Do not error out on non-numeric listen-repl arguments. Spawn REPL server on a TCP socket if listen-repl is numeric, else spawn REPL server on a Unix domain socket. | ||||
* | scripts: Make web server address and port configurable. | Arun Isaac | 2022-01-07 | 1 | -3/+22 |
| | | | | | | * scripts/mumi.in (%options): Add address and port options. (show-mumi-usage): Mention address and port in mumi web usage. Pass on address and port options to start-mumi-web-server. | ||||
* | web: Parameterize web server listen address. | Arun Isaac | 2022-01-07 | 1 | -1/+1 |
| | | | | | | * mumi/web/server.scm (start-mumi-web-server): Accept web server listen address as argument. * scripts/mumi.in: Pass 0.0.0.0 as web server listen address. | ||||
* | scripts: Report REPL server port. | Arun Isaac | 2022-01-07 | 1 | -1/+4 |
| | | | | * scripts/mumi.in: Report REPL server port on current-error-port. | ||||
* | Goodbye, SQLite! | Ricardo Wurmus | 2020-05-13 | 1 | -8/+0 |
| | |||||
* | scripts: Do not use soap-invoke*. | Ricardo Wurmus | 2020-05-10 | 1 | -10/+6 |
| | | | | | * scripts/mumi.in (update-state!): Use extract-bug-numbers instead of connecting to the Debbugs SOAP service. | ||||
* | scripts: Reduce update interval. | Ricardo Wurmus | 2020-04-22 | 1 | -1/+1 |
| | |||||
* | scripts: Do full index every 10 cycles. | Ricardo Wurmus | 2020-04-22 | 1 | -20/+26 |
| | |||||
* | scripts: Update module imports. | Ricardo Wurmus | 2020-04-22 | 1 | -2/+4 |
| | |||||
* | scripts: Use index!. | Ricardo Wurmus | 2020-04-22 | 1 | -6/+11 |
| | |||||
* | scripts: Remove mu-index. | Ricardo Wurmus | 2020-04-22 | 1 | -11/+0 |
| | |||||
* | scripts: Give update-state! optional loop argument. | Ricardo Wurmus | 2020-04-22 | 1 | -28/+21 |
| | |||||
* | messages: Remove update-mboxes!. | Ricardo Wurmus | 2020-04-22 | 1 | -2/+0 |
| | |||||
* | scripts: Show mumi usage info. | Ricardo Wurmus | 2020-04-22 | 1 | -1/+2 |
| | |||||
* | scripts: Add show-mumi-usage. | Ricardo Wurmus | 2020-04-22 | 1 | -0/+18 |
| | |||||
* | WIP: Remove mumimu. | Ricardo Wurmus | 2020-04-22 | 1 | -5/+0 |
| | | | | Good riddance! | ||||
* | Revert "scripts: update-state!: Do a full refresh every 100 times." | Ricardo Wurmus | 2020-04-07 | 1 | -29/+19 |
| | | | | This reverts commit 5c21d1deb3e534aedaaae4802423db0a5df041b0. | ||||
* | scripts: Add "fetch" command. | Ricardo Wurmus | 2020-04-07 | 1 | -0/+12 |
| | | | | This is to fetch all emails, including archived ones. | ||||
* | scripts: update-state!: Do a full refresh every 100 times. | Ricardo Wurmus | 2020-04-07 | 1 | -19/+29 |
| | |||||
* | scripts: Use update-mboxes!. | Ricardo Wurmus | 2020-04-07 | 1 | -2/+10 |
| | |||||
* | scripts: Remove fetch-messages!. | Ricardo Wurmus | 2020-04-07 | 1 | -25/+0 |
| | |||||
* | scripts: Remove "fetch" command. | Ricardo Wurmus | 2020-04-07 | 1 | -2/+0 |
| | |||||
* | scripts: fetch-messages!: Fetch new bugs first. | Ricardo Wurmus | 2020-04-07 | 1 | -1/+1 |
| | |||||
* | Rewrite script and add "mailer" command. | Ricardo Wurmus | 2020-04-05 | 1 | -20/+33 |
| | | | | | The scirpt now takes a mandatory first argument and a bunch of options. | ||||
* | scripts: Fetch messages regularly. | Ricardo Wurmus | 2020-03-31 | 1 | -21/+25 |
| | |||||
* | scripts: Catch any errors in worker and restart. | Ricardo Wurmus | 2020-03-30 | 1 | -4/+11 |
| | |||||
* | scripts: Adjust error message on index failure. | Ricardo Wurmus | 2020-03-12 | 1 | -2/+2 |
| | | | | * scripts/mumi.in (mu-index): Don't use undeclared variable COMMAND. | ||||
* | scripts: Index mails before initialization. | Ricardo Wurmus | 2020-03-12 | 1 | -0/+1 |
| | |||||
* | scripts: Add worker option to refresh database. | Ricardo Wurmus | 2020-03-12 | 1 | -24/+36 |
| | | | | | * scripts/mumi.in: Update the mu index and the Sqlite database when the "--worker" option is provided. | ||||
* | scripts: Initialize mumimu mail directory. | Ricardo Wurmus | 2020-03-11 | 1 | -0/+2 |
| | | | | * scripts/mumi.in: Initialize configured mail directory. | ||||
* | scripts: Regularly index the mail directory. | Ricardo Wurmus | 2019-07-21 | 1 | -0/+17 |
| | | | | | | | * configure.ac: Detect mu. * guix.scm: Add "mu" to the environment. * mumi/config.scm.in (%config)[mu-executable]: Add it. * scripts/mumi.in: Spawn "mu index" regularly. | ||||
* | scripts: Add support for "--fetch" option. | Ricardo Wurmus | 2019-07-21 | 1 | -7/+41 |
| | | | | | | | * scripts/mumi.in (%options): Recognize "fetch" option. (%default-options): Set default for "fetch". * mumi/config.scm.in (%config): Remove extraneous quotes from "lists" and "packages". | ||||
* | Support live hacking. | Arun Isaac | 2018-11-09 | 1 | -1/+40 |
| | | | | | * scripts/mumi.in: Spawn REPL server to support live hacking, if --listen-repl is provided on the command line. | ||||
* | Goodbye mu, hello guile-debbugs! | Ricardo Wurmus | 2018-08-28 | 1 | -2/+1 |
| | |||||
* | Initial commit. | Ricardo Wurmus | 2017-10-30 | 1 | -0/+25 |