aboutsummaryrefslogtreecommitdiffstats
path: root/public/message.html
diff options
context:
space:
mode:
authorLibravatarLibravatar Simon Ser <[email protected]> 2019-12-16 12:51:42 +0100
committerLibravatarLibravatar Simon Ser <[email protected]> 2019-12-16 12:52:44 +0100
commitd897eeee5c4d163891d0b6a8f85d328ccada7575 (patch)
tree39d2428b8f9cb677d79e66cb3763cdaed6147616 /public/message.html
parente83844fbad63a0d6fc2d29a8a412c95f2a419b56 (diff)
downloadalps-d897eeee5c4d163891d0b6a8f85d328ccada7575.tar.gz
alps-d897eeee5c4d163891d0b6a8f85d328ccada7575.tar.bz2
alps-d897eeee5c4d163891d0b6a8f85d328ccada7575.zip
Introduce base plugin
This plugin offers base IMAP/SMTP functionality. References: https://todo.sr.ht/~sircmpwn/koushin/39
Diffstat (limited to 'public/message.html')
-rw-r--r--public/message.html58
1 files changed, 0 insertions, 58 deletions
diff --git a/public/message.html b/public/message.html
deleted file mode 100644
index 729937d..0000000
--- a/public/message.html
+++ /dev/null
@@ -1,58 +0,0 @@
-{{template "head.html"}}
-
-<h1>koushin</h1>
-
-<p>
- <a href="/mailbox/{{.Mailbox.Name | pathescape}}?page={{.MailboxPage}}">
- Back
- </a>
-</p>
-
-<h2>
- {{if .Message.Envelope.Subject}}
- {{.Message.Envelope.Subject}}
- {{else}}
- (No subject)
- {{end}}
-</h2>
-
-{{define "message-part-tree"}}
- {{/* nested templates can't access the parent's context */}}
- {{$ = index . 0}}
- {{with index . 1}}
- <a
- {{if .IsText}}
- href="{{$.Message.Uid}}?part={{.PathString}}"
- {{else}}
- href="{{$.Message.Uid}}/raw?part={{.PathString}}"
- {{end}}
- >
- {{if eq $.PartPath .PathString}}<strong>{{end}}
- {{.String}}
- {{if eq $.PartPath .PathString}}</strong>{{end}}
- </a>
- {{if gt (len .Children) 0}}
- <ul>
- {{range .Children}}
- <li>{{template "message-part-tree" (tuple $ .)}}</li>
- {{end}}
- </ul>
- {{end}}
- {{end}}
-{{end}}
-
-<p>Parts:</p>
-
-{{template "message-part-tree" (tuple $ .Message.PartTree)}}
-
-<hr>
-
-{{if .Body}}
- <p><a href="{{.Message.Uid}}/reply?part={{.PartPath}}">Reply</a></p>
- <pre>{{.Body}}</pre>
-{{else}}
- <p>Can't preview this message part.</p>
- <a href="{{.Message.Uid}}/raw?part={{.PartPath}}">Download</a>
-{{end}}
-
-{{template "foot.html"}}