<feed xmlns='http://www.w3.org/2005/Atom'>
<title>aerc/doc, branch master</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>Document smtp-starttls</title>
<updated>2020-03-02T09:39:13+00:00</updated>
<author>
<name>Peter Lamby</name>
<email>Peter.Lamby@direkt-gruppe.de</email>
</author>
<published>2020-03-02T09:10:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/aerc/commit/?id=2e381fa42d64442262335101fe3b7bf76ab50b92'/>
<id>2e381fa42d64442262335101fe3b7bf76ab50b92</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>note in aerc-templates.7.scd for toLocal function</title>
<updated>2020-02-25T22:45:29+00:00</updated>
<author>
<name>sqwishy</name>
<email>somebody@froghat.ca</email>
</author>
<published>2020-02-25T22:44:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/aerc/commit/?id=31489e3baaa0e096cf01e9dbf3884aeaf65e579d'/>
<id>31489e3baaa0e096cf01e9dbf3884aeaf65e579d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix typo in message view section</title>
<updated>2020-02-12T16:51:50+00:00</updated>
<author>
<name>Erazem Kokot</name>
<email>contact@erazem.eu</email>
</author>
<published>2020-02-12T15:43:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/aerc/commit/?id=a82fa2bf23e58a024bf9fcd4ca8dc3d9160d3cba'/>
<id>a82fa2bf23e58a024bf9fcd4ca8dc3d9160d3cba</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Contextual UI Configuration</title>
<updated>2020-01-24T15:50:21+00:00</updated>
<author>
<name>Srivathsan Murali</name>
<email>sri@vathsan.com</email>
</author>
<published>2020-01-23T12:56:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/aerc/commit/?id=b2fa5a16f52741a6f7f6e5f33561457d702dc31d'/>
<id>b2fa5a16f52741a6f7f6e5f33561457d702dc31d</id>
<content type='text'>
+ Adds parsing of contextual ui sections to aerc config.
+ Add GetUiConfig method for AercConfig that is used to get the
  specialized UI config.
+ Add UiConfig method to AccountView to get specialized UI Config.
+ Modifies Aerc codebase to use specialized UIConfig instead.
+ Adds documentation for Contextual UI Configuration
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
+ Adds parsing of contextual ui sections to aerc config.
+ Add GetUiConfig method for AercConfig that is used to get the
  specialized UI config.
+ Add UiConfig method to AccountView to get specialized UI Config.
+ Modifies Aerc codebase to use specialized UIConfig instead.
+ Adds documentation for Contextual UI Configuration
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix handling of multiple template-dirs</title>
<updated>2020-01-24T11:11:03+00:00</updated>
<author>
<name>Ben Burwell</name>
<email>ben@benburwell.com</email>
</author>
<published>2020-01-23T17:18:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/aerc/commit/?id=aa967682bcdbeaa11b3e79d66b1d68b129dd4161'/>
<id>aa967682bcdbeaa11b3e79d66b1d68b129dd4161</id>
<content type='text'>
Before, while the docs stated that template-dirs was a colon-separated
list, a delimiter was not specified in the struct tag, so it was falling
back to the default for the ini library (a comma). Also added a note to
the docs to clarify that templates are configured in the [templates]
section.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Before, while the docs stated that template-dirs was a colon-separated
list, a delimiter was not specified in the struct tag, so it was falling
back to the default for the ini library (a comma). Also added a note to
the docs to clarify that templates are configured in the [templates]
section.
</pre>
</div>
</content>
</entry>
<entry>
<title>msgview/save: Adapt to already decoded reader</title>
<updated>2020-01-20T14:21:28+00:00</updated>
<author>
<name>Reto Brunner</name>
<email>reto@labrat.space</email>
</author>
<published>2020-01-19T19:22:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/aerc/commit/?id=5b3acb8034e78680eb8dca472af5dd72af57414e'/>
<id>5b3acb8034e78680eb8dca472af5dd72af57414e</id>
<content type='text'>
The functionality was broken since the decoding changes.
This commit also simplifies the code (in my view) to make the application logic
easier to follow.
The docs are updated accordingly (the feature was poorly documented).

As far as I am aware there should be no breaking changes (and is certainly
still in the spec of the prior documentation)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The functionality was broken since the decoding changes.
This commit also simplifies the code (in my view) to make the application logic
easier to follow.
The docs are updated accordingly (the feature was poorly documented).

As far as I am aware there should be no breaking changes (and is certainly
still in the spec of the prior documentation)
</pre>
</div>
</content>
</entry>
<entry>
<title>Add docs for reply -T</title>
<updated>2020-01-11T14:45:21+00:00</updated>
<author>
<name>Ben Burwell</name>
<email>ben@benburwell.com</email>
</author>
<published>2020-01-09T19:55:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/aerc/commit/?id=240f57848ff64fca5605ad5be4b059ae53f50147'/>
<id>240f57848ff64fca5605ad5be4b059ae53f50147</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>template: man cosmetic changes</title>
<updated>2020-01-09T19:31:19+00:00</updated>
<author>
<name>Leszek Cimała</name>
<email>ernierasta@zori.cz</email>
</author>
<published>2020-01-08T20:44:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/aerc/commit/?id=a40959c129c54aba563828114e8ae58ab14492b1'/>
<id>a40959c129c54aba563828114e8ae58ab14492b1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>template: add exec and wrap</title>
<updated>2020-01-09T19:31:19+00:00</updated>
<author>
<name>Leszek Cimała</name>
<email>ernierasta@zori.cz</email>
</author>
<published>2020-01-08T20:44:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/aerc/commit/?id=bf0f72a533d5c1868b9819f769836ea22d5fa583'/>
<id>bf0f72a533d5c1868b9819f769836ea22d5fa583</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>add .OriginalMIMEType variable to reply template</title>
<updated>2020-01-09T19:31:19+00:00</updated>
<author>
<name>Leszek Cimała</name>
<email>ernierasta@zori.cz</email>
</author>
<published>2020-01-08T20:44:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.benburwell.com/mirrors/aerc/commit/?id=d238272bdbbe5f417c3ec07e5ce39a77a9a97bd9'/>
<id>d238272bdbbe5f417c3ec07e5ce39a77a9a97bd9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
