summaryrefslogtreecommitdiff
path: root/IDEAS.org
blob: 73f1332b569cfc7b4fb50a24219e3055b8fb960c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
#+STARTUP:showall
* IDEAS

Ideas for future enhancements. We collect those here so they don't clutter up
the Github issue list, i.e. without any clear plan for adding in the near
future.

** mu

- Support indexing PDF (and other) attachments. This can be done extending
  process_message_part in mu-message.cc; instead of using something
  PDF-specific, we could pipe a PDF through some tool to extract text; and we'd
  need some way for users to specify a MIME-type => tool mapping  (in Config).
  https://github.com/djcb/mu/issues/2117

- Include "message summary" in message information, for display in the headers
  buffer: https://github.com/djcb/mu/issues/1821 It's not so easy to get a
  useful one line description... perhaps the first line after the "Dear x,"?
  Moreover, this requires new functionality on the headers-view side as well.

- Try to guess the encodings; sometimes people send messages that e.g., claim
  they are ISO-8859-1 but actually use windows-1252, resulting in some
  characters being shown incorrectly. Perhaps best solved by GMime, but maybe mu
  can do something. https://github.com/djcb/mu/issues/2700

- More sorting options: in mu4e, display the messages from old-to-new (still get
  the newest though) https://github.com/djcb/mu/issues/2759. Or, from
  new-to-old, reversed in thread: https://github.com/djcb/mu/issues/2807

** mu4e

- Allow for *muting* messages https://github.com/djcb/mu/issues/636 Useful;
  probably need to do this by *remembering* the thread-id of muted messages; and
  management (unmute etc.). Perhaps at the mu side, a list of thread-id to add
  to each query for what *not* to match.

- Support *creating* calendar invitations.
  https://github.com/djcb/mu/issues/2308
  Shouldn't be _too_ hard, for someone that uses the functionality.

- Apply the same action on multiple message, i.e., support "aggregate actions"
  apply to a set of messages, e.g. apply patch-set in a set of messages. That'll
  require some advanced scripting, maybe using Guile.
  https://github.com/djcb/mu/issues/301 https://github.com/djcb/mu/issues/2704

- As the flip-side of the previous, apply multiple marks/actions on the same
  message. https://github.com/djcb/mu/issues/2671

- Make sorting stable if there are multiple messages with the same date. We
  _could_ do this by adding some random millisecs to each message's timestamp; _or_
  complicating the search (i.e., the message hash?). Maybe leave as is?
  https://github.com/djcb/mu/issues/2527

- Perhaps better support file names with commas.. perhaps temporarily add some
  invisible unicode to fool crm-separator?
  https://github.com/djcb/mu/issues/2768

- More general, make the MIME-part handling in the viewer a bit better, we have
  the ~e~-path and the ~A~-path which is a bit confusing. Perhaps we should generate
  the MIME parts off-screen (buffer).
  https://github.com/djcb/mu/issues/2647

- Org-link type for any message matching some reference See:
  https://github.com/djcb/mu/issues/2787. Some first steps implemented
  (searching for references).

- Reply/forward/... to multiple messages at once. This is sometimes useful, and
  Gnus supports it. Does not seem trivial to re-use the Gnus code... (see
  ~gnus-summary-work-articles~ etc.).
  https://github.com/djcb/mu/issues/2799

- Add some way to add a quick bookmark for (e.g.)  the current thread
  https://github.com/djcb/mu/issues/2804

- Support running mu4e over tramp
  https://github.com/djcb/mu/issues/2815
  Seems this is mostly possible already:
    1. set mu4e-mu-binary to a shell script that sshes into the mail machine
    2. added a custom file-name-handler-alist handler that implements file
       operations for my mail directory by proxying to tramp
  But perhaps can be documented.

- Allow for watching notifications externally, perhaps using alert.el
  https://github.com/djcb/mu/issues/2825

* Done

** DONE Support mu4e-mark-handle-when also for when leaving emacs
  (kill-emacs-query-functions).
  https://github.com/djcb/mu/issues/2649

** DONE Support automatic handling for List-Unsubscribe headers and more in general,
  handle mailing-list commands https://github.com/djcb/mu/issues/2623 and
  https://github.com/djcb/mu/issues/2724 This seems useful, but probably
  requires a lot of testing to get right. Can we re-use the Gnus code for this?

  Yes: this is implemented now, in 1.12.9. Various Gnus' mailing list commands
  are now available in the mu4e message view as well, such as
  ~gnus-mailing-list-subscribe~, ~gnus-mailing-list-unsubscribe~.

** DONE perhaps use =--personal-addres= instead of =--my-address= for consistency
  https://github.com/djcb/mu/issues/2806 (done as per 1.12.12)