<feed xmlns='http://www.w3.org/2005/Atom'>
<title>notmuch/notmuch-setup.c, branch 0.2</title>
<subtitle>thread-based email index, search, and tagging</subtitle>
<id>https://git.notmuchmail.org/git/notmuch/atom?h=0.2</id>
<link rel='self' href='https://git.notmuchmail.org/git/notmuch/atom?h=0.2'/>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/'/>
<updated>2009-12-01T16:06:09Z</updated>
<entry>
<title>notmuch setup: Exit if EOF is encountered at any prompt.</title>
<updated>2009-12-01T16:06:09Z</updated>
<author>
<name>Carl Worth</name>
<email>cworth@cworth.org</email>
</author>
<published>2009-12-01T16:06:09Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=eb0cf86c7a9d5cda464d4d36a9cac66f26b5529d'/>
<id>urn:sha1:eb0cf86c7a9d5cda464d4d36a9cac66f26b5529d</id>
<content type='text'>
If the user is explicitly providing EOF, then terminating the program
is the most likely desired thing to do. This also avoids undefined
behavior from continuing with an uninitialized response after ignoring
the return value of getline().
</content>
</entry>
<entry>
<title>modify notmuch_setup_command to return 1 if config file write fails.</title>
<updated>2009-11-26T03:24:27Z</updated>
<author>
<name>Jameson Graef Rollins</name>
<email>jrollins@finestructure.net</email>
</author>
<published>2009-11-22T21:58:35Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=34c840a23e1db4c6cf4a836b441d027fc17e9706'/>
<id>urn:sha1:34c840a23e1db4c6cf4a836b441d027fc17e9706</id>
<content type='text'>
This fixes a small bug in notmuch_setup_command such that it returned
OK and output the setup message footer even if the config file write
step failed.
</content>
</entry>
<entry>
<title>Support multiple configuration files via $NOTMUCH_CONFIG</title>
<updated>2009-11-23T02:01:57Z</updated>
<author>
<name>Alec Berryman</name>
<email>alec@thened.net</email>
</author>
<published>2009-11-22T05:18:26Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=91d1d3f043b82d5f3f8c04f2db71a829a7406131'/>
<id>urn:sha1:91d1d3f043b82d5f3f8c04f2db71a829a7406131</id>
<content type='text'>
If present, $NOTMUCH_CONFIG will be used as the configuration file
location.
</content>
</entry>
<entry>
<title>notmuch new: Unbreak after the addition of notmuch-config.</title>
<updated>2009-11-12T03:50:15Z</updated>
<author>
<name>Carl Worth</name>
<email>cworth@cworth.org</email>
</author>
<published>2009-11-12T03:50:15Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=37bdd8987094220c84ec39f8f550753219f68bd4'/>
<id>urn:sha1:37bdd8987094220c84ec39f8f550753219f68bd4</id>
<content type='text'>
Pull in the code from add-files.c now that notmuch_new_command is
the only user, (we no longer have notmuch_setup_command adding any
messages).
</content>
</entry>
<entry>
<title>notmuch: Move welcome messages from "notmuch" to "notmuch setup".</title>
<updated>2009-11-12T01:33:31Z</updated>
<author>
<name>Carl Worth</name>
<email>cworth@cworth.org</email>
</author>
<published>2009-11-12T01:33:31Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=6bd01e1b340f6a209dde64471bc9d7137511dada'/>
<id>urn:sha1:6bd01e1b340f6a209dde64471bc9d7137511dada</id>
<content type='text'>
It's quite possible for someone to read the documentation and run
"notmuch setup" rather than just "notmuch". In that case, we don't
want to be any less welcoming.
</content>
</entry>
<entry>
<title>notmuch: Add a configuration system.</title>
<updated>2009-11-12T01:01:55Z</updated>
<author>
<name>Carl Worth</name>
<email>cworth@cworth.org</email>
</author>
<published>2009-11-12T01:01:55Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=305e76bc0ab2e7f3bd1ff2580e8d5dac8b4a7164'/>
<id>urn:sha1:305e76bc0ab2e7f3bd1ff2580e8d5dac8b4a7164</id>
<content type='text'>
This will allow for things like the database path to be specified
without any cheesy NOTMUCH_BASE environment variable. It also will
allow "notmuch reply" to recognize the user's email address when
constructing a reply in order to do the right thing, (that is, to use
the user's address to which mail was sent as From:, and not to reply
to the user's own addresses).

With this change, the "notmuch setup" command is now strictly for
changing the configuration of notmuch. It no longer creates the
database, but instead instructs the user to call "notmuch new" to do
that.
</content>
</entry>
<entry>
<title>notmuch setup: Break the implementation up into manageable functions.</title>
<updated>2009-11-11T19:23:55Z</updated>
<author>
<name>Carl Worth</name>
<email>cworth@cworth.org</email>
</author>
<published>2009-11-11T19:23:55Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=69611e66a589881bf4de9786d3f6df991c604f3d'/>
<id>urn:sha1:69611e66a589881bf4de9786d3f6df991c604f3d</id>
<content type='text'>
The notmuch_setup_command function was getting entirely unwieldy.
Break it up into smaller functions for better maintainability.
</content>
</entry>
<entry>
<title>notmuch: Break notmuch.c up into several smaller files.</title>
<updated>2009-11-10T20:03:05Z</updated>
<author>
<name>Carl Worth</name>
<email>cworth@cworth.org</email>
</author>
<published>2009-11-10T20:03:05Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=50144f95cababfb73027ca95ad1fb303c235a893'/>
<id>urn:sha1:50144f95cababfb73027ca95ad1fb303c235a893</id>
<content type='text'>
Now that the client sources are alone here in their own directory,
(with all the library sources down inside the lib directory), we can
break the client up into multiple files without mixing the files up.
The hope is that these smaller files will be easier to manage and
maintain.
</content>
</entry>
</feed>
