<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mutt-wizard.git/share, branch master</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.
</subtitle>
<link rel='alternate' type='text/html' href='https://git.vinkies.net/mutt-wizard.git/'/>
<entry>
<title>Merge branch 'master' into master</title>
<updated>2025-02-28T09:48:14+00:00</updated>
<author>
<name>Luke Smith</name>
<email>luke@lukesmith.xyz</email>
</author>
<published>2025-02-28T09:48:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vinkies.net/mutt-wizard.git/commit/?id=650794bb1d20c3f7e8d3dfc0fc9a7add8519c5f3'/>
<id>650794bb1d20c3f7e8d3dfc0fc9a7add8519c5f3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>muttrc: use XDG_CACHE_HOME in notmuch integration</title>
<updated>2024-08-14T16:02:38+00:00</updated>
<author>
<name>Yaroslav Chvanov</name>
<email>yaroslav.chvanov@gmail.com</email>
</author>
<published>2024-08-14T15:54:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vinkies.net/mutt-wizard.git/commit/?id=86a1f1d66fb463a8745c3957d8a47037ac9e6ff6'/>
<id>86a1f1d66fb463a8745c3957d8a47037ac9e6ff6</id>
<content type='text'>
Fixes `sh: 1: cannot create /home/&lt;username&gt;/.cache/mutt_terms:
Directory nonexistent`.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes `sh: 1: cannot create /home/&lt;username&gt;/.cache/mutt_terms:
Directory nonexistent`.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #970 from jdujava/master</title>
<updated>2024-07-15T18:50:55+00:00</updated>
<author>
<name>Luke Smith</name>
<email>luke@lukesmith.xyz</email>
</author>
<published>2024-07-15T18:50:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vinkies.net/mutt-wizard.git/commit/?id=4a60fbd4148b06a709c1eb0a384fde7332395184'/>
<id>4a60fbd4148b06a709c1eb0a384fde7332395184</id>
<content type='text'>
fix: rename variables</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
fix: rename variables</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #960 from paniash/add-domain</title>
<updated>2024-07-15T18:33:38+00:00</updated>
<author>
<name>Luke Smith</name>
<email>luke@lukesmith.xyz</email>
</author>
<published>2024-07-15T18:33:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vinkies.net/mutt-wizard.git/commit/?id=08476a2508ae6ed81fa35173a09db0a312a75017'/>
<id>08476a2508ae6ed81fa35173a09db0a312a75017</id>
<content type='text'>
Added `fz-juelich.de` domain</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Added `fz-juelich.de` domain</pre>
</div>
</content>
</entry>
<entry>
<title>fix: rename variables</title>
<updated>2023-12-03T12:39:12+00:00</updated>
<author>
<name>Jonas Dujava</name>
<email>jonas.dujava@gmail.com</email>
</author>
<published>2023-12-03T12:39:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vinkies.net/mutt-wizard.git/commit/?id=32b5e833159ce2041e2f5c62dd36df7a3e370282'/>
<id>32b5e833159ce2041e2f5c62dd36df7a3e370282</id>
<content type='text'>
According to:
  https://neomutt.org/guide/reference.html#3-380-%C2%A0realname
  https://neomutt.org/guide/reference.html#3-480-%C2%A0spoolfile
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
According to:
  https://neomutt.org/guide/reference.html#3-380-%C2%A0realname
  https://neomutt.org/guide/reference.html#3-480-%C2%A0spoolfile
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix escaping in message IDs from notmuch</title>
<updated>2023-11-24T20:39:31+00:00</updated>
<author>
<name>burbschat</name>
<email>b.urbschat@tum.de</email>
</author>
<published>2023-11-24T20:39:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vinkies.net/mutt-wizard.git/commit/?id=0cb17135b9ed52c89f20e671b03decd94ab7b2fe'/>
<id>0cb17135b9ed52c89f20e671b03decd94ab7b2fe</id>
<content type='text'>
`+` was properly escaped but only once. `$` was not escaped at all.
This would result in messages with message IDs containing more than one
`+` or at least on `$` to not be shown after limiting.
`$` itself has to be escaped presumably for the shell. This results in
three prepended backslashes in the limit string and six in the config
file, as there backslashes themselves have to be escaped.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
`+` was properly escaped but only once. `$` was not escaped at all.
This would result in messages with message IDs containing more than one
`+` or at least on `$` to not be shown after limiting.
`$` itself has to be escaped presumably for the shell. This results in
three prepended backslashes in the limit string and six in the config
file, as there backslashes themselves have to be escaped.
</pre>
</div>
</content>
</entry>
<entry>
<title>added `fz-juelich.de` into domain list</title>
<updated>2023-10-12T15:38:34+00:00</updated>
<author>
<name>Ashish Panigrahi</name>
<email>ashish.panigrahi@protonmail.com</email>
</author>
<published>2023-10-12T15:38:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vinkies.net/mutt-wizard.git/commit/?id=97f58830175b1fa9180dfc318c99d225ce672dd1'/>
<id>97f58830175b1fa9180dfc318c99d225ce672dd1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fixed domain for niser.ac.in</title>
<updated>2023-10-12T15:35:54+00:00</updated>
<author>
<name>Ashish Panigrahi</name>
<email>ashish.panigrahi@protonmail.com</email>
</author>
<published>2023-10-12T15:35:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vinkies.net/mutt-wizard.git/commit/?id=b1af6ad2aa8a3900a66998fc64929eb15603d461'/>
<id>b1af6ad2aa8a3900a66998fc64929eb15603d461</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #941 from satchlj/master</title>
<updated>2023-08-02T12:25:26+00:00</updated>
<author>
<name>Luke Smith</name>
<email>luke@lukesmith.xyz</email>
</author>
<published>2023-08-02T12:25:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vinkies.net/mutt-wizard.git/commit/?id=07e4bb14e0b15cf4fe94a1478386f78a19cf00a6'/>
<id>07e4bb14e0b15cf4fe94a1478386f78a19cf00a6</id>
<content type='text'>
fix typo in set crypt_auto_sign</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
fix typo in set crypt_auto_sign</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #945 from vlashada/master</title>
<updated>2023-08-02T12:25:11+00:00</updated>
<author>
<name>Luke Smith</name>
<email>luke@lukesmith.xyz</email>
</author>
<published>2023-08-02T12:25:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.vinkies.net/mutt-wizard.git/commit/?id=24d472b936cd4e7501ed7b39a169dcc451848390'/>
<id>24d472b936cd4e7501ed7b39a169dcc451848390</id>
<content type='text'>
Update domains.csv</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Update domains.csv</pre>
</div>
</content>
</entry>
</feed>
