aboutsummaryrefslogtreecommitdiffstats
path: root/src/config.lisp
AgeCommit message (Collapse)Author
2022-05-08Hide debug output behind `verbose` config optionTeddy Wing
Don't print any output by default.
2022-05-08deliver-email: Send email data to programTeddy Wing
Allow a "sendmail" program to be configured. If set, `deliver-email` will spawn the program and write the email its standard input. We can thus send the email by invoking the external program.
2022-05-08Start of email buildingTeddy Wing
Take a recipient email address. Build an email containing the issue details. Change the `run` loop to only operate on a single issue for testing purposes.
2022-05-08config.lisp: Fix formattingTeddy Wing
2022-05-08Move configuration into a `config` objectTeddy Wing
We can later make a config from command line arguments. Also don't require "https://" prefix from endpoint config. Doesn't make sense to require that in the input when we can add it in the program.