<feed xmlns='http://www.w3.org/2005/Atom'>
<title>notmuch/notmuch-config.c, branch 0.7</title>
<subtitle>thread-based email index, search, and tagging</subtitle>
<id>https://git.notmuchmail.org/git/notmuch/atom?h=0.7</id>
<link rel='self' href='https://git.notmuchmail.org/git/notmuch/atom?h=0.7'/>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/'/>
<updated>2011-06-23T22:58:50Z</updated>
<entry>
<title>fix sum moar typos [user-visible documentation in code]</title>
<updated>2011-06-23T22:58:50Z</updated>
<author>
<name>Pieter Praet</name>
<email>pieter@praet.org</email>
</author>
<published>2011-06-20T20:14:21Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=432e091924c1d1d8950a44ca78bc5b9c5ade47e4'/>
<id>urn:sha1:432e091924c1d1d8950a44ca78bc5b9c5ade47e4</id>
<content type='text'>
Various typo fixes in documentation within the code that can be made
available to the user, (emacs function help strings, "notmuch help"
output, notmuch man page, etc.).

Signed-off-by: Pieter Praet &lt;pieter@praet.org&gt;

Edited-by: Carl Worth &lt;cworth@cworth.org&gt; Restricted to just
documentation and fixed fix of "comman" to "common" rather than
"command".
</content>
</entry>
<entry>
<title>Fix check of sysconf return in get_name/username_from_passwd_file</title>
<updated>2011-05-26T22:13:46Z</updated>
<author>
<name>Matthias Guedemann</name>
<email>matthias.guedemann@ovgu.de</email>
</author>
<published>2011-05-25T12:27:55Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=3185df17eb6c7621df3945841af58f2b19facc40'/>
<id>urn:sha1:3185df17eb6c7621df3945841af58f2b19facc40</id>
<content type='text'>
Fix to check the value returned by sysconf(_SC_GETPW_R_SIZE_MAX)
before using the value.

This fixes a core dump on DragonFlyBSD where this function returns -1.
</content>
</entry>
<entry>
<title>config: Fix confusing of "tag" and "flag" oin documentation.</title>
<updated>2010-11-12T04:39:22Z</updated>
<author>
<name>Carl Worth</name>
<email>cworth@cworth.org</email>
</author>
<published>2010-11-12T04:39:22Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=a68334258a14a50d942fa2f2824d37008d2443e6'/>
<id>urn:sha1:a68334258a14a50d942fa2f2824d37008d2443e6</id>
<content type='text'>
It has been very difficult to get all of these right. I would not be
surprised if I've still missed some.
</content>
</entry>
<entry>
<title>notmuch setup: Fix to add maildir group (with comment) to existing file</title>
<updated>2010-11-11T12:28:01Z</updated>
<author>
<name>Carl Worth</name>
<email>cworth@cworth.org</email>
</author>
<published>2010-11-11T12:28:01Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=89954b453c7b97a5d173bb87f3f2bbc0510425c2'/>
<id>urn:sha1:89954b453c7b97a5d173bb87f3f2bbc0510425c2</id>
<content type='text'>
The intent of "notmuch setup" is that it adds new, documented sections
to configuration files that were created before such sections were
defined. But to make this work, we have to explicitly set an option
in the maildir group if it didn't exist previously.
</content>
</entry>
<entry>
<title>Enable maildir synchronization by default.</title>
<updated>2010-11-11T12:11:21Z</updated>
<author>
<name>Carl Worth</name>
<email>cworth@cworth.org</email>
</author>
<published>2010-11-11T12:11:21Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=28708d2bd399ed1dc7968918833df3683c7accec'/>
<id>urn:sha1:28708d2bd399ed1dc7968918833df3683c7accec</id>
<content type='text'>
This is a useful feature that most people should want, so enable it by
default, (still allowing customization to disable it of course).
</content>
</entry>
<entry>
<title>notmuch config: Add more documentation for maildir.synchronize_flags</title>
<updated>2010-11-11T12:06:23Z</updated>
<author>
<name>Carl Worth</name>
<email>cworth@cworth.org</email>
</author>
<published>2010-11-11T12:06:23Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=937ecd5057659474aa3f7ffe9d2a5d850a641567'/>
<id>urn:sha1:937ecd5057659474aa3f7ffe9d2a5d850a641567</id>
<content type='text'>
Including details on which actual flags are synchronized with which tags.
</content>
</entry>
<entry>
<title>Avoid abbreviation, preferring notmuch_config_get_maildir_synchronize_flags</title>
<updated>2010-11-11T11:40:19Z</updated>
<author>
<name>Carl Worth</name>
<email>cworth@cworth.org</email>
</author>
<published>2010-11-11T00:26:14Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=4cfb2a02778bac16e785bbea1fd6c665e34bd955'/>
<id>urn:sha1:4cfb2a02778bac16e785bbea1fd6c665e34bd955</id>
<content type='text'>
Since the name of the configuration parameter here is:

	maildir.synchronize_flags

the convention is that the functions to get and set this parameter
should match it in name. Hence:

       notmuch_config_get_maildir_synchronize_flags

etc. (as opposed to notmuch_config_get_maildir_sync).
</content>
</entry>
<entry>
<title>Make maildir synchronization configurable</title>
<updated>2010-11-10T21:09:32Z</updated>
<author>
<name>Michal Sojka</name>
<email>sojkam1@fel.cvut.cz</email>
</author>
<published>2010-10-31T21:29:17Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=d9d3d3e6f06a76dc0fbe24c9655b64acfcd4b9e4'/>
<id>urn:sha1:d9d3d3e6f06a76dc0fbe24c9655b64acfcd4b9e4</id>
<content type='text'>
This adds group [maildir] and key 'synchronize_flags' to the
configuration file. Its value enables (true) or diables (false) the
synchronization between notmuch tags and maildir flags. By default,
the synchronization is disabled.
</content>
</entry>
<entry>
<title>notmuch config: Allow for new "notmuch config set" in addition to get</title>
<updated>2010-10-27T22:38:16Z</updated>
<author>
<name>Carl Worth</name>
<email>cworth@cworth.org</email>
</author>
<published>2010-10-27T22:38:16Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=65f2e61f28a0f5c5dc38dd3cf8a1de023934b330'/>
<id>urn:sha1:65f2e61f28a0f5c5dc38dd3cf8a1de023934b330</id>
<content type='text'>
It is now possible to set configuration items from the command-line in
a manner quite similar to the support for querying configuration
items.
</content>
</entry>
<entry>
<title>notmuch config: Provide support for querying non-standard configuration values.</title>
<updated>2010-10-27T20:26:32Z</updated>
<author>
<name>Carl Worth</name>
<email>cworth@cworth.org</email>
</author>
<published>2010-10-27T20:26:32Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=49d90ede87e355b086618c647d19e696b9f7069a'/>
<id>urn:sha1:49d90ede87e355b086618c647d19e696b9f7069a</id>
<content type='text'>
We might as well be general here, and allow the "notmuch config" command
to query any stored value from the configuration file, (whether or not
the rest of the code actually knows anything about that value).
</content>
</entry>
</feed>
