<feed xmlns='http://www.w3.org/2005/Atom'>
<title>aerc/doc, branch mbox</title>
<subtitle>Mirror of https://git.sr.ht/~sircmpwn/aerc
</subtitle>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/aerc/'/>
<entry>
<title>Add search documentation for maildir backend</title>
<updated>2019-09-16T16:40:26+00:00</updated>
<author>
<name>Jeffas</name>
<email>dev@jeffas.io</email>
</author>
<published>2019-09-14T17:05:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/aerc/commit/?id=35dc57ed90f8c26fd2f792b312934acdcaaf5269'/>
<id>35dc57ed90f8c26fd2f792b312934acdcaaf5269</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add signatures</title>
<updated>2019-09-12T20:18:34+00:00</updated>
<author>
<name>Jeffas</name>
<email>dev@jeffas.io</email>
</author>
<published>2019-09-11T19:28:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/aerc/commit/?id=e2d5c456dc27f958d79fdf740c7b0852b2af4160'/>
<id>e2d5c456dc27f958d79fdf740c7b0852b2af4160</id>
<content type='text'>
This adds the ability for per-account signatures in the accounts.conf
config file. The signature is added to emails in the editor at the
bottom of the email. This includes when forwarding, replying to, and
composing emails.

There are two config options: signature-file and signature-cmd. The
former allows a signature to be read from a file and the latter allows
an arbitrary command to be executed to return the signature.

The config options have been documented in aerc-config
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This adds the ability for per-account signatures in the accounts.conf
config file. The signature is added to emails in the editor at the
bottom of the email. This includes when forwarding, replying to, and
composing emails.

There are two config options: signature-file and signature-cmd. The
former allows a signature to be read from a file and the latter allows
an arbitrary command to be executed to return the signature.

The config options have been documented in aerc-config
</pre>
</div>
</content>
</entry>
<entry>
<title>Add modify-labels command</title>
<updated>2019-09-12T20:17:24+00:00</updated>
<author>
<name>Reto Brunner</name>
<email>reto@labrat.space</email>
</author>
<published>2019-09-11T19:01:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/aerc/commit/?id=a93b4de6f3c362d6e0db0b1f6d3f2e1c9a5cd64d'/>
<id>a93b4de6f3c362d6e0db0b1f6d3f2e1c9a5cd64d</id>
<content type='text'>
This adds the event type as well as the command implementation, but no backend
supports it yet.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This adds the event type as well as the command implementation, but no backend
supports it yet.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add display of unread messages in dirlist</title>
<updated>2019-09-11T16:37:43+00:00</updated>
<author>
<name>Jeffas</name>
<email>dev@jeffas.io</email>
</author>
<published>2019-09-11T16:37:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/aerc/commit/?id=618a500341d54ec5bec6d035a86b1307ff1dad0a'/>
<id>618a500341d54ec5bec6d035a86b1307ff1dad0a</id>
<content type='text'>
Add an onUpdateDirs handler. This is used to invalidate the dirlist and
redraw with the correct number of recent/unread/total messages is shown.

A config option and formatting options are provided.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add an onUpdateDirs handler. This is used to invalidate the dirlist and
redraw with the correct number of recent/unread/total messages is shown.

A config option and formatting options are provided.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add new search behaviour for imap</title>
<updated>2019-09-11T16:24:27+00:00</updated>
<author>
<name>Jeffas</name>
<email>dev@jeffas.io</email>
</author>
<published>2019-09-09T20:37:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/aerc/commit/?id=32381592fc335bc26a06cee847df926b9f6e6c06'/>
<id>32381592fc335bc26a06cee847df926b9f6e6c06</id>
<content type='text'>
This patch adds search behaviour to allow searching in the body of the
messages, the entire text (body + header), and searching just the from
header.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This patch adds search behaviour to allow searching in the body of the
messages, the entire text (body + header), and searching just the from
header.
</pre>
</div>
</content>
</entry>
<entry>
<title>Allow custom spinner via config file</title>
<updated>2019-08-30T01:32:28+00:00</updated>
<author>
<name>Paul Spooren</name>
<email>mail@aparcar.org</email>
</author>
<published>2019-08-30T01:30:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/aerc/commit/?id=e4104a867401e383ef2b45f4c449b8b3fa25e69b'/>
<id>e4104a867401e383ef2b45f4c449b8b3fa25e69b</id>
<content type='text'>
Allows to set `ui.spinner=` to a string which is then split by
`ui.spinner-delimiter=` (Default: comma) instead of having a hard coded
animation.

This implementation doesn't use INIs capabilities to split strings as
it trims whitespaces breaking the default animation.

Signed-off-by: Paul Spooren &lt;mail@aparcar.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Allows to set `ui.spinner=` to a string which is then split by
`ui.spinner-delimiter=` (Default: comma) instead of having a hard coded
animation.

This implementation doesn't use INIs capabilities to split strings as
it trims whitespaces breaking the default animation.

Signed-off-by: Paul Spooren &lt;mail@aparcar.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>notmuch: add search / filter capabilities</title>
<updated>2019-08-28T23:44:11+00:00</updated>
<author>
<name>Reto Brunner</name>
<email>reto@labrat.space</email>
</author>
<published>2019-08-28T04:39:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/aerc/commit/?id=f13f9a86849ff8b4616aa7b462ed171833e02a95'/>
<id>f13f9a86849ff8b4616aa7b462ed171833e02a95</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>extract search criteria parsing into the backends</title>
<updated>2019-08-28T23:44:10+00:00</updated>
<author>
<name>Reto Brunner</name>
<email>reto@labrat.space</email>
</author>
<published>2019-08-28T04:39:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/aerc/commit/?id=94b9d557dee0fd13853b1883cc2730c5cbdbcd3f'/>
<id>94b9d557dee0fd13853b1883cc2730c5cbdbcd3f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add :prompt command</title>
<updated>2019-08-26T00:48:39+00:00</updated>
<author>
<name>Christopher Vittal</name>
<email>christopher.vittal@gmail.com</email>
</author>
<published>2019-08-20T01:56:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/aerc/commit/?id=ecd803aae4ea1ba23d291325d52a53c19216e64b'/>
<id>ecd803aae4ea1ba23d291325d52a53c19216e64b</id>
<content type='text'>
Usage:
    :prompt &lt;prompt&gt; &lt;command...&gt;

Displays the prompt on the status bar, waits for user input, then
appends that input as the last argument to the command and executes it.
The input is passed as one argument to the command, unless it is empty,
in which case no extra argument is added.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Usage:
    :prompt &lt;prompt&gt; &lt;command...&gt;

Displays the prompt on the status bar, waits for user input, then
appends that input as the last argument to the command and executes it.
The input is passed as one argument to the command, unless it is empty,
in which case no extra argument is added.
</pre>
</div>
</content>
</entry>
<entry>
<title>folder filter: only assume regex if filter is ~fmt</title>
<updated>2019-08-20T04:04:58+00:00</updated>
<author>
<name>Drew DeVault</name>
<email>sir@cmpwn.com</email>
</author>
<published>2019-08-20T04:04:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/aerc/commit/?id=334ca89bea38132252d092ad6066af100768eff7'/>
<id>334ca89bea38132252d092ad6066af100768eff7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
