Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Upgrade dependencies | 2023-10-05 | 3 | -21/+27 | |
| | |||||
* | themes/sourcehut: fix sourcehut theme | 2023-09-20 | 2 | -8/+8 | |
| | | | | | With the newer version of `go-imap` some properties got renamed and sourcehut theme stop working. | ||||
* | plugins/base: use imap.Flag for MessageRenderData.Flags map key | 2023-09-20 | 1 | -3/+3 | |
| | | | | Slightly more type-safe. | ||||
* | plugins/base: sort search results by date | 2023-08-09 | 1 | -5/+21 | |
| | | | | | | | | Implement server-side sorting of search results using the SORT extension to IMAP, if the server supports it. Otherwise, fall back to the unordered SEARCH command. Sort messages by sent date, in descending order. | ||||
* | themes/alps: handle messages without text parts | 2023-08-06 | 1 | -9/+5 | |
| | | | | Fixes: https://todo.sr.ht/~migadu/alps/165 | ||||
* | plugins/base: fix empty last search page | 2023-08-02 | 1 | -14/+6 | |
| | | | | | Fix an empty search page appearing when the total number of search results is a multiple of the number of messages per page. | ||||
* | Upgrade dependencies | 2023-08-02 | 3 | -58/+61 | |
| | | | | In particular, go-imap is upgraded to v2.0.0-alpha.6. | ||||
* | themes/alps: fix search pagination links | 2023-08-02 | 1 | -2/+2 | |
| | |||||
* | plugins/base: fix nil pointer deref on invalid From or To address | 2023-07-02 | 1 | -2/+10 | |
| | |||||
* | Use LIST-STATUS to fetch unread message count for all mailboxes | 2023-05-01 | 2 | -4/+30 | |
| | |||||
* | Upgrade to go-imap v2 | 2023-04-30 | 14 | -374/+352 | |
| | |||||
* | Ensure Drafts mailbox is selected before searching for Message-Id | 2023-03-17 | 1 | -0/+4 | |
| | |||||
* | plugins/base: fix unread count missing for INBOX and active | 2023-03-16 | 1 | -10/+13 | |
| | |||||
* | themes/alps: fix "move to" select in message view | 2023-03-09 | 1 | -2/+2 | |
| | |||||
* | Upgrade dependencies | 2023-03-09 | 2 | -52/+58 | |
| | |||||
* | Upgrade go-smtp to latest commit | 2022-10-19 | 2 | -3/+3 | |
| | |||||
* | go fmt | 2022-10-13 | 3 | -16/+16 | |
| | |||||
* | Upgrade dependencies | 2022-10-13 | 2 | -43/+65 | |
| | |||||
* | themes/sourcehut: fix calender event URLs | 2022-06-03 | 1 | -1/+1 | |
| | | | | This makes calendar events viewable in the sourcehut theme. | ||||
* | Upgrade go-webdav dependency | 2022-05-31 | 2 | -3/+3 | |
| | | | | | | | | | | | | | | | | | | | This commit upgrades go-webdav to what is currently the master branch. The go-webdav client implementation gained some features with regards to service discovery that alps can benefit from. With this change, one can pass e.g. the following upstream URL: carddav+insecure://example.com/.well-known/carddav This URL is defined in [RFC 6764, section 6][1]. If the server supports it, it will respond with a redirect to the currently authenticated user's principal URL. In the version used so far, the go-webdav client does not handle this redirect well. [1]: https://datatracker.ietf.org/doc/html/rfc6764#section-6 See also: https://github.com/emersion/go-webdav/commit/0363312 | ||||
* | Upgrade dependencies | 2022-05-07 | 2 | -79/+76 | |
| | |||||
* | gracefully fail when no messages are selected for deletion or moving | 2022-05-07 | 1 | -0/+10 | |
| | |||||
* | carddav: fix accidental shadowing of variables | 2022-03-01 | 1 | -1/+1 | |
| | | | | | | | The statement changed here creates new variables, whereas it means to assign values to the previously declared `ao` to be used outside of the if statement. This lead to PUT requests always being sent to a URL containing a new UUID, causing problems with some CardDAV servers. | ||||
* | Show notice & error code on failed login | 2022-02-25 | 1 | -1/+2 | |
| | | | | | Upon failed login, this patch sets the status code to 401 and provides a Notice to show in login.html | ||||
* | sourcehut theme: show only loaded plugin links and and mark current active ↵ | 2021-09-29 | 1 | -8/+23 | |
| | | | | | | plugin name Signed-off-by: Alexey Terentyev <[email protected]> | ||||
* | make path to themes configurable via ldflags | 2021-09-12 | 3 | -13/+17 | |
| | |||||
* | themes/sourcehut: fallback to Mailbox@Hostname | 2021-08-23 | 1 | -1/+5 | |
| | |||||
* | Simplify | 2021-08-04 | 3 | -10/+8 | |
| | |||||
* | Use shorter if syntax | 2021-08-04 | 2 | -6/+3 | |
| | |||||
* | plugins/{carddav,caldav}: remove unused conversion | 2021-08-04 | 2 | -2/+2 | |
| | |||||
* | sessions: remove unused property | 2021-08-04 | 1 | -1/+0 | |
| | |||||
* | Upgrade dependencies | 2021-07-05 | 2 | -169/+85 | |
| | |||||
* | go fmt | 2021-07-05 | 5 | -27/+27 | |
| | |||||
* | Fix crash in alps theme when common mailboxes are not present. | 2021-07-05 | 1 | -24/+30 | |
| | | | | | | Fixes https://todo.sr.ht/~migadu/alps/154 Signed-off-by: Martin Ashby <[email protected]> | ||||
* | Add error page for sourcehut theme. | 2021-07-04 | 1 | -0/+14 | |
| | | | | Signed-off-by: Martin Ashby <[email protected]> | ||||
* | Add 'remember me' checkbox to sourcehut theme login page. | 2021-07-04 | 1 | -0/+13 | |
| | | | | Signed-off-by: Martin Ashby <[email protected]> | ||||
* | Add documentation for -login-key cli option | 2021-07-04 | 1 | -0/+8 | |
| | |||||
* | Identify JavaScript as MIT/Expat for LibreJS | 2021-04-03 | 3 | -0/+12 | |
| | | | | | | | | | This commit introduces LibreJS compatible `@license' blocks as per https://www.gnu.org/software/librejs/free-your-javascript.html The magnet URI can be opened in a BitTorrent client to retrieve a copy of the MIT/Expat license. Section 3.2.2.1 from the above link has a list of magnet URIs for various free software licenses. | ||||
* | Fix link to mailing list | 2020-11-24 | 1 | -1/+1 | |
| | |||||
* | Repoint repository references to new location | 2020-11-20 | 21 | -37/+37 | |
| | |||||
* | Implement mailbox subscriptions | 2020-11-19 | 4 | -42/+109 | |
| | |||||
* | Fix issues with to/from headers | 2020-11-19 | 5 | -13/+38 | |
| | |||||
* | s/email/text/ in To & From fields | 2020-11-19 | 1 | -1/+1 | |
| | | | | type="email" does not validate RFC 2822 address lists | ||||
* | Add "Full name" option to settings | 2020-11-19 | 2 | -2/+28 | |
| | | | | This provides the name portion of your From header in the compose view. | ||||
* | JS enhancements to encourage bottom-posting | 2020-11-19 | 2 | -0/+9 | |
| | |||||
* | Implement message signature setting | 2020-11-19 | 3 | -3/+32 | |
| | |||||
* | Remove "this email was deleted by another client" | 2020-11-19 | 1 | -10/+0 | |
| | | | | | | | | I was on the fence about adding this in the first place. The state of an email being \Deleted but still in this inbox is unusual, and unlikely to occur unless the user is already somewhat knowledgable about IMAP and utilizing power-user-level tooling which could cause the situation to arise. Alps does not target that kind of user, so this can be hidden. | ||||
* | Add notices on action completion | 2020-11-19 | 6 | -1/+33 | |
| | |||||
* | Convert HTML to plaintext for forwarding & replies | 2020-11-19 | 3 | -16/+41 | |
| | |||||
* | Fix name of HTML tab in HTML-only emails | 2020-11-19 | 1 | -1/+7 | |
| |