aboutsummaryrefslogtreecommitdiff
path: root/plugins/base/routes.go
Commit message (Collapse)AuthorAgeFilesLines
* Redirect to edit draft after saving messageDrew DeVault2020-11-131-6/+8
|
* Remove async SMTP queueDrew DeVault2020-11-131-78/+5
|
* Notify server when user discards attachmentDrew DeVault2020-11-121-0/+10
|
* Display server errors on attachment uploadDrew DeVault2020-11-121-3/+10
|
* Carry Message-ID forward through compose processDrew DeVault2020-11-121-1/+1
|
* Don't crash if Outbox is not presentDrew DeVault2020-11-051-4/+2
| | | | Fixes #133
* Implement mailbox deletionDrew DeVault2020-10-301-0/+22
|
* Implement folder creation UIDrew DeVault2020-10-301-0/+44
|
* Copy unsent messages to OutboxDrew DeVault2020-10-301-5/+74
| | | | | | | | | | | This patch: 1. Copies unsent messages to the outbox before attempting to deliver them with SMTP 2. Deletes those messages once they're sent, or leaves them if an error occured 3. Updates the message list to make it obvious when there are unsent messages in the outbox
* compose: don't fail on 0 attachmentsDrew DeVault2020-10-301-1/+5
|
* Implement JavaScript UI for attachmentsDrew DeVault2020-10-291-2/+48
| | | | | | | | | | | | | | | | This one is a bit of a doozy. A summary of the changes: - Session has grown storage for attachments which have been uploaded but not yet sent. - The list of attachments on a message is refcounted so that we can clean up the temporary files only after it's done with - i.e. after copying to Sent and after all of the SMTP attempts are done. - Abandoned attachments are cleared out on process shutdown. Future work: - Add a limit to the maximum number of pending attachments the user can have in the session. - Periodically clean out abandoned attachments?
* message.html: add tab to view raw emailDrew DeVault2020-10-231-1/+5
|
* Send outgoing emails asyncronouslyDrew DeVault2020-10-231-3/+8
|
* Generalize sidebar categorization logicDrew DeVault2020-10-221-87/+100
|
* Categorize and normalize folder listingDrew DeVault2020-10-221-13/+61
|
* Fix nil render data on invalid passwordSimon Ser2020-07-071-9/+10
| | | | | | This would cause this error: template: head.html:7:15: executing "head.html" at <index .Global.Path 0>: error calling index: index of untyped nil
* Stay on the same page after moving a messageZach DeCook2020-06-291-1/+1
|
* base: don't use Client.MailboxSimon Ser2020-05-281-4/+4
| | | | | | | The information returned by Client.Mailbox may be out-of-date. Instead, retrieve the mailbox status from the server each time. Closes: https://todo.sr.ht/~emersion/alps/80
* Add INBOX unread count on mailbox/message pagesSimon Ser2020-05-211-2/+20
|
* login: set encrypted "remember me" tokenDrew DeVault2020-05-201-1/+19
|
* mailbox: show unseen message count in page titleDrew DeVault2020-05-201-0/+4
|
* mailbox: set title to "Inbox" rather than "INBOX"Drew DeVault2020-05-131-1/+6
|
* plugins/base: fix mailbox unread countSimon Ser2020-05-131-2/+6
|
* Use context-appropriate title for mbox/msg viewDrew DeVault2020-05-131-9/+10
|
* Rename project to alpsSimon Ser2020-05-131-34/+34
|
* plugins/base: wrap MailboxInfo and MailboxStatusSimon Ser2020-03-271-10/+10
| | | | | This allows us to extend these and expose helpers for templates and plugins.
* plugins/base: allow redirect param to be a form paramSimon Ser2020-03-271-7/+11
|
* plugins/base: add redirect param to move/delete/flag endpointsSimon Ser2020-03-271-1/+10
|
* plugins/base: allow to specify move/flag params via querySimon Ser2020-03-191-2/+19
|
* plugins/base: allow move/delete/flag operations to take multiple UIDsSimon Ser2020-03-191-13/+35
|
* plugins/base: add action param to handleSetFlagsSimon Ser2020-03-181-1/+17
| | | | This alows to add/remove flags instead of setting them.
* plugins/base: disallow replying to text/html partsSimon Ser2020-03-181-1/+1
|
* plugins/base: add route to forward messagesSimon Ser2020-03-181-20/+98
| | | | | | Only inline forwarding is supported for now. References: https://todo.sr.ht/~sircmpwn/koushin/37
* plugins/base: replace MessageRenderData.PartPath with PartSimon Ser2020-02-251-4/+4
|
* Revert "plugins/viewhtml: convert mailto links"Simon Ser2020-02-251-1/+0
| | | | | | | | | This reverts commit 02faf6174b3d94efd1ee3cc842b55001639a8983. This commit doesn't work, because it's applied to <img> tags. Making it handle <a> tags doesn't work either because bluemonday will strip any target="_blank" attributes, making the compose form open in the <iframe>. Let's just revert this whole commit for now.
* plugins/viewhtml: convert mailto linksSimon Ser2020-02-251-0/+1
|
* Turn message part viewers into pluginsSimon Ser2020-02-121-19/+5
|
* plugins/base: add settings pageSimon Ser2020-01-281-2/+77
| | | | | Add a settings page where the user can change the number of messages displayed per page.
* plugins/base: support attachments in draftsSimon Ser2020-01-281-2/+60
| | | | References: https://todo.sr.ht/~sircmpwn/koushin/16
* plugins/base: delete previous draftSimon Ser2020-01-241-5/+18
|
* plugins/base: edit draftsSimon Ser2020-01-241-62/+137
| | | | Note that attachments will be lost. This is a TODO.
* plugins/base: save message as draftSimon Ser2020-01-241-44/+51
|
* plugins/base: append outgoing messages to Sent mailboxSimon Ser2020-01-201-4/+46
| | | | | | And mark original message as answered. Closes: https://todo.sr.ht/~sircmpwn/koushin/15
* plugins/base: remove external resources URLs, sanitize CSSSimon Ser2020-01-201-1/+4
|
* Make the text/* part content a []byteSimon Ser2020-01-201-4/+3
|
* Extract HTML sanitizer to its own fileSimon Ser2020-01-201-7/+1
|
* Open e-mail links in new tabSimon Ser2020-01-201-0/+1
|
* Resize e-mail iframe with contentSimon Ser2020-01-201-0/+3
|
* Add support for HTML partsSimon Ser2020-01-201-0/+11
|
* Redirect to original URL after loginSimon Ser2020-01-101-0/+3
|