summaryrefslogtreecommitdiff
path: root/guile/examples
AgeCommit message (Collapse)Author
2025-01-04guile: Fix the mu:body message methodThiago Jung Bauermann
Somewhere along the way, the body-txt and body-html fields were merged into a single body field. Later, commit 8eac3922215c ("guile: re-enable the guile support") finally removed support for Field::Id::BodyHtml from mu:c:get-field. Unfortunately mu.scm and the documentation are still stuck in the past, so update them. mu:body-txt is now a synonym for mu:body, and mu:body-html always returns #f. I wanted to add a mu:body test also for the rfc822.1 message, but there's currently a bug where its body text is is duplicated (issue #2802), so the test would fail.
2022-08-20autotools: removeDirk-Jan C. Binnema
Since 2008, autotools has served us well - thank you! However, mu is now using meson build, and it's time to remove the autotools support -- one build system is enough.
2019-05-11Fix handling of --text option in `msg-graphs' examplePiyush
The previous implementation of `msg-graphs` called `mu:plots/mu:plot` with output set to `#t` when the option `--text` was passed. This caused an error in the `string-append` call in `mu:plot` since the expression `(or output "dumb")` evaluated to the symbol `#t` rather than a string. This commit fixes this by making sure that `mu:plot` is called with `output` set to `"dumb"` when the option `--text` is passed to `msg-graphs`, and with `output` set to `"wxt"` (the default multi-platform graphical output device in `gnuplot`) otherwise. This is done by essentially making the code of `msg-graphs` agree with the plotting code in the `guile/scripts` directory.
2013-03-30* more more copyright year updatesdjcb
2012-09-17* guile: update some of the examplesdjcb
2012-08-28* guile: don't use obsolete 'message' module anymore in examples/org2mu4edjcb
2012-07-14* guile: make sure the examples still workdjcb
2012-07-12* guile: some internal improvementsdjcb
2012-07-10* guile: add mu-biff example, to find new maildjcb
2012-06-06* guile: add format 'quoted' to contacts, use it in the example scriptdjcb
2012-05-04* small fixes in address generation, mu:contact->stringdjcb
2012-04-28* guile/examples/msg-graphs: show years correctly in graphs, add year-month ↵djcb
period
2012-01-22* fix contacts-export, msg-graphsdjcb
2012-01-22* guile: fix logic inversion in plot generationdjcb
2012-01-22* guile/examples: use EXTRA_DIST, not noinst_DISTdjcb
2012-01-21* add org2mu4e example scriptdjcb
script export query results to org-mode links to the messages (in mu4e)
2012-01-15* update guile examplesdjcb
2012-01-15* rename msg-stats => msg-graphsdjcb
2012-01-09* guile: update examplesdjcb
2012-01-07* mu-guile: make the examples work after mu:initialize api changesdjcb
2012-01-01msg-stats: update for mu-guile changes, remove unneeded stuffdjcb
2012-01-01* guile cleanup/overhaul (WIP)djcb
2011-12-30* guile support cleanup (WIP)djcb
2011-12-23* some renaming in guile/djcb
2011-12-23* add an example guile script for querying contacts (WIP)djcb
2011-12-20* mu-msg-stats: support cmdline arguments, --muhome etc.djcb
2011-12-14* added an example guile scriptdjcb