<feed xmlns='http://www.w3.org/2005/Atom'>
<title>samba.git/docs-xml, branch talloc-2.0.0</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.</subtitle>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/'/>
<entry>
<title>s3-docs: Update build howto.</title>
<updated>2009-09-01T10:57:45+00:00</updated>
<author>
<name>Karolin Seeger</name>
<email>kseeger@samba.org</email>
</author>
<published>2009-09-01T10:55:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=1bc05ca3bb6499d25d54ba49f2abbc54edad37ed'/>
<id>1bc05ca3bb6499d25d54ba49f2abbc54edad37ed</id>
<content type='text'>
This addresses bug #6661.

Karolin
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This addresses bug #6661.

Karolin
</pre>
</div>
</content>
</entry>
<entry>
<title>Add a parameter to disable the automatic creation of krb5.conf files</title>
<updated>2009-08-26T13:28:06+00:00</updated>
<author>
<name>Volker Lendecke</name>
<email>vl@samba.org</email>
</author>
<published>2009-08-26T12:56:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=b824b1b7bf19b4b8c64b7c2c5a6a1d3287820088'/>
<id>b824b1b7bf19b4b8c64b7c2c5a6a1d3287820088</id>
<content type='text'>
This is necessary because MIT 1.5 can't deal with certain types (Tree Root) of
transitive AD trusts. The workaround is to add a [capaths] directive to
/etc/krb5.conf, which we don't automatically put into the krb5.conf winbind
creates.

The alternative would have been something like a "krb5 conf include", but I
think if someone has to mess with /etc/krb5.conf at this level, it should be
easy to add the site-local KDCs as well.

Next alternative is to correctly figure out the [capaths] parameter for all
trusted domains, but for that I don't have the time right now. Sorry :-)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is necessary because MIT 1.5 can't deal with certain types (Tree Root) of
transitive AD trusts. The workaround is to add a [capaths] directive to
/etc/krb5.conf, which we don't automatically put into the krb5.conf winbind
creates.

The alternative would have been something like a "krb5 conf include", but I
think if someone has to mess with /etc/krb5.conf at this level, it should be
easy to add the site-local KDCs as well.

Next alternative is to correctly figure out the [capaths] parameter for all
trusted domains, but for that I don't have the time right now. Sorry :-)
</pre>
</div>
</content>
</entry>
<entry>
<title>cifs.upcall: make using ip address conditional on new option</title>
<updated>2009-08-26T10:26:02+00:00</updated>
<author>
<name>Jeff Layton</name>
<email>jlayton@redhat.com</email>
</author>
<published>2009-08-26T10:26:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=da99e3a724b493ba47a06d0704b891819ad16647'/>
<id>da99e3a724b493ba47a06d0704b891819ad16647</id>
<content type='text'>
Igor Mammedov pointed out that reverse resolving an IP address to get
the hostname portion of a principal could open a possible attack
vector. If an attacker were to gain control of DNS, then he could
redirect the mount to a server of his choosing, and fix the reverse
resolution to point to a hostname of his choosing (one where he has
the key for the corresponding cifs/ or host/ principal).

That said, we often trust DNS for other reasons and it can be useful
to do so. Make the code that allows trusting DNS to be enabled by
adding --trust-dns to the cifs.upcall invocation.

Signed-off-by: Jeff Layton &lt;jlayton@redhat.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Igor Mammedov pointed out that reverse resolving an IP address to get
the hostname portion of a principal could open a possible attack
vector. If an attacker were to gain control of DNS, then he could
redirect the mount to a server of his choosing, and fix the reverse
resolution to point to a hostname of his choosing (one where he has
the key for the corresponding cifs/ or host/ principal).

That said, we often trust DNS for other reasons and it can be useful
to do so. Make the code that allows trusting DNS to be enabled by
adding --trust-dns to the cifs.upcall invocation.

Signed-off-by: Jeff Layton &lt;jlayton@redhat.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>cifs.upcall: try getting a "cifs/" principal and fall back to "host/"</title>
<updated>2009-08-14T11:59:50+00:00</updated>
<author>
<name>Jeff Layton</name>
<email>jlayton@redhat.com</email>
</author>
<published>2009-08-14T11:59:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=b10bdef4e75ffe48d563b2f0825b82519a71c9a7'/>
<id>b10bdef4e75ffe48d563b2f0825b82519a71c9a7</id>
<content type='text'>
cifs.upcall takes a "-c" flag that tells the upcall to get a principal
in the form of "cifs/hostname.example.com@REALM" instead of
"host/hostname.example.com@REALM". This has turned out to be a source of
great confusion for users.

Instead of requiring this flag, have the upcall try to get a "cifs/"
principal first. If that fails, fall back to getting a "host/"
principal.

Signed-off-by: Jeff Layton &lt;jlayton@redhat.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
cifs.upcall takes a "-c" flag that tells the upcall to get a principal
in the form of "cifs/hostname.example.com@REALM" instead of
"host/hostname.example.com@REALM". This has turned out to be a source of
great confusion for users.

Instead of requiring this flag, have the upcall try to get a "cifs/"
principal first. If that fails, fall back to getting a "host/"
principal.

Signed-off-by: Jeff Layton &lt;jlayton@redhat.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Documentation for "store create time".</title>
<updated>2009-08-12T20:54:38+00:00</updated>
<author>
<name>Jeremy Allison</name>
<email>jra@samba.org</email>
</author>
<published>2009-08-12T20:54:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=7ad5c69bd45d9211dc3bceb655d63d2f141f1bc6'/>
<id>7ad5c69bd45d9211dc3bceb655d63d2f141f1bc6</id>
<content type='text'>
Jeremy.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Jeremy.
</pre>
</div>
</content>
</entry>
<entry>
<title>Pass absolute file paths to Inkscape when transforming .svg files</title>
<updated>2009-08-08T05:02:52+00:00</updated>
<author>
<name>Alexander Bokovoy</name>
<email>ab@samba.org</email>
</author>
<published>2009-08-08T05:02:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=217e3086c74eb0b46fab512b5887d9a5a5b7ee9a'/>
<id>217e3086c74eb0b46fab512b5887d9a5a5b7ee9a</id>
<content type='text'>
Some recent versions of Inkscape (0.47 or around) have bug when export file name
is treated as relative against the directory of original .svg if it wasn't specified
as an absolute path. Fix it by always using absolute paths during conversion.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Some recent versions of Inkscape (0.47 or around) have bug when export file name
is treated as relative against the directory of original .svg if it wasn't specified
as an absolute path. Fix it by always using absolute paths during conversion.
</pre>
</div>
</content>
</entry>
<entry>
<title>s3/docs: Fix typos.</title>
<updated>2009-08-03T08:20:39+00:00</updated>
<author>
<name>Karolin Seeger</name>
<email>kseeger@samba.org</email>
</author>
<published>2009-08-03T08:19:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=7ee7ec3fdba2ef6a6cc3e1f96a5d2154290cdb18'/>
<id>7ee7ec3fdba2ef6a6cc3e1f96a5d2154290cdb18</id>
<content type='text'>
Thanks to OPC oota &lt;t-oota@dh.jp.nec.com&gt; for reporting!

Karolin
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Thanks to OPC oota &lt;t-oota@dh.jp.nec.com&gt; for reporting!

Karolin
</pre>
</div>
</content>
</entry>
<entry>
<title>docs: fix typos in the net man page.</title>
<updated>2009-07-27T11:35:59+00:00</updated>
<author>
<name>Michael Adam</name>
<email>obnox@samba.org</email>
</author>
<published>2009-07-27T11:33:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=34c535c9a8d08a480e156aaa9e4b843ffaab0636'/>
<id>34c535c9a8d08a480e156aaa9e4b843ffaab0636</id>
<content type='text'>
Noted by Oota Toshiya &lt;t-oota@dh.jp.nec.com&gt; .

Michael
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Noted by Oota Toshiya &lt;t-oota@dh.jp.nec.com&gt; .

Michael
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix typos reported by OPC Oota.</title>
<updated>2009-07-23T14:50:04+00:00</updated>
<author>
<name>John H Terpstra</name>
<email>jht@samba.org</email>
</author>
<published>2009-07-23T14:50:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=9b18c5475e31507bb27e26e9f34142ead9dae349'/>
<id>9b18c5475e31507bb27e26e9f34142ead9dae349</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Replace word noone with more correct word nobody. Thanks OPC Oota.</title>
<updated>2009-07-09T13:20:32+00:00</updated>
<author>
<name>John H Terpstra</name>
<email>jht@samba.org</email>
</author>
<published>2009-07-09T13:20:32+00:00</published>
<link rel='alternate' type='text/html' href='https://git.exis.tech/samba.git/commit/?id=14952c72a29ec92badb1bcf16d2a15fe100f060d'/>
<id>14952c72a29ec92badb1bcf16d2a15fe100f060d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
