aboutsummaryrefslogtreecommitdiff
path: root/plugins/base
diff options
context:
space:
mode:
authorSimon Ser <contact@emersion.fr>2020-02-25 14:06:10 +0100
committerSimon Ser <contact@emersion.fr>2020-02-25 14:06:10 +0100
commit02faf6174b3d94efd1ee3cc842b55001639a8983 (patch)
tree6308380eac90d6707ca8d5499c7cac5705ed302a /plugins/base
parent62660f8d1d24d8d03d6032b87366ed0e5fd0be41 (diff)
downloadalps-02faf6174b3d94efd1ee3cc842b55001639a8983.tar.gz
alps-02faf6174b3d94efd1ee3cc842b55001639a8983.zip
plugins/viewhtml: convert mailto links
Diffstat (limited to 'plugins/base')
-rw-r--r--plugins/base/routes.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/base/routes.go b/plugins/base/routes.go
index ad4d121..9dd110a 100644
--- a/plugins/base/routes.go
+++ b/plugins/base/routes.go
@@ -431,6 +431,7 @@ func handleCompose(ctx *koushin.Context, msg *OutgoingMessage, draft *messagePat
func handleComposeNew(ctx *koushin.Context) error {
// These are common mailto URL query parameters
+ // TODO: cc, bcc
return handleCompose(ctx, &OutgoingMessage{
To: strings.Split(ctx.QueryParam("to"), ","),
Subject: ctx.QueryParam("subject"),