diff options
Diffstat (limited to 'japanese')
-rw-r--r-- | japanese/samba/Makefile | 165 | ||||
-rw-r--r-- | japanese/samba/distinfo | 2 | ||||
-rw-r--r-- | japanese/samba/files/README.FreeBSD | 2 | ||||
-rw-r--r-- | japanese/samba/files/patch-aa | 11 | ||||
-rw-r--r-- | japanese/samba/files/patch-ba | 23 | ||||
-rw-r--r-- | japanese/samba/files/patch-includes.h | 2 | ||||
-rw-r--r-- | japanese/samba/files/smb.conf.default | 9 | ||||
-rw-r--r-- | japanese/samba/pkg-plist | 1484 | ||||
-rw-r--r-- | japanese/samba/scripts/configure.samba | 97 |
9 files changed, 1043 insertions, 752 deletions
diff --git a/japanese/samba/Makefile b/japanese/samba/Makefile index be8c3c4433d0..28b89ad3f522 100644 --- a/japanese/samba/Makefile +++ b/japanese/samba/Makefile @@ -21,23 +21,59 @@ COMMENT= A free SMB and CIFS client and server for UNIX BUILD_DEPENDS= msgfmt:${PORTSDIR}/devel/gettext -SAMBA_VERSION= 2.2.4 +SAMBA_VERSION= 2.2.7a SAMBA_JA_VERSION= 1.0 +USE_BZIP2= yes +GNU_CONFIGURE= yes +USE_AUTOCONF= yes +USE_GMAKE= yes +USE_SUBMAKE= yes + # directories +.if !defined(BATCH) && !defined(PACKAGE_BUILDING) +IS_INTERACTIVE= yes +.endif + +.if exists(${WRKDIRPREFIX}${.CURDIR}/Makefile.inc) +.include "${WRKDIRPREFIX}${.CURDIR}/Makefile.inc" +.endif + +AUDIT?= "@comment " +RECYCLE?= "@comment " +LIBSAMBA?= "@comment " +BUILD_VFS?= "@comment " +LDAPSAM?= "@comment " +WINBIND?= "@comment " + +.if defined(WITH_AUDIT) +AUDIT= "" +LIBSAMBA= "" +BUILD_VFS= "" +.endif + +.if defined(WITH_RECYCLE) +RECYCLE= "" +LIBSAMBA= "" +BUILD_VFS= "" +.endif + VARDIR= /var SAMBA_SPOOL= ${VARDIR}/spool/samba SAMBA_LOGDIR= ${VARDIR}/log SAMBA_PRIVATE= ${PREFIX}/private SAMBA_CONFDIR= ${PREFIX}/etc +SAMBA_VFSDIR= ${PREFIX}/lib/samba +SCRIPTS_ENV= WRKDIRPREFIX="${WRKDIRPREFIX}" \ + TOUCH="${TOUCH}" \ + MKDIR="${MKDIR}" \ + CAT="${CAT}" \ + SAMBA_OPTIONS="${SAMBA_OPTIONS}" \ + REALCURDIR="${.CURDIR}" # sample files STARTUP_SCRIPT= ${PREFIX}/etc/rc.d/samba.sh.sample SAMPLE_CONFIG= ${SAMBA_CONFDIR}/smb.conf.default -USE_BZIP2= yes -GNU_CONFIGURE= yes -USE_AUTOCONF= yes -USE_GMAKE= yes CONFIGURE_ARGS= --with-i18n-swat --with-included-gettext \ --libdir=${SAMBA_CONFDIR} \ --localstatedir=${VARDIR} --with-swatdir=${PREFIX}/share/swat \ @@ -48,12 +84,75 @@ CONFIGURE_ARGS= --with-i18n-swat --with-included-gettext \ --with-pam \ --prefix=${PREFIX} +.include <bsd.port.pre.mk> + +CONFIGURE_ENV+= TESTDIR=/tmp + +.if defined(WITH_SYSLOG) +CONFIGURE_ARGS+= --with-syslog +.endif + +.if defined(WITH_SSL) +CONFIGURE_ARGS+= --with-ssl --with-sslinc=/usr/include/openssl --with-ssllib=/usr/lib +.endif + +.if defined(WITH_QUOTAS) +CONFIGURE_ARGS+= --with-quotas +.endif + +.if defined(WITH_UTMP) +CONFIGURE_ARGS+= --with-utmp +.endif + +.if defined(WITH_MSDFS) +CONFIGURE_ARGS+= --with-msdfs +.endif + +.if defined(WITH_LDAP) +LIB_DEPENDS+= ldap.2:${PORTSDIR}/net/openldap20 +CONFIGURE_ARGS+= --with-ldapsam +CONFIGURE_ENV+= CPPFLAGS=-I${LOCALBASE}/include \ + LDFLAGS=-L${LOCALBASE}/lib +LDAPSAM= "" +.endif + +.if !defined(WITHOUT_CUPS) +WITH_CUPS= yes +.endif + +.if defined(WITH_WINBIND) +CONFIGURE_ARGS+= --with-winbind +WINBIND= "" +.endif + +.if defined(WITH_WINBIND_AUTH_CHALLENGE) +CONFIGURE_ARGS+= --with-winbind-auth-challenge +.endif + +pre-fetch: + @${SETENV} ${SCRIPTS_ENV} ${SH} ${SCRIPTDIR}/configure.samba + +post-clean: + @${RM} -f ${WRKDIRPREFIX}${.CURDIR}/Makefile.inc + +.if defined(WITH_CUPS) +LIB_DEPENDS+= cups.2:${PORTSDIR}/print/cups-base +CONFIGURE_ENV+= CPPFLAGS=-I${LOCALBASE}/include \ + LDFLAGS=-L${LOCALBASE}/lib +.else +CONFIGURE_ARGS+= --disable-cups +.endif + .if defined(KRB5_HOME) && exists(${KRB5_HOME}) CONFIGURE_ARGS+=--with-krb5=${KRB5_HOME} .endif -.if defined(USE_OPENSSL) -CONFIGURE_ARGS+= --with-ssl +.if defined(WITH_ACL_SUPPORT) +.if ${OSVERSION} < 500018 +BROKEN= "ACL support requires a recent FreeBSD 5.0-CURRENT" +.else +CONFIGURE_ARGS+= --with-acl-support +.endif .endif WRKSRC= ${WRKDIR}/${DISTNAME}/source @@ -69,18 +168,55 @@ MAN8= smbd.8 nmbd.8 smbpasswd.8 swat.8 smbspool.8 \ pdbedit.8 MANLANG= "" ja +SED_PLIST= ${SED} -e 's!${PREFIX}!%D!g' + +PLIST_SUB= AUDIT=${AUDIT} \ + RECYCLE=${RECYCLE} \ + LIBSAMBA=${LIBSAMBA} \ + BUILD_VFS=${BUILD_VFS} \ + LDAPSAM=${LDAPSAM} \ + WINBIND=${WINBIND} + +pre-build: + ${RM} -fr ${WRKSRC}/include/proto.h + (cd ${WRKSRC} && make proto) + post-build: ${SED} 's:/usr/local:${PREFIX}:g' ${FILESDIR}/samba.sh.sample \ > ${WRKDIR}/samba.sh.sample +.if defined(WITH_RECYCLE) || defined(WITH_AUDIT) + cd ${WRKDIR}/${DISTNAME}/examples/VFS; \ + ./configure;${GMAKE}; \ + ${RM} -f config.cache config.log config.status +.endif post-install: +.if defined(WITH_AUDIT) || defined(WITH_RECYCLE) + @test -d ${SAMBA_VFSDIR} || ${MKDIR} ${SAMBA_VFSDIR} +.if defined(WITH_AUDIT) + ${INSTALL_PROGRAM} ${WRKDIR}/${DISTNAME}/examples/VFS/audit.so ${SAMBA_VFSDIR} +.endif +.if defined(WITH_RECYCLE) + ${INSTALL_PROGRAM} ${WRKDIR}/${DISTNAME}/examples/VFS/recycle/recycle.so ${SAMBA_VFSDIR} +.endif +.endif + ${MKDIR} ${PREFIX}/share/examples/samba + -${RM} -f ${WRKDIR}/${DISTNAME}/examples/libsmbclient/*.o + ${CP} -rp ${WRKDIR}/${DISTNAME}/examples/* ${PREFIX}/share/examples/samba +.if defined(WITH_AUDIT) || defined(WITH_RECYCLE) +# @${RM} -rf ${PREFIX}/share/examples/samba/VFS/.libs + ${FIND} ${PREFIX}/share/examples/samba/VFS -type d -name ".libs" | ${XARGS} ${RM} -r + @for file in audit.o audit.so recycle/recycle.o recycle/recycle.so skel.o skel.so ; do \ + ${RM} ${PREFIX}/share/examples/samba/VFS/$${file} ; \ + done +.endif @${STRIP_CMD} ${PREFIX}/sbin/smbd ${PREFIX}/sbin/nmbd ${PREFIX}/sbin/swat @${STRIP_CMD} ${PREFIX}/bin/smbclient ${PREFIX}/bin/smbspool @${STRIP_CMD} ${PREFIX}/bin/testparm ${PREFIX}/bin/testprns ${PREFIX}/bin/testprns ${PREFIX}/bin/smbstatus ${PREFIX}/bin/smbcontrol ${PREFIX}/bin/make_printerdef @${STRIP_CMD} ${PREFIX}/bin/smbpasswd ${PREFIX}/bin/make_smbcodepage ${PREFIX}/bin/rpcclient ${PREFIX}/bin/make_unicodemap ${PREFIX}/bin/make_nftable ${PREFIX}/bin/smbcacls ${PREFIX}/bin/nmblookup @${MKDIR} ${PREFIX}/share/examples/samba @cd ${WRKDIR}/${DISTNAME}/examples; \ - ${TAR} --exclude .cvsignore -cf - . | ${TAR} -xf - -C ${PREFIX}/share/examples/samba + ${TAR} --exclude .cvsignore --exclude .libs -cf - . | ${TAR} -xf - -C ${PREFIX}/share/examples/samba @if [ ! -f ${STARTUP_SCRIPT} ]; then \ ${ECHO} "Installing ${STARTUP_SCRIPT} startup file." ; \ ${INSTALL_SCRIPT} ${WRKDIR}/samba.sh.sample \ @@ -105,6 +241,16 @@ post-install: @${CHOWN} root:wheel ${PREFIX}/bin/smbpasswd @${CHMOD} 111 ${PREFIX}/bin/smbpasswd + ${ECHO_CMD} "@exec ${TEST} -d ${SAMBA_SPOOL} || ${MKDIR} ${SAMBA_SPOOL} && ${CHMOD} 1777 ${SAMBA_SPOOL}" | ${SED_PLIST} >> ${TMPPLIST} + ${ECHO_CMD} "@unexec ${RM} -rf ${SAMBA_SPOOL}" | ${SED_PLIST} >> ${TMPPLIST} + ${ECHO_CMD} "@exec ${MKDIR} -m 500 ${SAMBA_PRIVATE}" | ${SED_PLIST} >> ${TMPPLIST} + ${ECHO_CMD} "@exec ${CHOWN} root:wheel ${SAMBA_PRIVATE}" | ${SED_PLIST} >> ${TMPPLIST} + ${ECHO_CMD} "@exec ${CAT} /etc/passwd | ${GREP} -v "^#" | ${PREFIX}/bin/make_smbpasswd > ${SAMBA_PRIVATE}/smbpasswd.default" | ${SED_PLIST} >> ${TMPPLIST} + ${ECHO_CMD} "@exec ${TEST} -e ${SAMBA_PRIVATE}/smbpasswd || ${CP} -p ${SAMBA_PRIVATE}/smbpasswd.default ${SAMBA_PRIVATE}/smbpasswd" | ${SED_PLIST} >> ${TMPPLIST} + ${ECHO_CMD} "@exec ${CHMOD} 600 ${SAMBA_PRIVATE}/smbpasswd*" | ${SED_PLIST} >> ${TMPPLIST} + ${ECHO_CMD} "@unexec /usr/bin/cmp -s ${SAMBA_PRIVATE}/smbpasswd ${SAMBA_PRIVATE}/smbpasswd.default && ${RM} -f ${SAMBA_PRIVATE}/smbpasswd ${SAMBA_PRIVATE}/secrets.tdb || ${TRUE}" | ${SED_PLIST} >> ${TMPPLIST} + ${ECHO_CMD} "@unexec ${RM} -f ${SAMBA_PRIVATE}/smbpasswd.default" | ${SED_PLIST} >> ${TMPPLIST} + ${ECHO_CMD} "@unexec ${RMDIR} ${SAMBA_PRIVATE} || (${ECHO_CMD} \"Warning: If you will *NOT* use this package anymore,\" && ${ECHO_CMD} \" please remove ${SAMBA_PRIVATE} and its contents manually.\")" | ${SED_PLIST} >> ${TMPPLIST} .if !defined(NOPORTDOCS) @${MKDIR} ${PREFIX}/share/doc/samba @@ -125,5 +271,6 @@ post-install: @if [ -f ${VARDIR}/spool/lock/browse.dat ]; then \ ${RM} -f ${VARDIR}/spool/lock/browse.dat; \ fi + @${CAT} ${PKGMESSAGE} -.include <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/japanese/samba/distinfo b/japanese/samba/distinfo index 38017d5c1227..48ca8adc5ba8 100644 --- a/japanese/samba/distinfo +++ b/japanese/samba/distinfo @@ -1 +1 @@ -MD5 (samba-2.2.4-ja-1.0.tar.bz2) = 2f71430fa9684a2c231dedb24f0fd707 +MD5 (samba-2.2.7a-ja-1.0.tar.bz2) = 5cd229a2e82897db06936944e31eb90c diff --git a/japanese/samba/files/README.FreeBSD b/japanese/samba/files/README.FreeBSD index 421446feee90..32a995ef572c 100644 --- a/japanese/samba/files/README.FreeBSD +++ b/japanese/samba/files/README.FreeBSD @@ -10,7 +10,7 @@ If you want to use samba-ja, See document files in /usr/local/share/doc/samba and example config files in /usr/local/share/examples/samba for details. -Samba Japanese Edition is based on Samba 2.2.2, implemented the experimental +Samba Japanese Edition is based on Samba 2.2.7a, implemented the internationalized SWAT and fixed several problems arond functions for Japanese support. See smb.conf.sample for details. If you want to use NT4+SP3 or Win95+updates clients, set "encrypt passwords" parameter to diff --git a/japanese/samba/files/patch-aa b/japanese/samba/files/patch-aa deleted file mode 100644 index 872243b4e802..000000000000 --- a/japanese/samba/files/patch-aa +++ /dev/null @@ -1,11 +0,0 @@ ---- Makefile.in.orig Tue Jun 11 18:48:30 2002 -+++ Makefile.in Mon Jun 17 13:13:44 2002 -@@ -52,7 +52,7 @@ - CONFIGFILE = $(CONFIGDIR)/smb.conf - LMHOSTSFILE = $(CONFIGDIR)/lmhosts - DRIVERFILE = $(CONFIGDIR)/printers.def --PASSWD_PROGRAM = /bin/passwd -+PASSWD_PROGRAM = /usr/bin/passwd - # This is where smbpasswd et al go - PRIVATEDIR = @privatedir@ - diff --git a/japanese/samba/files/patch-ba b/japanese/samba/files/patch-ba index 60e322a6cae9..283714abc761 100644 --- a/japanese/samba/files/patch-ba +++ b/japanese/samba/files/patch-ba @@ -1,6 +1,6 @@ ---- configure.in.orig Thu May 2 20:02:46 2002 -+++ configure.in Thu May 9 02:29:20 2002 -@@ -498,9 +498,23 @@ +--- configure.in.orig Mon Dec 16 12:00:04 2002 ++++ configure.in Mon Dec 16 22:56:30 2002 +@@ -510,9 +510,23 @@ ############################################ # we need dlopen/dlclose/dlsym/dlerror for PAM, the password database plugins and the new VFS code AC_CHECK_FUNCS(dlopen) @@ -26,15 +26,15 @@ fi # dlopen/dlclose/dlsym/dlerror will be checked again later and defines will be set then -@@ -870,6 +884,7 @@ - ;; - *bsd*) BLDSHARED="true" +@@ -972,6 +986,7 @@ + *osf*) AC_DEFINE(OSF1) + BLDSHARED="true" LDSHFLAGS="-shared" + DYNEXP="-Wl,--export-dynamic" SONAMEFLAG="-Wl,-soname," PICFLAG="-fPIC" AC_DEFINE(STAT_ST_BLOCKSIZE,512) -@@ -1868,7 +1883,7 @@ +@@ -1981,7 +1996,7 @@ yes) AC_MSG_RESULT(yes) AC_DEFINE(KRB5_AUTH) @@ -43,12 +43,3 @@ CFLAGS="$CFLAGS -I$withval/include" LDFLAGS="$LDFLAGS -L$withval/lib" ;; -@@ -2042,7 +2057,7 @@ - yes) - AC_MSG_RESULT(yes) - AC_DEFINE(WITH_LDAP_SAM) -- LIBS="-lldap -llber -lresolv $LIBS" -+ LIBS="-lldap -llber $LIBS" - with_smbpasswd_sam=no - ;; - *) diff --git a/japanese/samba/files/patch-includes.h b/japanese/samba/files/patch-includes.h index 9b976dd07106..2d32256bcec3 100644 --- a/japanese/samba/files/patch-includes.h +++ b/japanese/samba/files/patch-includes.h @@ -4,7 +4,7 @@ #endif /* this guess needs to be improved (tridge) */ -+#ifndef __FreeBSD__ ++#ifndef FREEBSD #if (defined(STAT_STATVFS) || defined(STAT_STATVFS64)) && !defined(SYSV) #define SYSV 1 +#endif diff --git a/japanese/samba/files/smb.conf.default b/japanese/samba/files/smb.conf.default index 4b8767a76d06..1948c3b23f56 100644 --- a/japanese/samba/files/smb.conf.default +++ b/japanese/samba/files/smb.conf.default @@ -419,6 +419,15 @@ ; valid users = %S # ------------------------------------------------------------ + +# このパラメータが設定されていた場合、共有内で削除されるファイルは、単 +# に削除される代わりに、パラメータで指定したディレクトリに移動されます。 +# 同じ名前のファイルが複数削除された場合は, ファイル名に一意な識別子が +# 加えられたファイル名になります。 + +; recycle bin = .recycle + +# ------------------------------------------------------------ # 特定のプロジェクトのメンバのみが利用可能な共有の例です。 # この共有を利用するには project-a グループが定義されている必要があり # ます。 diff --git a/japanese/samba/pkg-plist b/japanese/samba/pkg-plist index 801580c7c758..589e57e5509b 100644 --- a/japanese/samba/pkg-plist +++ b/japanese/samba/pkg-plist @@ -1,3 +1,4 @@ +bin/findsmb bin/make_nftable bin/make_printerdef bin/make_smbcodepage @@ -15,6 +16,10 @@ bin/smbtar bin/testparm bin/testprns bin/tdbbackup +%%LDAPSAM%%bin/pdbedit +%%WINBIND%%bin/wbinfo +%%WINBIND%%sbin/winbindd +etc/codepages/codepage.1125 etc/codepages/codepage.1251 etc/codepages/codepage.437 etc/codepages/codepage.737 @@ -40,6 +45,7 @@ etc/codepages/nftable.932 etc/codepages/nftable.936 etc/codepages/nftable.949 etc/codepages/nftable.950 +etc/codepages/nftable.1125 etc/codepages/nftable.1251 etc/codepages/nftable.ISO8859-1 etc/codepages/nftable.ISO8859-13 @@ -49,6 +55,7 @@ etc/codepages/nftable.ISO8859-5 etc/codepages/nftable.ISO8859-7 etc/codepages/nftable.ISO8859-9 etc/codepages/nftable.KOI8-R +etc/codepages/nftable.KOI8-U etc/codepages/unicode_map.437 etc/codepages/unicode_map.737 etc/codepages/unicode_map.775 @@ -61,6 +68,7 @@ etc/codepages/unicode_map.932 etc/codepages/unicode_map.936 etc/codepages/unicode_map.949 etc/codepages/unicode_map.950 +etc/codepages/unicode_map.1125 etc/codepages/unicode_map.1251 etc/codepages/unicode_map.ISO8859-1 etc/codepages/unicode_map.ISO8859-13 @@ -70,723 +78,772 @@ etc/codepages/unicode_map.ISO8859-5 etc/codepages/unicode_map.ISO8859-7 etc/codepages/unicode_map.ISO8859-9 etc/codepages/unicode_map.KOI8-R +etc/codepages/unicode_map.KOI8-U @dirrm etc/codepages etc/rc.d/samba.sh.sample etc/smb.conf.default +%%AUDIT%%lib/samba/audit.so +%%RECYCLE%%lib/samba/recycle.so private/smbpasswd.sample sbin/nmbd sbin/smbd sbin/swat -share/doc/samba/COPYING -share/doc/samba/Manifest -share/doc/samba/OID/allocated-arcs.txt -share/doc/samba/OID/samba-oid.mail -share/doc/samba/README -share/doc/samba/README.FreeBSD -share/doc/samba/README.Win2kSP2 -share/doc/samba/README.Win32-Viruses -share/doc/samba/README.ldap -share/doc/samba/README.swat -share/doc/samba/Read-Manifest-Now -share/doc/samba/Registry/NT4-Locking.reg -share/doc/samba/Registry/NT4_PlainPassword.reg -share/doc/samba/Registry/Win2000_PlainPassword.reg -share/doc/samba/Registry/Win95_PlainPassword.reg -share/doc/samba/Registry/Win98_PlainPassword.reg -share/doc/samba/Registry/Win9X-CacheHandling.reg -share/doc/samba/Registry/WinME_PlainPassword.reg -share/doc/samba/Registry/WinXP_SignOrSeal.reg -share/doc/samba/Registry/WindowsTerminalServer.reg -share/doc/samba/Roadmap -share/doc/samba/Samba-HOWTO-Collection.pdf -share/doc/samba/THANKS -share/doc/samba/WHATSNEW.txt -share/doc/samba/announce -share/doc/samba/docbook/Makefile.in -share/doc/samba/docbook/configure -share/doc/samba/docbook/configure.in -share/doc/samba/docbook/dbsgml/40chg.txt -share/doc/samba/docbook/dbsgml/41chg.txt -share/doc/samba/docbook/dbsgml/50issues.txt -share/doc/samba/docbook/dbsgml/ChangeLog -share/doc/samba/docbook/dbsgml/cals-tbl.dtd -share/doc/samba/docbook/dbsgml/catalog -share/doc/samba/docbook/dbsgml/dbcent.mod -share/doc/samba/docbook/dbsgml/dbgenent.mod -share/doc/samba/docbook/dbsgml/dbhier.mod -share/doc/samba/docbook/dbsgml/dbnotn.mod -share/doc/samba/docbook/dbsgml/dbpool.mod -share/doc/samba/docbook/dbsgml/docbook.cat -share/doc/samba/docbook/dbsgml/docbook.dcl -share/doc/samba/docbook/dbsgml/docbook.dtd -share/doc/samba/docbook/dbsgml/ent/ISOamsa -share/doc/samba/docbook/dbsgml/ent/ISOamsb -share/doc/samba/docbook/dbsgml/ent/ISOamsc -share/doc/samba/docbook/dbsgml/ent/ISOamsn -share/doc/samba/docbook/dbsgml/ent/ISOamso -share/doc/samba/docbook/dbsgml/ent/ISOamsr -share/doc/samba/docbook/dbsgml/ent/ISObox -share/doc/samba/docbook/dbsgml/ent/ISOcyr1 -share/doc/samba/docbook/dbsgml/ent/ISOcyr2 -share/doc/samba/docbook/dbsgml/ent/ISOdia -share/doc/samba/docbook/dbsgml/ent/ISOgrk1 -share/doc/samba/docbook/dbsgml/ent/ISOgrk2 -share/doc/samba/docbook/dbsgml/ent/ISOgrk3 -share/doc/samba/docbook/dbsgml/ent/ISOgrk4 -share/doc/samba/docbook/dbsgml/ent/ISOlat1 -share/doc/samba/docbook/dbsgml/ent/ISOlat2 -share/doc/samba/docbook/dbsgml/ent/ISOnum -share/doc/samba/docbook/dbsgml/ent/ISOpub -share/doc/samba/docbook/dbsgml/ent/ISOtech -share/doc/samba/docbook/dbsgml/readme.txt -share/doc/samba/docbook/docbook.txt -share/doc/samba/docbook/faq/README.NOW -share/doc/samba/docbook/global.ent -share/doc/samba/docbook/howto/README.NOW -share/doc/samba/docbook/manpages/findsmb.1.sgml -share/doc/samba/docbook/manpages/lmhosts.5.sgml -share/doc/samba/docbook/manpages/make_smbcodepage.1.sgml -share/doc/samba/docbook/manpages/make_unicodemap.1.sgml -share/doc/samba/docbook/manpages/nmbd.8.sgml -share/doc/samba/docbook/manpages/nmblookup.1.sgml -share/doc/samba/docbook/manpages/pdbedit.8.sgml -share/doc/samba/docbook/manpages/rpcclient.1.sgml -share/doc/samba/docbook/manpages/samba.7.sgml -share/doc/samba/docbook/manpages/smb.conf.5.sgml -share/doc/samba/docbook/manpages/smbcacls.1.sgml -share/doc/samba/docbook/manpages/smbclient.1.sgml -share/doc/samba/docbook/manpages/smbcontrol.1.sgml -share/doc/samba/docbook/manpages/smbd.8.sgml -share/doc/samba/docbook/manpages/smbmnt.8.sgml -share/doc/samba/docbook/manpages/smbmount.8.sgml -share/doc/samba/docbook/manpages/smbpasswd.5.sgml -share/doc/samba/docbook/manpages/smbpasswd.8.sgml -share/doc/samba/docbook/manpages/smbsh.1.sgml -share/doc/samba/docbook/manpages/smbspool.8.sgml -share/doc/samba/docbook/manpages/smbstatus.1.sgml -share/doc/samba/docbook/manpages/smbtar.1.sgml -share/doc/samba/docbook/manpages/smbumount.8.sgml -share/doc/samba/docbook/manpages/swat.8.sgml -share/doc/samba/docbook/manpages/testparm.1.sgml -share/doc/samba/docbook/manpages/testprns.1.sgml -share/doc/samba/docbook/manpages/wbinfo.1.sgml -share/doc/samba/docbook/manpages/winbindd.8.sgml -share/doc/samba/docbook/projdoc/CVS-Access.sgml -share/doc/samba/docbook/projdoc/DOMAIN_MEMBER.sgml -share/doc/samba/docbook/projdoc/ENCRYPTION.sgml -share/doc/samba/docbook/projdoc/Integrating-with-Windows.sgml -share/doc/samba/docbook/projdoc/NT_Security.sgml -share/doc/samba/docbook/projdoc/OS2-Client-HOWTO.sgml -share/doc/samba/docbook/projdoc/PAM-Authentication-And-Samba.sgml -share/doc/samba/docbook/projdoc/Samba-BDC-HOWTO.sgml -share/doc/samba/docbook/projdoc/Samba-LDAP-HOWTO.sgml -share/doc/samba/docbook/projdoc/Samba-PDC-HOWTO.sgml -share/doc/samba/docbook/projdoc/UNIX_INSTALL.sgml -share/doc/samba/docbook/projdoc/msdfs_setup.sgml -share/doc/samba/docbook/projdoc/printer_driver2.sgml -share/doc/samba/docbook/projdoc/samba-doc.sgml -share/doc/samba/docbook/projdoc/winbind.sgml -share/doc/samba/docbook/scripts/README.ldp_print -share/doc/samba/docbook/scripts/collateindex.pl -share/doc/samba/docbook/scripts/fix_print_html.lib -share/doc/samba/docbook/scripts/ldp_print -share/doc/samba/docbook/scripts/make-article.pl -share/doc/samba/docbook/scripts/strip-links.pl -share/doc/samba/docbook/stylesheets/ldp.dsl.in -share/doc/samba/faq/README -share/doc/samba/faq/Samba-Server-FAQ-1.html -share/doc/samba/faq/Samba-Server-FAQ-2.html -share/doc/samba/faq/Samba-Server-FAQ.html -share/doc/samba/faq/Samba-Server-FAQ.sgml -share/doc/samba/faq/Samba-meta-FAQ-1.html -share/doc/samba/faq/Samba-meta-FAQ-2.html -share/doc/samba/faq/Samba-meta-FAQ-3.html -share/doc/samba/faq/Samba-meta-FAQ-4.html -share/doc/samba/faq/Samba-meta-FAQ-5.html -share/doc/samba/faq/Samba-meta-FAQ-6.html -share/doc/samba/faq/Samba-meta-FAQ.html -share/doc/samba/faq/Samba-meta-FAQ.sgml -share/doc/samba/faq/Samba-meta-FAQ.txt -share/doc/samba/faq/sambafaq-1.html -share/doc/samba/faq/sambafaq-2.html -share/doc/samba/faq/sambafaq-3.html -share/doc/samba/faq/sambafaq-4.html -share/doc/samba/faq/sambafaq-5.html -share/doc/samba/faq/sambafaq.html -share/doc/samba/faq/sambafaq.sgml -share/doc/samba/faq/sambafaq.txt -share/doc/samba/history -share/doc/samba/htmldocs/CVS-Access.html -share/doc/samba/htmldocs/DOMAIN_MEMBER.html -share/doc/samba/htmldocs/ENCRYPTION.html -share/doc/samba/htmldocs/Integrating-with-Windows.html -share/doc/samba/htmldocs/NT_Security.html -share/doc/samba/htmldocs/OS2-Client-HOWTO.html -share/doc/samba/htmldocs/PAM-Authentication-And-Samba.html -share/doc/samba/htmldocs/Samba-BDC-HOWTO.html -share/doc/samba/htmldocs/Samba-HOWTO-Collection.html -share/doc/samba/htmldocs/Samba-LDAP-HOWTO.html -share/doc/samba/htmldocs/Samba-PDC-HOWTO.html -share/doc/samba/htmldocs/UNIX_INSTALL.html -share/doc/samba/htmldocs/findsmb.1.html -share/doc/samba/htmldocs/lmhosts.5.html -share/doc/samba/htmldocs/make_smbcodepage.1.html -share/doc/samba/htmldocs/make_unicodemap.1.html -share/doc/samba/htmldocs/msdfs_setup.html -share/doc/samba/htmldocs/nmbd.8.html -share/doc/samba/htmldocs/nmblookup.1.html -share/doc/samba/htmldocs/pdbedit.8.html -share/doc/samba/htmldocs/printer_driver2.html -share/doc/samba/htmldocs/rpcclient.1.html -share/doc/samba/htmldocs/samba.7.html -share/doc/samba/htmldocs/smb.conf.5.html -share/doc/samba/htmldocs/smbcacls.1.html -share/doc/samba/htmldocs/smbclient.1.html -share/doc/samba/htmldocs/smbcontrol.1.html -share/doc/samba/htmldocs/smbd.8.html -share/doc/samba/htmldocs/smbmnt.8.html -share/doc/samba/htmldocs/smbmount.8.html -share/doc/samba/htmldocs/smbpasswd.5.html -share/doc/samba/htmldocs/smbpasswd.8.html -share/doc/samba/htmldocs/smbsh.1.html -share/doc/samba/htmldocs/smbspool.8.html -share/doc/samba/htmldocs/smbstatus.1.html -share/doc/samba/htmldocs/smbtar.1.html -share/doc/samba/htmldocs/smbumount.8.html -share/doc/samba/htmldocs/swat.8.html -share/doc/samba/htmldocs/testparm.1.html -share/doc/samba/htmldocs/testprns.1.html -share/doc/samba/htmldocs/using_samba/appa_01.html -share/doc/samba/htmldocs/using_samba/appa_02.html -share/doc/samba/htmldocs/using_samba/appa_03.html -share/doc/samba/htmldocs/using_samba/appa_04.html -share/doc/samba/htmldocs/using_samba/appa_05.html -share/doc/samba/htmldocs/using_samba/appb_01.html -share/doc/samba/htmldocs/using_samba/appb_02.html -share/doc/samba/htmldocs/using_samba/appb_03.html -share/doc/samba/htmldocs/using_samba/appc_01.html -share/doc/samba/htmldocs/using_samba/appd_01.html -share/doc/samba/htmldocs/using_samba/appe_01.html -share/doc/samba/htmldocs/using_samba/appf_01.html -share/doc/samba/htmldocs/using_samba/ch01_01.html -share/doc/samba/htmldocs/using_samba/ch01_02.html -share/doc/samba/htmldocs/using_samba/ch01_03.html -share/doc/samba/htmldocs/using_samba/ch01_04.html -share/doc/samba/htmldocs/using_samba/ch01_05.html -share/doc/samba/htmldocs/using_samba/ch01_06.html -share/doc/samba/htmldocs/using_samba/ch01_07.html -share/doc/samba/htmldocs/using_samba/ch01_08.html -share/doc/samba/htmldocs/using_samba/ch02_01.html -share/doc/samba/htmldocs/using_samba/ch02_02.html -share/doc/samba/htmldocs/using_samba/ch02_03.html -share/doc/samba/htmldocs/using_samba/ch02_04.html -share/doc/samba/htmldocs/using_samba/ch02_05.html -share/doc/samba/htmldocs/using_samba/ch02_06.html -share/doc/samba/htmldocs/using_samba/ch03_01.html -share/doc/samba/htmldocs/using_samba/ch03_02.html -share/doc/samba/htmldocs/using_samba/ch03_03.html -share/doc/samba/htmldocs/using_samba/ch04_01.html -share/doc/samba/htmldocs/using_samba/ch04_02.html -share/doc/samba/htmldocs/using_samba/ch04_03.html -share/doc/samba/htmldocs/using_samba/ch04_04.html -share/doc/samba/htmldocs/using_samba/ch04_05.html -share/doc/samba/htmldocs/using_samba/ch04_06.html -share/doc/samba/htmldocs/using_samba/ch04_07.html -share/doc/samba/htmldocs/using_samba/ch04_08.html -share/doc/samba/htmldocs/using_samba/ch05_01.html -share/doc/samba/htmldocs/using_samba/ch05_02.html -share/doc/samba/htmldocs/using_samba/ch05_03.html -share/doc/samba/htmldocs/using_samba/ch05_04.html -share/doc/samba/htmldocs/using_samba/ch05_05.html -share/doc/samba/htmldocs/using_samba/ch06_01.html -share/doc/samba/htmldocs/using_samba/ch06_02.html -share/doc/samba/htmldocs/using_samba/ch06_03.html -share/doc/samba/htmldocs/using_samba/ch06_04.html -share/doc/samba/htmldocs/using_samba/ch06_05.html -share/doc/samba/htmldocs/using_samba/ch06_06.html -share/doc/samba/htmldocs/using_samba/ch07_01.html -share/doc/samba/htmldocs/using_samba/ch07_02.html -share/doc/samba/htmldocs/using_samba/ch07_03.html -share/doc/samba/htmldocs/using_samba/ch08_01.html -share/doc/samba/htmldocs/using_samba/ch08_02.html -share/doc/samba/htmldocs/using_samba/ch08_03.html -share/doc/samba/htmldocs/using_samba/ch08_04.html -share/doc/samba/htmldocs/using_samba/ch08_05.html -share/doc/samba/htmldocs/using_samba/ch08_06.html -share/doc/samba/htmldocs/using_samba/ch08_07.html -share/doc/samba/htmldocs/using_samba/ch09_01.html -share/doc/samba/htmldocs/using_samba/ch09_02.html -share/doc/samba/htmldocs/using_samba/ch09_03.html -share/doc/samba/htmldocs/using_samba/figs/sam.0101.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0102.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0103.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0104.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0105.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0106.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0107.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0108.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0109.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0110.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0111.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0112.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0113.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0114.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0201.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0202.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0203.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0204.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0301.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0302.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0303.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0304.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0305.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0306.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0307.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0308.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0309.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0310.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0311.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0312.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0313.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0314.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0315.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0316.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0317.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0318.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0319.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0320.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0321.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0322.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0323.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0324.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0325.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0326.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0327.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0328.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0401.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0402.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0403.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0404.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0405.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0406.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0407.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0501.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0502.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0503.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0504.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0505.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0506.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0507.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0508.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0601.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0602.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0603.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0604.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0605.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0606.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0701.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0702.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0703.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0704.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0705.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0706.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0707.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0708.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0709.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0801.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0802.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0803.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0804.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0805.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0901.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0902.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0903.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0904.gif -share/doc/samba/htmldocs/using_samba/figs/sam.0905.gif -share/doc/samba/htmldocs/using_samba/figs/sam.aa01.gif -share/doc/samba/htmldocs/using_samba/figs/sam.ab01.gif -share/doc/samba/htmldocs/using_samba/figs/sam.ab02.gif -share/doc/samba/htmldocs/using_samba/gifs/index.gif -share/doc/samba/htmldocs/using_samba/gifs/samba.s.gif -share/doc/samba/htmldocs/using_samba/gifs/txthome.gif -share/doc/samba/htmldocs/using_samba/gifs/txtnexta.gif -share/doc/samba/htmldocs/using_samba/gifs/txtpreva.gif -share/doc/samba/htmldocs/using_samba/index.html -share/doc/samba/htmldocs/using_samba/inx.html -share/doc/samba/htmldocs/using_samba/licenseinfo.html -share/doc/samba/htmldocs/using_samba/this_edition.html -share/doc/samba/htmldocs/wbinfo.1.html -share/doc/samba/htmldocs/wfw_slip.htm -share/doc/samba/htmldocs/winbind.html -share/doc/samba/htmldocs/winbindd.8.html -share/doc/samba/ja/CREDITS.txt -share/doc/samba/ja/ML.txt -share/doc/samba/ja/README.txt -share/doc/samba/ja/WHATSNEW.txt -share/doc/samba/ja/history -share/doc/samba/ja/htmldocs/BrowsingFAQ/browsing01.html -share/doc/samba/ja/htmldocs/BrowsingFAQ/browsing02.html -share/doc/samba/ja/htmldocs/BrowsingFAQ/fig_1.html -share/doc/samba/ja/htmldocs/BrowsingFAQ/fig_2.html -share/doc/samba/ja/htmldocs/BrowsingFAQ/fig_4.html -share/doc/samba/ja/htmldocs/BrowsingFAQ/fig_5.html -share/doc/samba/ja/htmldocs/BrowsingFAQ/fig_6.html -share/doc/samba/ja/htmldocs/BrowsingFAQ/fig_7.html -share/doc/samba/ja/htmldocs/BrowsingFAQ/fig_8.html -share/doc/samba/ja/htmldocs/BrowsingFAQ/image/fig1.png -share/doc/samba/ja/htmldocs/BrowsingFAQ/image/fig2.png -share/doc/samba/ja/htmldocs/BrowsingFAQ/image/fig4s.png -share/doc/samba/ja/htmldocs/BrowsingFAQ/image/fig5s.png -share/doc/samba/ja/htmldocs/BrowsingFAQ/image/fig7s.png -share/doc/samba/ja/htmldocs/BrowsingFAQ/image/fig8s.png -share/doc/samba/ja/htmldocs/BrowsingFAQ/index.html -share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig05.gif -share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig06.gif -share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig07.gif -share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig08.gif -share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig09.gif -share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig10.gif -share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig11.gif -share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig12.gif -share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig14.gif -share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig15.gif -share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig16.gif -share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig17.gif -share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig18.gif -share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig19.gif -share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig20.gif -share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig21.gif -share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig22.gif -share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig23.gif -share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig24.gif -share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig25.gif -share/doc/samba/ja/htmldocs/HowToUseSamba2.2/index.html -share/doc/samba/ja/htmldocs/NT_Security.html -share/doc/samba/ja/htmldocs/diag.html -share/doc/samba/ja/htmldocs/encrypt-passwd.html -share/doc/samba/ja/htmldocs/findsmb.1.html -share/doc/samba/ja/htmldocs/lmhosts.5.html -share/doc/samba/ja/htmldocs/make_smbcodepage.1.html -share/doc/samba/ja/htmldocs/make_unicodemap.1.html -share/doc/samba/ja/htmldocs/msdfs_setup.html -share/doc/samba/ja/htmldocs/nmbd.8.html -share/doc/samba/ja/htmldocs/nmblookup.1.html -share/doc/samba/ja/htmldocs/pdbedit.8.html -share/doc/samba/ja/htmldocs/printer_driver2.html -share/doc/samba/ja/htmldocs/quota/fig1.gif -share/doc/samba/ja/htmldocs/quota/fig2.gif -share/doc/samba/ja/htmldocs/quota/fig3.gif -share/doc/samba/ja/htmldocs/quota/fig4.gif -share/doc/samba/ja/htmldocs/quota/fig5.gif -share/doc/samba/ja/htmldocs/quota/fig6.gif -share/doc/samba/ja/htmldocs/quota/index.html -share/doc/samba/ja/htmldocs/rpcclient.1.html -share/doc/samba/ja/htmldocs/samba-func.html -share/doc/samba/ja/htmldocs/samba-j.html -share/doc/samba/ja/htmldocs/samba-pdc-faq.html -share/doc/samba/ja/htmldocs/samba.7.html -share/doc/samba/ja/htmldocs/samba2.2_func/fig01.gif -share/doc/samba/ja/htmldocs/samba2.2_func/fig03.gif -share/doc/samba/ja/htmldocs/samba2.2_func/fig04.gif -share/doc/samba/ja/htmldocs/samba2.2_func/fig05.gif -share/doc/samba/ja/htmldocs/samba2.2_func/fig06.gif -share/doc/samba/ja/htmldocs/samba2.2_func/fig07.gif -share/doc/samba/ja/htmldocs/samba2.2_func/index.html -share/doc/samba/ja/htmldocs/samba2.2_whatsnew/fig01.gif -share/doc/samba/ja/htmldocs/samba2.2_whatsnew/fig02.gif -share/doc/samba/ja/htmldocs/samba2.2_whatsnew/fig03.gif -share/doc/samba/ja/htmldocs/samba2.2_whatsnew/fig04.gif -share/doc/samba/ja/htmldocs/samba2.2_whatsnew/fig05.gif -share/doc/samba/ja/htmldocs/samba2.2_whatsnew/index.html -share/doc/samba/ja/htmldocs/samba2.html -share/doc/samba/ja/htmldocs/samba_begin.html -share/doc/samba/ja/htmldocs/sambafaq-1.html -share/doc/samba/ja/htmldocs/sambafaq-2.html -share/doc/samba/ja/htmldocs/sambafaq-3.html -share/doc/samba/ja/htmldocs/sambafaq-4.html -share/doc/samba/ja/htmldocs/sambafaq-5.html -share/doc/samba/ja/htmldocs/sambafaq.html -share/doc/samba/ja/htmldocs/sambafaq.sgml -share/doc/samba/ja/htmldocs/smb.conf.5.html -share/doc/samba/ja/htmldocs/smbcacls.1.html -share/doc/samba/ja/htmldocs/smbclient.1.html -share/doc/samba/ja/htmldocs/smbcontrol.1.html -share/doc/samba/ja/htmldocs/smbd.8.html -share/doc/samba/ja/htmldocs/smbmnt.8.html -share/doc/samba/ja/htmldocs/smbmount.8.html -share/doc/samba/ja/htmldocs/smbpasswd.5.html -share/doc/samba/ja/htmldocs/smbpasswd.8.html -share/doc/samba/ja/htmldocs/smbsh.1.html -share/doc/samba/ja/htmldocs/smbspool.8.html -share/doc/samba/ja/htmldocs/smbstatus.1.html -share/doc/samba/ja/htmldocs/smbtar.1.html -share/doc/samba/ja/htmldocs/smbumount.8.html -share/doc/samba/ja/htmldocs/swat.8.html -share/doc/samba/ja/htmldocs/testparm.1.html -share/doc/samba/ja/htmldocs/testprns.1.html -share/doc/samba/ja/htmldocs/tuning.japanese.html -share/doc/samba/ja/htmldocs/using_samba/appa_01.html -share/doc/samba/ja/htmldocs/using_samba/appa_02.html -share/doc/samba/ja/htmldocs/using_samba/appa_03.html -share/doc/samba/ja/htmldocs/using_samba/appa_04.html -share/doc/samba/ja/htmldocs/using_samba/appa_05.html -share/doc/samba/ja/htmldocs/using_samba/appb_01.html -share/doc/samba/ja/htmldocs/using_samba/appb_02.html -share/doc/samba/ja/htmldocs/using_samba/appb_03.html -share/doc/samba/ja/htmldocs/using_samba/appc_01.html -share/doc/samba/ja/htmldocs/using_samba/appd_01.html -share/doc/samba/ja/htmldocs/using_samba/appe_01.html -share/doc/samba/ja/htmldocs/using_samba/appf_01.html -share/doc/samba/ja/htmldocs/using_samba/ch01_01.html -share/doc/samba/ja/htmldocs/using_samba/ch01_02.html -share/doc/samba/ja/htmldocs/using_samba/ch01_03.html -share/doc/samba/ja/htmldocs/using_samba/ch01_04.html -share/doc/samba/ja/htmldocs/using_samba/ch01_05.html -share/doc/samba/ja/htmldocs/using_samba/ch01_06.html -share/doc/samba/ja/htmldocs/using_samba/ch01_07.html -share/doc/samba/ja/htmldocs/using_samba/ch01_08.html -share/doc/samba/ja/htmldocs/using_samba/ch02_01.html -share/doc/samba/ja/htmldocs/using_samba/ch02_02.html -share/doc/samba/ja/htmldocs/using_samba/ch02_03.html -share/doc/samba/ja/htmldocs/using_samba/ch02_04.html -share/doc/samba/ja/htmldocs/using_samba/ch02_05.html -share/doc/samba/ja/htmldocs/using_samba/ch02_06.html -share/doc/samba/ja/htmldocs/using_samba/ch03_01.html -share/doc/samba/ja/htmldocs/using_samba/ch03_02.html -share/doc/samba/ja/htmldocs/using_samba/ch03_03.html -share/doc/samba/ja/htmldocs/using_samba/ch04_01.html -share/doc/samba/ja/htmldocs/using_samba/ch04_02.html -share/doc/samba/ja/htmldocs/using_samba/ch04_03.html -share/doc/samba/ja/htmldocs/using_samba/ch04_04.html -share/doc/samba/ja/htmldocs/using_samba/ch04_05.html -share/doc/samba/ja/htmldocs/using_samba/ch04_06.html -share/doc/samba/ja/htmldocs/using_samba/ch04_07.html -share/doc/samba/ja/htmldocs/using_samba/ch04_08.html -share/doc/samba/ja/htmldocs/using_samba/ch05_01.html -share/doc/samba/ja/htmldocs/using_samba/ch05_02.html -share/doc/samba/ja/htmldocs/using_samba/ch05_03.html -share/doc/samba/ja/htmldocs/using_samba/ch05_04.html -share/doc/samba/ja/htmldocs/using_samba/ch05_05.html -share/doc/samba/ja/htmldocs/using_samba/ch06_01.html -share/doc/samba/ja/htmldocs/using_samba/ch06_02.html -share/doc/samba/ja/htmldocs/using_samba/ch06_03.html -share/doc/samba/ja/htmldocs/using_samba/ch06_04.html -share/doc/samba/ja/htmldocs/using_samba/ch06_05.html -share/doc/samba/ja/htmldocs/using_samba/ch06_06.html -share/doc/samba/ja/htmldocs/using_samba/ch07_01.html -share/doc/samba/ja/htmldocs/using_samba/ch07_02.html -share/doc/samba/ja/htmldocs/using_samba/ch07_03.html -share/doc/samba/ja/htmldocs/using_samba/ch08_01.html -share/doc/samba/ja/htmldocs/using_samba/ch08_02.html -share/doc/samba/ja/htmldocs/using_samba/ch08_03.html -share/doc/samba/ja/htmldocs/using_samba/ch08_04.html -share/doc/samba/ja/htmldocs/using_samba/ch08_05.html -share/doc/samba/ja/htmldocs/using_samba/ch08_06.html -share/doc/samba/ja/htmldocs/using_samba/ch08_07.html -share/doc/samba/ja/htmldocs/using_samba/ch09_01.html -share/doc/samba/ja/htmldocs/using_samba/ch09_02.html -share/doc/samba/ja/htmldocs/using_samba/ch09_03.html -share/doc/samba/ja/htmldocs/using_samba/contributor.html -share/doc/samba/ja/htmldocs/using_samba/index.html -share/doc/samba/ja/htmldocs/using_samba/inx.html -share/doc/samba/ja/htmldocs/using_samba/licenseinfo.html -share/doc/samba/ja/htmldocs/using_samba/status.html -share/doc/samba/ja/htmldocs/using_samba/this_edition.html -share/doc/samba/ja/htmldocs/wbinfo.1.html -share/doc/samba/ja/htmldocs/whatsamba.html -share/doc/samba/ja/htmldocs/winbind.html -share/doc/samba/ja/htmldocs/winbindd.8.html -share/doc/samba/ja/reg/NT4_PlainPassword.reg -share/doc/samba/ja/reg/Win2000_PlainPassword.reg -share/doc/samba/ja/reg/Win95_PlainPassword.reg -share/doc/samba/ja/reg/Win98_PlainPassword.reg -share/doc/samba/ja/reg/Win9X-CacheHandling.reg -share/doc/samba/ja/status.html -share/doc/samba/ja/status.txt -share/doc/samba/ja/textdocs/Application_Serving.txt -share/doc/samba/ja/textdocs/BROWSING-Config.txt -share/doc/samba/ja/textdocs/BROWSING.txt -share/doc/samba/ja/textdocs/CRLF-LF-Conversions.txt -share/doc/samba/ja/textdocs/CVS_ACCESS.txt -share/doc/samba/ja/textdocs/DIAGNOSIS.txt -share/doc/samba/ja/textdocs/DOMAIN.txt -share/doc/samba/ja/textdocs/DOMAIN_MEMBER.txt -share/doc/samba/ja/textdocs/ENCRYPTION.txt -share/doc/samba/ja/textdocs/File-Cacheing.txt -share/doc/samba/ja/textdocs/Macintosh_Clients.txt -share/doc/samba/ja/textdocs/NT-Guest-Access.txt -share/doc/samba/ja/textdocs/NTDOMAIN.txt -share/doc/samba/ja/textdocs/NetBIOS.txt -share/doc/samba/ja/textdocs/PRINTER_DRIVER.txt -share/doc/samba/ja/textdocs/PROFILES.txt -share/doc/samba/ja/textdocs/Passwords.txt -share/doc/samba/ja/textdocs/README.smbmount.txt -share/doc/samba/ja/textdocs/Speed.txt -share/doc/samba/ja/textdocs/Speed2.txt -share/doc/samba/ja/textdocs/UNIX-SMB.txt -share/doc/samba/ja/textdocs/UNIX_INSTALL.txt -share/doc/samba/ja/textdocs/Win95.txt -share/doc/samba/ja/textdocs/WinNT.txt -share/doc/samba/ja/textdocs/footer.html -share/doc/samba/ja/textdocs/header.html -share/doc/samba/ja/textdocs/security_level.txt -share/doc/samba/ja/textdocs/smbmount.txt -share/doc/samba/ja/yodldocs/NT_Security.yo -share/doc/samba/ja/yodldocs/make_smbcodepage.1.yo -share/doc/samba/ja/yodldocs/make_unicodemap.1.yo -share/doc/samba/ja/yodldocs/smbclient.1.yo -share/doc/samba/ja/yodldocs/smbpasswd.8.yo -share/doc/samba/manpages/findsmb.1 -share/doc/samba/manpages/ja/Makefile -share/doc/samba/manpages/ja/findsmb.1.man -share/doc/samba/manpages/ja/install-man.sh -share/doc/samba/manpages/ja/lmhosts.5.man -share/doc/samba/manpages/ja/make_smbcodepage.1.man -share/doc/samba/manpages/ja/make_unicodemap.1.man -share/doc/samba/manpages/ja/nmbd.8.man -share/doc/samba/manpages/ja/nmblookup.1.man -share/doc/samba/manpages/ja/pdbedit.8.man -share/doc/samba/manpages/ja/rpcclient.1.man -share/doc/samba/manpages/ja/samba.7.man -share/doc/samba/manpages/ja/smb.conf.5.man -share/doc/samba/manpages/ja/smbcacls.1.man -share/doc/samba/manpages/ja/smbclient.1.man -share/doc/samba/manpages/ja/smbcontrol.1.man -share/doc/samba/manpages/ja/smbd.8.man -share/doc/samba/manpages/ja/smbmnt.8.man -share/doc/samba/manpages/ja/smbmount.8.man -share/doc/samba/manpages/ja/smbpasswd.5.man -share/doc/samba/manpages/ja/smbpasswd.8.man -share/doc/samba/manpages/ja/smbsh.1.man -share/doc/samba/manpages/ja/smbspool.8.man -share/doc/samba/manpages/ja/smbstatus.1.man -share/doc/samba/manpages/ja/smbtar.1.man -share/doc/samba/manpages/ja/smbumount.8.man -share/doc/samba/manpages/ja/swat.8.man -share/doc/samba/manpages/ja/testparm.1.man -share/doc/samba/manpages/ja/testprns.1.man -share/doc/samba/manpages/ja/wbinfo.1.man -share/doc/samba/manpages/ja/winbindd.8.man -share/doc/samba/manpages/lmhosts.5 -share/doc/samba/manpages/make_smbcodepage.1 -share/doc/samba/manpages/make_unicodemap.1 -share/doc/samba/manpages/nmbd.8 -share/doc/samba/manpages/nmblookup.1 -share/doc/samba/manpages/pdbedit.8 -share/doc/samba/manpages/rpcclient.1 -share/doc/samba/manpages/samba.7 -share/doc/samba/manpages/smb.conf.5 -share/doc/samba/manpages/smbcacls.1 -share/doc/samba/manpages/smbclient.1 -share/doc/samba/manpages/smbcontrol.1 -share/doc/samba/manpages/smbd.8 -share/doc/samba/manpages/smbmnt.8 -share/doc/samba/manpages/smbmount.8 -share/doc/samba/manpages/smbpasswd.5 -share/doc/samba/manpages/smbpasswd.8 -share/doc/samba/manpages/smbsh.1 -share/doc/samba/manpages/smbspool.8 -share/doc/samba/manpages/smbstatus.1 -share/doc/samba/manpages/smbtar.1 -share/doc/samba/manpages/smbumount.8 -share/doc/samba/manpages/swat.8 -share/doc/samba/manpages/testparm.1 -share/doc/samba/manpages/testprns.1 -share/doc/samba/manpages/wbinfo.1 -share/doc/samba/manpages/winbindd.8 -share/doc/samba/textdocs/Application_Serving.txt -share/doc/samba/textdocs/BROWSING-Config.txt -share/doc/samba/textdocs/BROWSING.txt -share/doc/samba/textdocs/BUGS.txt -share/doc/samba/textdocs/DHCP-Server-Configuration.txt -share/doc/samba/textdocs/DIAGNOSIS.txt -share/doc/samba/textdocs/DNIX.txt -share/doc/samba/textdocs/Faxing.txt -share/doc/samba/textdocs/GOTCHAS.txt -share/doc/samba/textdocs/HINTS.txt -share/doc/samba/textdocs/INSTALL.sambatar -share/doc/samba/textdocs/Imprints.txt -share/doc/samba/textdocs/Macintosh_Clients.txt -share/doc/samba/textdocs/NetBIOS.txt -share/doc/samba/textdocs/PROFILES.txt -share/doc/samba/textdocs/Passwords.txt -share/doc/samba/textdocs/Printing.txt -share/doc/samba/textdocs/README.DCEDFS -share/doc/samba/textdocs/README.NOW -share/doc/samba/textdocs/README.jis -share/doc/samba/textdocs/README.sambatar -share/doc/samba/textdocs/Recent-FAQs.txt -share/doc/samba/textdocs/RoutedNetworks.txt -share/doc/samba/textdocs/SCO.txt -share/doc/samba/textdocs/SMBTAR.notes -share/doc/samba/textdocs/Samba-OpenSSL.txt -share/doc/samba/textdocs/Solaris-Winbind-HOWTO.txt -share/doc/samba/textdocs/Speed.txt -share/doc/samba/textdocs/Speed2.txt -share/doc/samba/textdocs/Tracing.txt -share/doc/samba/textdocs/UNIX-SMB.txt -share/doc/samba/textdocs/UNIX_SECURITY.txt -share/doc/samba/textdocs/Win95.txt -share/doc/samba/textdocs/WinNT.txt -share/doc/samba/textdocs/cifsntdomain.txt -share/doc/samba/textdocs/outdated/NTDOMAIN.txt -share/doc/samba/textdocs/outdated/PRINTER_DRIVER.txt -share/doc/samba/textdocs/outdated/PROJECTS -share/doc/samba/textdocs/security_level.txt -share/doc/samba/yodldocs/README-NOW -@dirrm share/doc/samba/OID -@dirrm share/doc/samba/Registry -@dirrm share/doc/samba/docbook/faq -@dirrm share/doc/samba/docbook/dbsgml/ent -@dirrm share/doc/samba/docbook/dbsgml -@dirrm share/doc/samba/docbook/howto -@dirrm share/doc/samba/docbook/manpages -@dirrm share/doc/samba/docbook/projdoc -@dirrm share/doc/samba/docbook/scripts -@dirrm share/doc/samba/docbook/stylesheets -@dirrm share/doc/samba/docbook -@dirrm share/doc/samba/faq -@dirrm share/doc/samba/htmldocs/using_samba/figs -@dirrm share/doc/samba/htmldocs/using_samba/gifs -@dirrm share/doc/samba/htmldocs/using_samba -@dirrm share/doc/samba/htmldocs -@dirrm share/doc/samba/ja/reg -@dirrm share/doc/samba/ja/htmldocs/quota -@dirrm share/doc/samba/ja/htmldocs/BrowsingFAQ/image -@dirrm share/doc/samba/ja/htmldocs/BrowsingFAQ -@dirrm share/doc/samba/ja/htmldocs/HowToUseSamba2.2 -@dirrm share/doc/samba/ja/htmldocs/samba2.2_func -@dirrm share/doc/samba/ja/htmldocs/samba2.2_whatsnew -@dirrm share/doc/samba/ja/htmldocs/using_samba -@dirrm share/doc/samba/ja/htmldocs -@dirrm share/doc/samba/ja/textdocs -@dirrm share/doc/samba/ja/yodldocs -@dirrm share/doc/samba/ja -@dirrm share/doc/samba/manpages/ja -@dirrm share/doc/samba/manpages -@dirrm share/doc/samba/textdocs/outdated -@dirrm share/doc/samba/textdocs -@dirrm share/doc/samba/yodldocs +%%PORTDOCS%%share/doc/samba/COPYING +%%PORTDOCS%%share/doc/samba/Manifest +%%PORTDOCS%%share/doc/samba/OID/allocated-arcs.txt +%%PORTDOCS%%share/doc/samba/OID/samba-oid.mail +%%PORTDOCS%%share/doc/samba/README +%%PORTDOCS%%share/doc/samba/README.FreeBSD +%%PORTDOCS%%share/doc/samba/README.Win2kSP2 +%%PORTDOCS%%share/doc/samba/README.Win32-Viruses +%%PORTDOCS%%share/doc/samba/README.ldap +%%PORTDOCS%%share/doc/samba/README.swat +%%PORTDOCS%%share/doc/samba/Read-Manifest-Now +%%PORTDOCS%%share/doc/samba/Registry/NT4-Locking.reg +%%PORTDOCS%%share/doc/samba/Registry/NT4_PlainPassword.reg +%%PORTDOCS%%share/doc/samba/Registry/Win2000_PlainPassword.reg +%%PORTDOCS%%share/doc/samba/Registry/Win95_PlainPassword.reg +%%PORTDOCS%%share/doc/samba/Registry/Win98_PlainPassword.reg +%%PORTDOCS%%share/doc/samba/Registry/Win9X-CacheHandling.reg +%%PORTDOCS%%share/doc/samba/Registry/WinME_PlainPassword.reg +%%PORTDOCS%%share/doc/samba/Registry/WinXP_SignOrSeal.reg +%%PORTDOCS%%share/doc/samba/Registry/WindowsTerminalServer.reg +%%PORTDOCS%%share/doc/samba/Roadmap +%%PORTDOCS%%share/doc/samba/Samba-HOWTO-Collection.pdf +%%PORTDOCS%%share/doc/samba/THANKS +%%PORTDOCS%%share/doc/samba/WHATSNEW.txt +%%PORTDOCS%%share/doc/samba/announce +%%PORTDOCS%%share/doc/samba/docbook/Makefile.in +%%PORTDOCS%%share/doc/samba/docbook/configure +%%PORTDOCS%%share/doc/samba/docbook/configure.in +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/40chg.txt +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/41chg.txt +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/50issues.txt +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/ChangeLog +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/cals-tbl.dtd +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/catalog +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/dbcent.mod +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/dbgenent.mod +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/dbhier.mod +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/dbnotn.mod +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/dbpool.mod +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/docbook.cat +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/docbook.dcl +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/docbook.dtd +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/ent/ISOamsa +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/ent/ISOamsb +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/ent/ISOamsc +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/ent/ISOamsn +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/ent/ISOamso +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/ent/ISOamsr +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/ent/ISObox +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/ent/ISOcyr1 +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/ent/ISOcyr2 +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/ent/ISOdia +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/ent/ISOgrk1 +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/ent/ISOgrk2 +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/ent/ISOgrk3 +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/ent/ISOgrk4 +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/ent/ISOlat1 +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/ent/ISOlat2 +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/ent/ISOnum +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/ent/ISOpub +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/ent/ISOtech +%%PORTDOCS%%share/doc/samba/docbook/dbsgml/readme.txt +%%PORTDOCS%%share/doc/samba/docbook/docbook.txt +%%PORTDOCS%%share/doc/samba/docbook/faq/README.NOW +%%PORTDOCS%%share/doc/samba/docbook/global.ent +%%PORTDOCS%%share/doc/samba/docbook/howto/README.NOW +%%PORTDOCS%%share/doc/samba/docbook/manpages/findsmb.1.sgml +%%PORTDOCS%%share/doc/samba/docbook/manpages/lmhosts.5.sgml +%%PORTDOCS%%share/doc/samba/docbook/manpages/make_smbcodepage.1.sgml +%%PORTDOCS%%share/doc/samba/docbook/manpages/make_unicodemap.1.sgml +%%PORTDOCS%%share/doc/samba/docbook/manpages/nmbd.8.sgml +%%PORTDOCS%%share/doc/samba/docbook/manpages/nmblookup.1.sgml +%%PORTDOCS%%share/doc/samba/docbook/manpages/pdbedit.8.sgml +%%PORTDOCS%%share/doc/samba/docbook/manpages/rpcclient.1.sgml +%%PORTDOCS%%share/doc/samba/docbook/manpages/samba.7.sgml +%%PORTDOCS%%share/doc/samba/docbook/manpages/smb.conf.5.sgml +%%PORTDOCS%%share/doc/samba/docbook/manpages/smbcacls.1.sgml +%%PORTDOCS%%share/doc/samba/docbook/manpages/smbclient.1.sgml +%%PORTDOCS%%share/doc/samba/docbook/manpages/smbcontrol.1.sgml +%%PORTDOCS%%share/doc/samba/docbook/manpages/smbd.8.sgml +%%PORTDOCS%%share/doc/samba/docbook/manpages/smbmnt.8.sgml +%%PORTDOCS%%share/doc/samba/docbook/manpages/smbmount.8.sgml +%%PORTDOCS%%share/doc/samba/docbook/manpages/smbpasswd.5.sgml +%%PORTDOCS%%share/doc/samba/docbook/manpages/smbpasswd.8.sgml +%%PORTDOCS%%share/doc/samba/docbook/manpages/smbsh.1.sgml +%%PORTDOCS%%share/doc/samba/docbook/manpages/smbspool.8.sgml +%%PORTDOCS%%share/doc/samba/docbook/manpages/smbstatus.1.sgml +%%PORTDOCS%%share/doc/samba/docbook/manpages/smbtar.1.sgml +%%PORTDOCS%%share/doc/samba/docbook/manpages/smbumount.8.sgml +%%PORTDOCS%%share/doc/samba/docbook/manpages/swat.8.sgml +%%PORTDOCS%%share/doc/samba/docbook/manpages/testparm.1.sgml +%%PORTDOCS%%share/doc/samba/docbook/manpages/testprns.1.sgml +%%PORTDOCS%%share/doc/samba/docbook/manpages/wbinfo.1.sgml +%%PORTDOCS%%share/doc/samba/docbook/manpages/winbindd.8.sgml +%%PORTDOCS%%share/doc/samba/docbook/projdoc/CVS-Access.sgml +%%PORTDOCS%%share/doc/samba/docbook/projdoc/DOMAIN_MEMBER.sgml +%%PORTDOCS%%share/doc/samba/docbook/projdoc/ENCRYPTION.sgml +%%PORTDOCS%%share/doc/samba/docbook/projdoc/Integrating-with-Windows.sgml +%%PORTDOCS%%share/doc/samba/docbook/projdoc/NT_Security.sgml +%%PORTDOCS%%share/doc/samba/docbook/projdoc/OS2-Client-HOWTO.sgml +%%PORTDOCS%%share/doc/samba/docbook/projdoc/PAM-Authentication-And-Samba.sgml +%%PORTDOCS%%share/doc/samba/docbook/projdoc/Samba-BDC-HOWTO.sgml +%%PORTDOCS%%share/doc/samba/docbook/projdoc/Samba-LDAP-HOWTO.sgml +%%PORTDOCS%%share/doc/samba/docbook/projdoc/Samba-PDC-HOWTO.sgml +%%PORTDOCS%%share/doc/samba/docbook/projdoc/UNIX_INSTALL.sgml +%%PORTDOCS%%share/doc/samba/docbook/projdoc/cups.sgml +%%PORTDOCS%%share/doc/samba/docbook/projdoc/msdfs_setup.sgml +%%PORTDOCS%%share/doc/samba/docbook/projdoc/printer_driver2.sgml +%%PORTDOCS%%share/doc/samba/docbook/projdoc/samba-doc.sgml +%%PORTDOCS%%share/doc/samba/docbook/projdoc/winbind.sgml +%%PORTDOCS%%share/doc/samba/docbook/scripts/README.ldp_print +%%PORTDOCS%%share/doc/samba/docbook/scripts/collateindex.pl +%%PORTDOCS%%share/doc/samba/docbook/scripts/fix_print_html.lib +%%PORTDOCS%%share/doc/samba/docbook/scripts/ldp_print +%%PORTDOCS%%share/doc/samba/docbook/scripts/make-article.pl +%%PORTDOCS%%share/doc/samba/docbook/scripts/strip-links.pl +%%PORTDOCS%%share/doc/samba/docbook/stylesheets/ldp.dsl.in +%%PORTDOCS%%share/doc/samba/faq/README +%%PORTDOCS%%share/doc/samba/faq/Samba-Server-FAQ-1.html +%%PORTDOCS%%share/doc/samba/faq/Samba-Server-FAQ-2.html +%%PORTDOCS%%share/doc/samba/faq/Samba-Server-FAQ.html +%%PORTDOCS%%share/doc/samba/faq/Samba-Server-FAQ.sgml +%%PORTDOCS%%share/doc/samba/faq/Samba-meta-FAQ-1.html +%%PORTDOCS%%share/doc/samba/faq/Samba-meta-FAQ-2.html +%%PORTDOCS%%share/doc/samba/faq/Samba-meta-FAQ-3.html +%%PORTDOCS%%share/doc/samba/faq/Samba-meta-FAQ-4.html +%%PORTDOCS%%share/doc/samba/faq/Samba-meta-FAQ-5.html +%%PORTDOCS%%share/doc/samba/faq/Samba-meta-FAQ-6.html +%%PORTDOCS%%share/doc/samba/faq/Samba-meta-FAQ.html +%%PORTDOCS%%share/doc/samba/faq/Samba-meta-FAQ.sgml +%%PORTDOCS%%share/doc/samba/faq/Samba-meta-FAQ.txt +%%PORTDOCS%%share/doc/samba/faq/sambafaq-1.html +%%PORTDOCS%%share/doc/samba/faq/sambafaq-2.html +%%PORTDOCS%%share/doc/samba/faq/sambafaq-3.html +%%PORTDOCS%%share/doc/samba/faq/sambafaq-4.html +%%PORTDOCS%%share/doc/samba/faq/sambafaq-5.html +%%PORTDOCS%%share/doc/samba/faq/sambafaq.html +%%PORTDOCS%%share/doc/samba/faq/sambafaq.sgml +%%PORTDOCS%%share/doc/samba/faq/sambafaq.txt +%%PORTDOCS%%share/doc/samba/history +%%PORTDOCS%%share/doc/samba/htmldocs/CVS-Access.html +%%PORTDOCS%%share/doc/samba/htmldocs/DOMAIN_MEMBER.html +%%PORTDOCS%%share/doc/samba/htmldocs/ENCRYPTION.html +%%PORTDOCS%%share/doc/samba/htmldocs/Integrating-with-Windows.html +%%PORTDOCS%%share/doc/samba/htmldocs/NT_Security.html +%%PORTDOCS%%share/doc/samba/htmldocs/OS2-Client-HOWTO.html +%%PORTDOCS%%share/doc/samba/htmldocs/PAM-Authentication-And-Samba.html +%%PORTDOCS%%share/doc/samba/htmldocs/Samba-BDC-HOWTO.html +%%PORTDOCS%%share/doc/samba/htmldocs/Samba-HOWTO-Collection.html +%%PORTDOCS%%share/doc/samba/htmldocs/Samba-LDAP-HOWTO.html +%%PORTDOCS%%share/doc/samba/htmldocs/Samba-PDC-HOWTO.html +%%PORTDOCS%%share/doc/samba/htmldocs/UNIX_INSTALL.html +%%PORTDOCS%%share/doc/samba/htmldocs/cups.html +%%PORTDOCS%%share/doc/samba/htmldocs/findsmb.1.html +%%PORTDOCS%%share/doc/samba/htmldocs/lmhosts.5.html +%%PORTDOCS%%share/doc/samba/htmldocs/make_smbcodepage.1.html +%%PORTDOCS%%share/doc/samba/htmldocs/make_unicodemap.1.html +%%PORTDOCS%%share/doc/samba/htmldocs/msdfs_setup.html +%%PORTDOCS%%share/doc/samba/htmldocs/nmbd.8.html +%%PORTDOCS%%share/doc/samba/htmldocs/nmblookup.1.html +%%PORTDOCS%%share/doc/samba/htmldocs/pdbedit.8.html +%%PORTDOCS%%share/doc/samba/htmldocs/printer_driver2.html +%%PORTDOCS%%share/doc/samba/htmldocs/rpcclient.1.html +%%PORTDOCS%%share/doc/samba/htmldocs/samba.7.html +%%PORTDOCS%%share/doc/samba/htmldocs/smb.conf.5.html +%%PORTDOCS%%share/doc/samba/htmldocs/smbcacls.1.html +%%PORTDOCS%%share/doc/samba/htmldocs/smbclient.1.html +%%PORTDOCS%%share/doc/samba/htmldocs/smbcontrol.1.html +%%PORTDOCS%%share/doc/samba/htmldocs/smbd.8.html +%%PORTDOCS%%share/doc/samba/htmldocs/smbmnt.8.html +%%PORTDOCS%%share/doc/samba/htmldocs/smbmount.8.html +%%PORTDOCS%%share/doc/samba/htmldocs/smbpasswd.5.html +%%PORTDOCS%%share/doc/samba/htmldocs/smbpasswd.8.html +%%PORTDOCS%%share/doc/samba/htmldocs/smbsh.1.html +%%PORTDOCS%%share/doc/samba/htmldocs/smbspool.8.html +%%PORTDOCS%%share/doc/samba/htmldocs/smbstatus.1.html +%%PORTDOCS%%share/doc/samba/htmldocs/smbtar.1.html +%%PORTDOCS%%share/doc/samba/htmldocs/smbumount.8.html +%%PORTDOCS%%share/doc/samba/htmldocs/swat.8.html +%%PORTDOCS%%share/doc/samba/htmldocs/testparm.1.html +%%PORTDOCS%%share/doc/samba/htmldocs/testprns.1.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/appa_01.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/appa_02.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/appa_03.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/appa_04.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/appa_05.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/appb_01.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/appb_02.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/appb_03.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/appc_01.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/appd_01.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/appe_01.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/appf_01.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch01_01.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch01_02.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch01_03.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch01_04.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch01_05.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch01_06.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch01_07.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch01_08.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch02_01.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch02_02.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch02_03.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch02_04.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch02_05.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch02_06.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch03_01.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch03_02.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch03_03.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch04_01.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch04_02.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch04_03.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch04_04.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch04_05.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch04_06.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch04_07.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch04_08.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch05_01.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch05_02.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch05_03.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch05_04.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch05_05.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch06_01.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch06_02.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch06_03.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch06_04.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch06_05.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch06_06.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch07_01.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch07_02.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch07_03.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch08_01.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch08_02.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch08_03.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch08_04.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch08_05.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch08_06.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch08_07.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch09_01.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch09_02.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/ch09_03.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0101.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0102.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0103.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0104.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0105.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0106.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0107.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0108.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0109.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0110.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0111.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0112.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0113.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0114.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0201.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0202.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0203.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0204.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0301.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0302.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0303.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0304.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0305.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0306.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0307.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0308.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0309.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0310.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0311.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0312.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0313.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0314.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0315.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0316.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0317.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0318.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0319.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0320.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0321.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0322.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0323.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0324.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0325.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0326.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0327.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0328.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0401.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0402.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0403.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0404.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0405.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0406.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0407.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0501.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0502.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0503.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0504.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0505.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0506.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0507.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0508.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0601.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0602.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0603.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0604.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0605.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0606.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0701.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0702.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0703.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0704.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0705.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0706.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0707.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0708.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0709.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0801.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0802.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0803.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0804.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0805.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0901.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0902.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0903.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0904.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.0905.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.aa01.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.ab01.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/figs/sam.ab02.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/gifs/index.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/gifs/samba.s.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/gifs/txthome.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/gifs/txtnexta.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/gifs/txtpreva.gif +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/index.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/inx.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/licenseinfo.html +%%PORTDOCS%%share/doc/samba/htmldocs/using_samba/this_edition.html +%%PORTDOCS%%share/doc/samba/htmldocs/wbinfo.1.html +%%PORTDOCS%%share/doc/samba/htmldocs/wfw_slip.htm +%%PORTDOCS%%share/doc/samba/htmldocs/winbind.html +%%PORTDOCS%%share/doc/samba/htmldocs/winbindd.8.html +%%PORTDOCS%%share/doc/samba/ja/CREDITS.txt +%%PORTDOCS%%share/doc/samba/ja/ML.txt +%%PORTDOCS%%share/doc/samba/ja/WHATSNEW.txt +%%PORTDOCS%%share/doc/samba/ja/history +%%PORTDOCS%%share/doc/samba/ja/htmldocs/CVS-Access.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/DOMAIN_MEMBER.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/BrowsingFAQ/browsing01.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/BrowsingFAQ/browsing02.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/BrowsingFAQ/fig_1.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/BrowsingFAQ/fig_2.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/BrowsingFAQ/image/fig1.png +%%PORTDOCS%%share/doc/samba/ja/htmldocs/BrowsingFAQ/image/fig2.png +%%PORTDOCS%%share/doc/samba/ja/htmldocs/BrowsingFAQ/image/fig4.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/BrowsingFAQ/image/fig5.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/BrowsingFAQ/image/fig6.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/BrowsingFAQ/image/fig7.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/BrowsingFAQ/image/fig8.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/BrowsingFAQ/image/return.png +%%PORTDOCS%%share/doc/samba/ja/htmldocs/BrowsingFAQ/index.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig05.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig06.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig07.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig08.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig09.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig10.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig11.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig12.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig14.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig15.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig16.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig17.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig18.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig19.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig20.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig21.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig22.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig23.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig24.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/HowToUseSamba2.2/fig25.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/HowToUseSamba2.2/index.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/NT_Security.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/diag.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/encrypt-passwd.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/findsmb.1.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/lmhosts.5.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/make_smbcodepage.1.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/make_unicodemap.1.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/msdfs_setup.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/nmbd.8.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/nmblookup.1.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/pdbedit.8.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/printer_driver2.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/quota/fig1.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/quota/fig2.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/quota/fig3.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/quota/fig4.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/quota/fig5.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/quota/fig6.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/quota/index.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/rpcclient.1.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/samba-func.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/samba-j.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/samba-pdc-faq.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/samba.7.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/samba2.2_func/fig01.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/samba2.2_func/fig03.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/samba2.2_func/fig04.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/samba2.2_func/fig05.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/samba2.2_func/fig06.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/samba2.2_func/fig07.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/samba2.2_func/index.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/samba2.2_whatsnew/fig01.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/samba2.2_whatsnew/fig02.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/samba2.2_whatsnew/fig03.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/samba2.2_whatsnew/fig04.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/samba2.2_whatsnew/fig05.gif +%%PORTDOCS%%share/doc/samba/ja/htmldocs/samba2.2_whatsnew/index.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/samba2.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/samba_begin.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/sambafaq-1.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/sambafaq-2.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/sambafaq-3.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/sambafaq-4.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/sambafaq-5.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/sambafaq.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/sambafaq.sgml +%%PORTDOCS%%share/doc/samba/ja/htmldocs/smb.conf.5.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/smbcacls.1.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/smbclient.1.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/smbcontrol.1.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/smbd.8.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/smbmnt.8.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/smbmount.8.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/smbpasswd.5.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/smbpasswd.8.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/smbsh.1.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/smbspool.8.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/smbstatus.1.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/smbtar.1.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/smbumount.8.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/swat.8.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/testparm.1.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/testprns.1.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/tuning.japanese.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/appa_01.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/appa_02.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/appa_03.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/appa_04.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/appa_05.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/appb_01.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/appb_02.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/appb_03.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/appc_01.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/appd_01.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/appe_01.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/appf_01.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch01_01.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch01_02.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch01_03.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch01_04.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch01_05.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch01_06.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch01_07.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch01_08.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch02_01.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch02_02.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch02_03.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch02_04.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch02_05.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch02_06.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch03_01.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch03_02.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch03_03.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch04_01.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch04_02.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch04_03.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch04_04.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch04_05.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch04_06.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch04_07.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch04_08.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch05_01.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch05_02.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch05_03.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch05_04.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch05_05.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch06_01.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch06_02.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch06_03.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch06_04.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch06_05.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch06_06.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch07_01.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch07_02.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch07_03.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch08_01.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch08_02.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch08_03.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch08_04.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch08_05.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch08_06.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch08_07.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch09_01.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch09_02.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/ch09_03.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/contributor.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/index.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/inx.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/licenseinfo.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/status.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/using_samba/this_edition.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/wbinfo.1.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/whatsamba.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/winbind.html +%%PORTDOCS%%share/doc/samba/ja/htmldocs/winbindd.8.html +%%PORTDOCS%%share/doc/samba/ja/reg/NT4_PlainPassword.reg +%%PORTDOCS%%share/doc/samba/ja/reg/Win2000_PlainPassword.reg +%%PORTDOCS%%share/doc/samba/ja/reg/Win95_PlainPassword.reg +%%PORTDOCS%%share/doc/samba/ja/reg/Win98_PlainPassword.reg +%%PORTDOCS%%share/doc/samba/ja/reg/Win9X-CacheHandling.reg +%%PORTDOCS%%share/doc/samba/ja/status.html +%%PORTDOCS%%share/doc/samba/ja/textdocs/Application_Serving.txt +%%PORTDOCS%%share/doc/samba/ja/textdocs/BROWSING-Config.txt +%%PORTDOCS%%share/doc/samba/ja/textdocs/BROWSING.txt +%%PORTDOCS%%share/doc/samba/ja/textdocs/CRLF-LF-Conversions.txt +%%PORTDOCS%%share/doc/samba/ja/textdocs/CVS_ACCESS.txt +%%PORTDOCS%%share/doc/samba/ja/textdocs/DIAGNOSIS.txt +%%PORTDOCS%%share/doc/samba/ja/textdocs/DOMAIN.txt +%%PORTDOCS%%share/doc/samba/ja/textdocs/DOMAIN_MEMBER.txt +%%PORTDOCS%%share/doc/samba/ja/textdocs/ENCRYPTION.txt +%%PORTDOCS%%share/doc/samba/ja/textdocs/File-Cacheing.txt +%%PORTDOCS%%share/doc/samba/ja/textdocs/Macintosh_Clients.txt +%%PORTDOCS%%share/doc/samba/ja/textdocs/NT-Guest-Access.txt +%%PORTDOCS%%share/doc/samba/ja/textdocs/NTDOMAIN.txt +%%PORTDOCS%%share/doc/samba/ja/textdocs/NetBIOS.txt +%%PORTDOCS%%share/doc/samba/ja/textdocs/PRINTER_DRIVER.txt +%%PORTDOCS%%share/doc/samba/ja/textdocs/PROFILES.txt +%%PORTDOCS%%share/doc/samba/ja/textdocs/Passwords.txt +%%PORTDOCS%%share/doc/samba/ja/textdocs/README.smbmount.txt +%%PORTDOCS%%share/doc/samba/ja/textdocs/Speed.txt +%%PORTDOCS%%share/doc/samba/ja/textdocs/Speed2.txt +%%PORTDOCS%%share/doc/samba/ja/textdocs/UNIX-SMB.txt +%%PORTDOCS%%share/doc/samba/ja/textdocs/UNIX_INSTALL.txt +%%PORTDOCS%%share/doc/samba/ja/textdocs/Win95.txt +%%PORTDOCS%%share/doc/samba/ja/textdocs/WinNT.txt +%%PORTDOCS%%share/doc/samba/textdocs/CUPS-PrintingInfo.txt +%%PORTDOCS%%share/doc/samba/ja/textdocs/footer.html +%%PORTDOCS%%share/doc/samba/ja/textdocs/header.html +%%PORTDOCS%%share/doc/samba/ja/textdocs/security_level.txt +%%PORTDOCS%%share/doc/samba/ja/textdocs/smbmount.txt +%%PORTDOCS%%share/doc/samba/ja/yodldocs/NT_Security.yo +%%PORTDOCS%%share/doc/samba/ja/yodldocs/make_smbcodepage.1.yo +%%PORTDOCS%%share/doc/samba/ja/yodldocs/make_unicodemap.1.yo +%%PORTDOCS%%share/doc/samba/ja/yodldocs/smbpasswd.8.yo +%%PORTDOCS%%share/doc/samba/manpages/findsmb.1 +%%PORTDOCS%%share/doc/samba/manpages/ja/Makefile +%%PORTDOCS%%share/doc/samba/manpages/ja/findsmb.1.man +%%PORTDOCS%%share/doc/samba/manpages/ja/install-man.sh +%%PORTDOCS%%share/doc/samba/manpages/ja/lmhosts.5.man +%%PORTDOCS%%share/doc/samba/manpages/ja/make_smbcodepage.1.man +%%PORTDOCS%%share/doc/samba/manpages/ja/make_unicodemap.1.man +%%PORTDOCS%%share/doc/samba/manpages/ja/nmbd.8.man +%%PORTDOCS%%share/doc/samba/manpages/ja/nmblookup.1.man +%%PORTDOCS%%share/doc/samba/manpages/ja/pdbedit.8.man +%%PORTDOCS%%share/doc/samba/manpages/ja/rpcclient.1.man +%%PORTDOCS%%share/doc/samba/manpages/ja/samba.7.man +%%PORTDOCS%%share/doc/samba/manpages/ja/smb.conf.5.man +%%PORTDOCS%%share/doc/samba/manpages/ja/smbcacls.1.man +%%PORTDOCS%%share/doc/samba/manpages/ja/smbclient.1.man +%%PORTDOCS%%share/doc/samba/manpages/ja/smbcontrol.1.man +%%PORTDOCS%%share/doc/samba/manpages/ja/smbd.8.man +%%PORTDOCS%%share/doc/samba/manpages/ja/smbmnt.8.man +%%PORTDOCS%%share/doc/samba/manpages/ja/smbmount.8.man +%%PORTDOCS%%share/doc/samba/manpages/ja/smbpasswd.5.man +%%PORTDOCS%%share/doc/samba/manpages/ja/smbpasswd.8.man +%%PORTDOCS%%share/doc/samba/manpages/ja/smbsh.1.man +%%PORTDOCS%%share/doc/samba/manpages/ja/smbspool.8.man +%%PORTDOCS%%share/doc/samba/manpages/ja/smbstatus.1.man +%%PORTDOCS%%share/doc/samba/manpages/ja/smbtar.1.man +%%PORTDOCS%%share/doc/samba/manpages/ja/smbumount.8.man +%%PORTDOCS%%share/doc/samba/manpages/ja/swat.8.man +%%PORTDOCS%%share/doc/samba/manpages/ja/testparm.1.man +%%PORTDOCS%%share/doc/samba/manpages/ja/testprns.1.man +%%PORTDOCS%%share/doc/samba/manpages/ja/wbinfo.1.man +%%PORTDOCS%%share/doc/samba/manpages/ja/winbindd.8.man +%%PORTDOCS%%share/doc/samba/manpages/lmhosts.5 +%%PORTDOCS%%share/doc/samba/manpages/make_smbcodepage.1 +%%PORTDOCS%%share/doc/samba/manpages/make_unicodemap.1 +%%PORTDOCS%%share/doc/samba/manpages/nmbd.8 +%%PORTDOCS%%share/doc/samba/manpages/nmblookup.1 +%%PORTDOCS%%share/doc/samba/manpages/pdbedit.8 +%%PORTDOCS%%share/doc/samba/manpages/rpcclient.1 +%%PORTDOCS%%share/doc/samba/manpages/samba.7 +%%PORTDOCS%%share/doc/samba/manpages/smb.conf.5 +%%PORTDOCS%%share/doc/samba/manpages/smbcacls.1 +%%PORTDOCS%%share/doc/samba/manpages/smbclient.1 +%%PORTDOCS%%share/doc/samba/manpages/smbcontrol.1 +%%PORTDOCS%%share/doc/samba/manpages/smbd.8 +%%PORTDOCS%%share/doc/samba/manpages/smbmnt.8 +%%PORTDOCS%%share/doc/samba/manpages/smbmount.8 +%%PORTDOCS%%share/doc/samba/manpages/smbpasswd.5 +%%PORTDOCS%%share/doc/samba/manpages/smbpasswd.8 +%%PORTDOCS%%share/doc/samba/manpages/smbsh.1 +%%PORTDOCS%%share/doc/samba/manpages/smbspool.8 +%%PORTDOCS%%share/doc/samba/manpages/smbstatus.1 +%%PORTDOCS%%share/doc/samba/manpages/smbtar.1 +%%PORTDOCS%%share/doc/samba/manpages/smbumount.8 +%%PORTDOCS%%share/doc/samba/manpages/swat.8 +%%PORTDOCS%%share/doc/samba/manpages/testparm.1 +%%PORTDOCS%%share/doc/samba/manpages/testprns.1 +%%PORTDOCS%%share/doc/samba/manpages/wbinfo.1 +%%PORTDOCS%%share/doc/samba/manpages/winbindd.8 +%%PORTDOCS%%share/doc/samba/textdocs/Application_Serving.txt +%%PORTDOCS%%share/doc/samba/textdocs/BROWSING-Config.txt +%%PORTDOCS%%share/doc/samba/textdocs/BROWSING.txt +%%PORTDOCS%%share/doc/samba/textdocs/BUGS.txt +%%PORTDOCS%%share/doc/samba/textdocs/DHCP-Server-Configuration.txt +%%PORTDOCS%%share/doc/samba/textdocs/DIAGNOSIS.txt +%%PORTDOCS%%share/doc/samba/textdocs/DNIX.txt +%%PORTDOCS%%share/doc/samba/textdocs/Faxing.txt +%%PORTDOCS%%share/doc/samba/textdocs/GOTCHAS.txt +%%PORTDOCS%%share/doc/samba/textdocs/HINTS.txt +%%PORTDOCS%%share/doc/samba/textdocs/INSTALL.sambatar +%%PORTDOCS%%share/doc/samba/textdocs/Imprints.txt +%%PORTDOCS%%share/doc/samba/textdocs/Macintosh_Clients.txt +%%PORTDOCS%%share/doc/samba/textdocs/NetBIOS.txt +%%PORTDOCS%%share/doc/samba/textdocs/PROFILES.txt +%%PORTDOCS%%share/doc/samba/textdocs/Passwords.txt +%%PORTDOCS%%share/doc/samba/textdocs/Printing.txt +%%PORTDOCS%%share/doc/samba/textdocs/README.DCEDFS +%%PORTDOCS%%share/doc/samba/textdocs/README.NOW +%%PORTDOCS%%share/doc/samba/textdocs/README.jis +%%PORTDOCS%%share/doc/samba/textdocs/README.sambatar +%%PORTDOCS%%share/doc/samba/textdocs/Recent-FAQs.txt +%%PORTDOCS%%share/doc/samba/textdocs/RoutedNetworks.txt +%%PORTDOCS%%share/doc/samba/textdocs/SCO.txt +%%PORTDOCS%%share/doc/samba/textdocs/SMBTAR.notes +%%PORTDOCS%%share/doc/samba/textdocs/Samba-OpenSSL.txt +%%PORTDOCS%%share/doc/samba/textdocs/Speed.txt +%%PORTDOCS%%share/doc/samba/textdocs/Speed2.txt +%%PORTDOCS%%share/doc/samba/textdocs/Tracing.txt +%%PORTDOCS%%share/doc/samba/textdocs/UNIX-SMB.txt +%%PORTDOCS%%share/doc/samba/textdocs/UNIX_SECURITY.txt +%%PORTDOCS%%share/doc/samba/textdocs/Win95.txt +%%PORTDOCS%%share/doc/samba/textdocs/WinNT.txt +%%PORTDOCS%%share/doc/samba/textdocs/cifsntdomain.txt +%%PORTDOCS%%share/doc/samba/textdocs/outdated/NTDOMAIN.txt +%%PORTDOCS%%share/doc/samba/textdocs/outdated/PRINTER_DRIVER.txt +%%PORTDOCS%%share/doc/samba/textdocs/outdated/PROJECTS +%%PORTDOCS%%share/doc/samba/textdocs/security_level.txt +%%PORTDOCS%%share/doc/samba/yodldocs/README-NOW +%%PORTDOCS%%@dirrm share/doc/samba/OID +%%PORTDOCS%%@dirrm share/doc/samba/Registry +%%PORTDOCS%%@dirrm share/doc/samba/docbook/faq +%%PORTDOCS%%@dirrm share/doc/samba/docbook/dbsgml/ent +%%PORTDOCS%%@dirrm share/doc/samba/docbook/dbsgml +%%PORTDOCS%%@dirrm share/doc/samba/docbook/howto +%%PORTDOCS%%@dirrm share/doc/samba/docbook/manpages +%%PORTDOCS%%@dirrm share/doc/samba/docbook/projdoc +%%PORTDOCS%%@dirrm share/doc/samba/docbook/scripts +%%PORTDOCS%%@dirrm share/doc/samba/docbook/stylesheets +%%PORTDOCS%%@dirrm share/doc/samba/docbook +%%PORTDOCS%%@dirrm share/doc/samba/faq +%%PORTDOCS%%@dirrm share/doc/samba/htmldocs/using_samba/figs +%%PORTDOCS%%@dirrm share/doc/samba/htmldocs/using_samba/gifs +%%PORTDOCS%%@dirrm share/doc/samba/htmldocs/using_samba +%%PORTDOCS%%@dirrm share/doc/samba/htmldocs +%%PORTDOCS%%@dirrm share/doc/samba/ja/reg +%%PORTDOCS%%@dirrm share/doc/samba/ja/htmldocs/quota +%%PORTDOCS%%@dirrm share/doc/samba/ja/htmldocs/BrowsingFAQ/image +%%PORTDOCS%%@dirrm share/doc/samba/ja/htmldocs/BrowsingFAQ +%%PORTDOCS%%@dirrm share/doc/samba/ja/htmldocs/HowToUseSamba2.2 +%%PORTDOCS%%@dirrm share/doc/samba/ja/htmldocs/samba2.2_func +%%PORTDOCS%%@dirrm share/doc/samba/ja/htmldocs/samba2.2_whatsnew +%%PORTDOCS%%@dirrm share/doc/samba/ja/htmldocs/using_samba +%%PORTDOCS%%@dirrm share/doc/samba/ja/htmldocs +%%PORTDOCS%%@dirrm share/doc/samba/ja/textdocs +%%PORTDOCS%%@dirrm share/doc/samba/ja/yodldocs +%%PORTDOCS%%@dirrm share/doc/samba/ja +%%PORTDOCS%%@dirrm share/doc/samba/manpages/ja +%%PORTDOCS%%@dirrm share/doc/samba/manpages +%%PORTDOCS%%@dirrm share/doc/samba/textdocs/outdated +%%PORTDOCS%%@dirrm share/doc/samba/textdocs +%%PORTDOCS%%@dirrm share/doc/samba/yodldocs share/examples/samba/LDAP/README -share/examples/samba/LDAP/export2_smbpasswd.pl share/examples/samba/LDAP/export_smbpasswd.pl -share/examples/samba/LDAP/import2_smbpasswd.pl share/examples/samba/LDAP/import_smbpasswd.pl share/examples/samba/LDAP/ldapchpasswd share/examples/samba/LDAP/ldapsync.pl +share/examples/samba/LDAP/samba-nds.schema share/examples/samba/LDAP/samba.schema share/examples/samba/LDAP/samba-schema-netscapeds4.x share/examples/samba/LDAP/samba-schema-netscapeds5.x share/examples/samba/LDAP/samba-schema.IBMSecureWay +share/examples/samba/LDAP/smbldap-tools/AUTHORS +share/examples/samba/LDAP/smbldap-tools/CONTRIBUTORS +share/examples/samba/LDAP/smbldap-tools/COPYING +share/examples/samba/LDAP/smbldap-tools/ChangeLog +share/examples/samba/LDAP/smbldap-tools/FILES +share/examples/samba/LDAP/smbldap-tools/INFRASTRUCTURE +share/examples/samba/LDAP/smbldap-tools/INSTALL +share/examples/samba/LDAP/smbldap-tools/Makefile +share/examples/samba/LDAP/smbldap-tools/NEWS +share/examples/samba/LDAP/smbldap-tools/README +share/examples/samba/LDAP/smbldap-tools/TODO +share/examples/samba/LDAP/smbldap-tools/cgi/README +share/examples/samba/LDAP/smbldap-tools/cgi/ldappass.cgi +share/examples/samba/LDAP/smbldap-tools/mkntpwd/Makefile +share/examples/samba/LDAP/smbldap-tools/mkntpwd/getopt.c +share/examples/samba/LDAP/smbldap-tools/mkntpwd/getopt.h +share/examples/samba/LDAP/smbldap-tools/mkntpwd/md4.c +share/examples/samba/LDAP/smbldap-tools/mkntpwd/mkntpwd.c +share/examples/samba/LDAP/smbldap-tools/mkntpwd/mkntpwd.h +share/examples/samba/LDAP/smbldap-tools/mkntpwd/smbdes.c +share/examples/samba/LDAP/smbldap-tools/smbldap-groupadd.pl +share/examples/samba/LDAP/smbldap-tools/smbldap-groupdel.pl +share/examples/samba/LDAP/smbldap-tools/smbldap-groupmod.pl +share/examples/samba/LDAP/smbldap-tools/smbldap-groupshow.pl +share/examples/samba/LDAP/smbldap-tools/smbldap-migrate-accounts.pl +share/examples/samba/LDAP/smbldap-tools/smbldap-migrate-groups.pl +share/examples/samba/LDAP/smbldap-tools/smbldap-passwd.pl +share/examples/samba/LDAP/smbldap-tools/smbldap-populate.pl +share/examples/samba/LDAP/smbldap-tools/smbldap-tools.spec +share/examples/samba/LDAP/smbldap-tools/smbldap-useradd.pl +share/examples/samba/LDAP/smbldap-tools/smbldap-userdel.pl +share/examples/samba/LDAP/smbldap-tools/smbldap-usermod.pl +share/examples/samba/LDAP/smbldap-tools/smbldap-usershow.pl +share/examples/samba/LDAP/smbldap-tools/smbldap_conf.pm +share/examples/samba/LDAP/smbldap-tools/smbldap_tools.pm share/examples/samba/README -share/examples/samba/VFS/Makefile +%%BUILD_VFS%%share/examples/samba/VFS/Makefile +share/examples/samba/VFS/.cvsignore share/examples/samba/VFS/README share/examples/samba/VFS/audit.c -share/examples/samba/VFS/block/Makefile +%%BUILD_VFS%%share/examples/samba/VFS/audit.o +%%BUILD_VFS%%share/examples/samba/VFS/audit.so share/examples/samba/VFS/block/block.c +%%BUILD_VFS%%share/examples/samba/VFS/block/block.o +%%BUILD_VFS%%share/examples/samba/VFS/block/block.so +%%BUILD_VFS%%share/examples/samba/VFS/recycle/recycle.o +%%BUILD_VFS%%share/examples/samba/VFS/recycle/recycle.so +%%BUILD_VFS%%share/examples/samba/VFS/skel.o +%%BUILD_VFS%%share/examples/samba/VFS/skel.so share/examples/samba/VFS/block/samba-block.conf share/examples/samba/VFS/block/smb.conf -share/examples/samba/VFS/recycle.c +share/examples/samba/VFS/Makefile.in +share/examples/samba/VFS/configure +share/examples/samba/VFS/configure.in +share/examples/samba/VFS/recycle/README +share/examples/samba/VFS/recycle/cleanup_recycle.pl +share/examples/samba/VFS/recycle/recycle.c +share/examples/samba/VFS/recycle/recycle.conf share/examples/samba/VFS/skel.c share/examples/samba/appliance/Makefile share/examples/samba/appliance/README @@ -796,6 +853,8 @@ share/examples/samba/appliance/smb.conf-appliance share/examples/samba/autofs/auto.a share/examples/samba/dce-dfs/README share/examples/samba/dce-dfs/smb.conf +share/examples/samba/libsmbclient/Makefile +share/examples/samba/libsmbclient/README share/examples/samba/libsmbclient/testsmbc.c share/examples/samba/libsmbclient/tree.c share/examples/samba/misc/extra_smbstatus @@ -810,6 +869,7 @@ share/examples/samba/printer-accounting/lp-acct share/examples/samba/printer-accounting/printcap share/examples/samba/printing/smbprint share/examples/samba/printing/smbprint.newer +share/examples/samba/printing/smbprint.old share/examples/samba/printing/smbprint.safer share/examples/samba/printing/smbprint.sysv share/examples/samba/simple/README @@ -843,8 +903,12 @@ share/examples/samba/validchars/nwdos70.out share/examples/samba/validchars/readme share/examples/samba/validchars/validchr.c share/examples/samba/validchars/validchr.com +@dirrm share/examples/samba/LDAP/smbldap-tools/cgi +@dirrm share/examples/samba/LDAP/smbldap-tools/mkntpwd +@dirrm share/examples/samba/LDAP/smbldap-tools @dirrm share/examples/samba/LDAP @dirrm share/examples/samba/VFS/block +@dirrm share/examples/samba/VFS/recycle @dirrm share/examples/samba/VFS @dirrm share/examples/samba/appliance @dirrm share/examples/samba/autofs @@ -876,6 +940,7 @@ share/swat/help/Samba-HOWTO-Collection.html share/swat/help/Samba-LDAP-HOWTO.html share/swat/help/Samba-PDC-HOWTO.html share/swat/help/UNIX_INSTALL.html +share/swat/help/cups.html share/swat/help/findsmb.1.html share/swat/help/lmhosts.5.html share/swat/help/make_smbcodepage.1.html @@ -916,6 +981,7 @@ share/swat/images/samba.gif share/swat/images/shares.gif share/swat/images/status.gif share/swat/images/viewconfig.gif +share/swat/images/wizard.gif share/swat/include/footer.html share/swat/include/header.html share/swat/ja/help/Application_Serving.txt.html @@ -925,23 +991,22 @@ share/swat/ja/help/BrowsingFAQ/browsing01.html share/swat/ja/help/BrowsingFAQ/browsing02.html share/swat/ja/help/BrowsingFAQ/fig_1.html share/swat/ja/help/BrowsingFAQ/fig_2.html -share/swat/ja/help/BrowsingFAQ/fig_4.html -share/swat/ja/help/BrowsingFAQ/fig_5.html -share/swat/ja/help/BrowsingFAQ/fig_6.html -share/swat/ja/help/BrowsingFAQ/fig_7.html -share/swat/ja/help/BrowsingFAQ/fig_8.html share/swat/ja/help/BrowsingFAQ/image/fig1.png share/swat/ja/help/BrowsingFAQ/image/fig2.png -share/swat/ja/help/BrowsingFAQ/image/fig4s.png -share/swat/ja/help/BrowsingFAQ/image/fig5s.png -share/swat/ja/help/BrowsingFAQ/image/fig7s.png -share/swat/ja/help/BrowsingFAQ/image/fig8s.png +share/swat/ja/help/BrowsingFAQ/image/fig4.gif +share/swat/ja/help/BrowsingFAQ/image/fig5.gif +share/swat/ja/help/BrowsingFAQ/image/fig6.gif +share/swat/ja/help/BrowsingFAQ/image/fig7.gif +share/swat/ja/help/BrowsingFAQ/image/fig8.gif +share/swat/ja/help/BrowsingFAQ/image/return.png share/swat/ja/help/BrowsingFAQ/index.html share/swat/ja/help/CRLF-LF-Conversions.txt.html share/swat/ja/help/CVS_ACCESS.txt.html +share/swat/ja/help/CVS-Access.html share/swat/ja/help/DIAGNOSIS.txt.html share/swat/ja/help/DOMAIN.txt.html share/swat/ja/help/DOMAIN_MEMBER.txt.html +share/swat/ja/help/DOMAIN_MEMBER.html share/swat/ja/help/ENCRYPTION.txt.html share/swat/ja/help/File-Cacheing.txt.html share/swat/ja/help/HowToUseSamba2.2/fig05.gif @@ -1124,6 +1189,7 @@ share/swat/ja/images/samba.gif share/swat/ja/images/shares.gif share/swat/ja/images/status.gif share/swat/ja/images/viewconfig.gif +share/swat/ja/images/wizard.gif share/swat/ja/include/footer.html share/swat/ja/include/header.JP1.html share/swat/ja/include/header.html @@ -1468,13 +1534,5 @@ share/swat/using_samba/this_edition.html @dirrm share/swat/using_samba/ja @dirrm share/swat/using_samba @exec /bin/cat %D/share/doc/samba/README.FreeBSD -@exec /bin/cat /etc/passwd | %D/bin/make_smbpasswd > %D/private/smbpasswd.default -@exec /bin/chmod 600 %D/private/smbpasswd* -@exec /bin/mkdir -p -m 1777 /var/spool/samba -@exec /bin/mkdir -p -m 500 %D/private -@exec /usr/sbin/chown -R root:wheel %D/private -@exec if [ ! -e %D/private/smbpasswd ]; then /bin/cp -p %D/private/smbpasswd.default %D/private/smbpasswd; fi -@unexec /bin/rm -rf /var/spool/samba @unexec /bin/rmdir /var/db/samba 2>/dev/null || true -@unexec /bin/rmdir %D/private 2>/dev/null || true -@unexec if cmp %D/private/smbpasswd.default %D/private/smbpasswd >/dev/null 2>&1; then /bin/rm -f %D/private/smbpasswd ; fi +%%LIBSAMBA%%@dirrm lib/samba diff --git a/japanese/samba/scripts/configure.samba b/japanese/samba/scripts/configure.samba new file mode 100644 index 000000000000..80af4c823d43 --- /dev/null +++ b/japanese/samba/scripts/configure.samba @@ -0,0 +1,97 @@ +#!/bin/sh + +if [ -f ${WRKDIRPREFIX}${REALCURDIR}/Makefile.inc ]; then + exit +fi + +tempfile=`/usr/bin/mktemp -t checklist` + +if [ "${BATCH}" ]; then + if [ "${SAMBA_OPTIONS}" ]; then + set ${SAMBA_OPTIONS} + fi +else + /usr/bin/dialog --title "configuration options" --clear \ + --checklist "\n\ +Please select desired options:" -1 -1 12 \ +syslog "With syslog support" OFF \ +ssl "With ssl support" OFF \ +ldap "With LDAP2 support" OFF \ +nocups "Without CUPS" OFF \ +acl "With ACL support" OFF \ +utmp "With UTMP support" OFF \ +msdfs "With MSDFS support" OFF \ +quota "With Quota support" OFF \ +recycle "With Recycle Bin" OFF \ +audit "With Audit" OFF \ +winbind "With Winbind" OFF \ +wbauth "With Winbind Auth Challenge" OFF \ +2> $tempfile + + retval=$? + + if [ -s $tempfile ]; then + set `cat $tempfile` + fi + rm -f $tempfile + + case $retval in + 0) if [ -z "$*" ]; then + echo "Nothing selected" + fi + ;; + 1) echo "Cancel pressed." + exit 1 + ;; + esac +fi + +${MKDIR} ${WRKDIRPREFIX}${REALCURDIR} +echo "SCRIPT_RUN=yes" >${WRKDIRPREFIX}${REALCURDIR}/Makefile.inc + +while [ "$1" ]; do + case $1 in + \"syslog\") + echo "WITH_SYSLOG=YES" >>${WRKDIRPREFIX}${REALCURDIR}/Makefile.inc + ;; + \"ssl\") + echo "WITH_SSL=YES" >>${WRKDIRPREFIX}${REALCURDIR}/Makefile.inc + ;; + \"ldap\") + echo "WITH_LDAP=YES" >>${WRKDIRPREFIX}${REALCURDIR}/Makefile.inc + ;; + \"nocups\") + echo "WITHOUT_CUPS=YES" >>${WRKDIRPREFIX}${REALCURDIR}/Makefile.inc + ;; + \"acl\") + echo "WITH_ACL_SUPPORT=YES" >>${WRKDIRPREFIX}${REALCURDIR}/Makefile.inc + ;; + \"utmp\") + echo "WITH_UTMP=YES" >>${WRKDIRPREFIX}${REALCURDIR}/Makefile.inc + ;; + \"msdfs\") + echo "WITH_MSDFS=YES" >>${WRKDIRPREFIX}${REALCURDIR}/Makefile.inc + ;; + \"quota\") + echo "WITH_QUOTAS=YES" >>${WRKDIRPREFIX}${REALCURDIR}/Makefile.inc + ;; + \"recycle\") + echo "WITH_RECYCLE=YES" >>${WRKDIRPREFIX}${REALCURDIR}/Makefile.inc + ;; + \"audit\") + echo "WITH_AUDIT=YES" >>${WRKDIRPREFIX}${REALCURDIR}/Makefile.inc + ;; + \"winbind\") + echo "WITH_WINBIND=YES" >>${WRKDIRPREFIX}${REALCURDIR}/Makefile.inc + ;; + \"wbauth\") + echo "WITH_WINBIND_AUTH_CHALLENGE=YES" >>${WRKDIRPREFIX}${REALCURDIR}/Makefile.inc + ;; + *) + echo "Invalid option: $1" + rm -f ${WRKDIRPREFIX}${REALCURDIR}/Makefile.inc + exit 1 + ;; + esac + shift +done |