updated preferred master parameter and added domain master parameter.
[nivanova/samba-autobuild/.git] / docs / manpages / smb.conf.5
1 .TH SMB.CONF 5 smb.conf smb.conf
2 .SH NAME
3 smb.conf \- configuration file for smbd
4 .SH SYNOPSIS
5 .B smb.conf
6 .SH DESCRIPTION
7 The
8 .B smb.conf
9 file is a configuration file for the Samba suite.
10
11 .B smb.conf
12 contains runtime configuration information for the
13 .B smbd
14 program. The
15 .B smbd
16 program provides LanManager-like services to clients
17 using the SMB protocol.
18 .SH FILE FORMAT
19 The file consists of sections and parameters. A section begins with the 
20 name of the section in square brackets and continues until the next
21 section begins. Sections contain parameters of the form 'name = value'.
22
23 The file is line-based - that is, each newline-terminated line represents
24 either a comment, a section name or a parameter.
25
26 Section and parameter names are not case sensitive.
27
28 Only the first equals sign in a parameter is significant. Whitespace before 
29 or after the first equals sign is discarded. Leading, trailing and internal
30 whitespace in section and parameter names is irrelevant. Leading and
31 trailing whitespace in a parameter value is discarded. Internal whitespace
32 within a parameter value is retained verbatim.
33
34 Any line beginning with a semicolon is ignored, as are lines containing 
35 only whitespace.
36
37 Any line ending in a \e is "continued" on the next line in the
38 customary UNIX fashion.
39
40 The values following the equals sign in parameters are all either a string
41 (no quotes needed) or a boolean, which may be given as yes/no, 0/1 or
42 true/false. Case is not significant in boolean values, but is preserved
43 in string values. Some items such as create modes are numeric.
44 .SH SERVICE DESCRIPTIONS
45 Each section in the configuration file describes a service. The section name
46 is the service name and the parameters within the section define the service's
47 attributes.
48
49 There are three special sections, [global], [homes] and [printers], which are
50 described under 'special sections'. The following notes apply to ordinary 
51 service descriptions.
52
53 A service consists of a directory to which access is being given plus a 
54 description of the access rights which are granted to the user of the 
55 service. Some housekeeping options are also specifiable.
56
57 Services are either filespace services (used by the client as an extension of
58 their native file systems) or printable services (used by the client to access
59 print services on the host running the server).
60
61 Services may be guest services, in which case no password is required to
62 access them. A specified guest account is used to define access privileges
63 in this case.
64
65 Services other than guest services will require a password to access
66 them. The client provides the username. As many clients only provide
67 passwords and not usernames, you may specify a list of usernames to
68 check against the password using the "user=" option in the service
69 definition. 
70
71 Note that the access rights granted by the server are masked by the access
72 rights granted to the specified or guest user by the host system. The 
73 server does not grant more access than the host system grants.
74
75 The following sample section defines a file space service. The user has write
76 access to the path /home/bar. The service is accessed via the service name 
77 "foo":
78
79         [foo]
80                 path = /home/bar
81                 writable = true
82
83 The following sample section defines a printable service. The service is 
84 readonly, but printable. That is, the only write access permitted is via 
85 calls to open, write to and close a spool file. The 'guest ok' parameter 
86 means access will be permitted as the default guest user (specified elsewhere):
87
88         [aprinter]
89                 path = /usr/spool/public
90                 read only = true
91                 printable = true
92                 public = true
93 .SH SPECIAL SECTIONS
94
95 .SS The [global] section
96 .RS 3
97 Parameters in this section apply to the server as a whole, or are defaults
98 for services which do not specifically define certain items. See the notes
99 under 'Parameters' for more information.
100 .RE
101
102 .SS The [homes] section
103 .RS 3
104 If a section called 'homes' is included in the configuration file, services
105 connecting clients to their home directories can be created on the fly by the
106 server.
107
108 When the connection request is made, the existing services are scanned. If a
109 match is found, it is used. If no match is found, the requested service name is
110 treated as a user name and looked up in the local passwords file. If the
111 name exists and the correct password has been given, a service is created
112 by cloning the [homes] section.
113
114 Some modifications are then made to the newly created section:
115
116 .RS 3
117 The service name is changed from 'homes' to the located username
118
119 If no path was given, the path is set to the user's home directory.
120 .RE
121
122 If you decide to use a path= line in your [homes] section then you may
123 find it useful to use the %S macro. For example path=/data/pchome/%S
124 would be useful if you have different home directories for your PCs
125 than for UNIX access.
126
127 This is a fast and simple way to give a large number of clients access to
128 their home directories with a minimum of fuss.
129
130 A similar process occurs if the requested service name is "homes", except that
131 the service name is not changed to that of the requesting user. This method
132 of using the [homes] section works well if different users share a client PC.
133
134 The [homes] section can specify all the parameters a normal service section
135 can specify, though some make more sense than others. The following is a 
136 typical and suitable [homes] section:
137
138         [homes]
139                 writable = yes
140
141 An important point:
142
143 .RS 3
144 If guest access is specified in the [homes] section, all home directories will
145 be accessible to all clients
146 .B without a password.
147 In the very unlikely event
148 that this is actually desirable, it would be wise to also specify read only
149 access.
150 .RE
151 .RE
152
153 Note that the browseable flag for auto home directories will be
154 inherited from the global browseable flag, not the [homes] browseable
155 flag. This is useful as it means setting browseable=no in the [homes]
156 section will hide the [homes] service but make any auto home
157 directories visible.
158
159 .SS The [printers] section
160 .RS 3
161 This section works like [homes], but for printers.
162
163 If a [printers] section occurs in the configuration file, users are able 
164 to connect to any printer specified in the local host's printcap file.
165
166 When a connection request is made, the existing services are scanned. If a
167 match is found, it is used. If no match is found, but a [homes] section
168 exists, it is used as described above. Otherwise, the requested service name is
169 treated as a printer name and the appropriate printcap file is scanned to
170 see if the requested service name is a valid printer name. If a match is
171 found, a new service is created by cloning the [printers] section.
172
173 A few modifications are then made to the newly created section:
174
175 .RS 3
176 The service name is set to the located printer name
177
178 If no printer name was given, the printer name is set to the located printer
179 name
180
181 If the service does not permit guest access and no username was given, the 
182 username is set to the located printer name.
183 .RE
184
185 Note that the [printers] service MUST be printable - if you specify otherwise,
186 the server will refuse to load the configuration file.
187
188 Typically the path specified would be that of a world-writable spool directory
189 with the sticky bit set on it. A typical [printers] entry would look like this:
190
191         [printers]
192                 path = /usr/spool/public
193                 writable = no
194                 public = yes
195                 printable = yes 
196
197 All aliases given for a printer in the printcap file are legitimate printer
198 names as far as the server is concerned. If your printing subsystem doesn't
199 work like that, you will have to set up a pseudo-printcap. This is a file
200 consisting of one or more lines like this:
201
202         alias|alias|alias|alias...
203
204 Each alias should be an acceptable printer name for your printing 
205 subsystem. In the [global] section, specify the new file as your printcap.
206 The server will then only recognise names found in your pseudo-printcap,
207 which of course can contain whatever aliases you like. The same technique
208 could be used simply to limit access to a subset of your local printers.
209
210 An alias, by the way, is defined as any component of the first entry of a 
211 printcap record. Records are separated by newlines, components (if there are 
212 more than one) are separated by vertical bar symbols ("|").
213 .RE
214 .SH PARAMETERS
215 Parameters define the specific attributes of services.
216
217 Some parameters are specific to the [global] section (eg., security).
218 Some parameters are usable in all sections (eg., create mode). All others are
219 permissible only in normal sections. For the purposes of the following
220 descriptions the [homes] and [printers] sections will be considered normal.
221 The letter 'G' in parentheses indicates that a parameter is specific to the
222 [global] section. The letter 'S' indicates that a parameter can be
223 specified in a service specific section. Note that all S parameters
224 can also be specified in the [global] section - in which case they
225 will define the default behaviour for all services.
226
227 Parameters are arranged here in alphabetical order - this may not create
228 best bedfellows, but at least you can find them! Where there are synonyms,
229 the preferred synonym is described, others refer to the preferred synonym.
230
231 .SS VARIABLE SUBSTITUTIONS
232
233 Many of the strings that are settable in the config file can take
234 substitutions. For example the option "path = /tmp/%u" would be
235 interpreted as "path = /tmp/john" if the user connected with the
236 username john.
237
238 These substitutions are mostly noted in the descriptions below, but
239 there are some general substitutions which apply whenever they might be
240 relevant. These are:
241
242 %S = the name of the current service, if any
243
244 %P = the root directory of the current service, if any
245
246 %u = user name of the current service, if any
247
248 %g = primary group name of %u
249
250 %U = session user name (the user name that the client wanted, not
251 necessarily the same as the one they got)
252
253 %G = primary group name of %U
254
255 %H = the home directory of the user given by %u
256
257 %v = the Samba version
258
259 %h = the hostname that Samba is running on
260
261 %m = the netbios name of the client machine (very useful)
262
263 %L = the netbios name of the server. This allows you to change your
264 config based on what the client calls you. Your server can have a "dual
265 personality".
266
267 %M = the internet name of the client machine
268
269 %d = The process id of the current server process
270
271 %a = the architecture of the remote machine. Only some are recognised,
272 and those may not be 100% reliable. It currently recognises Samba,
273 WfWg, WinNT and Win95. Anything else will be known as "UNKNOWN". If it
274 gets it wrong then sending me a level 3 log should allow me to fix it.
275
276 %I = The IP address of the client machine
277
278 %T = the current date and time
279
280 There are some quite creative things that can be done with these
281 substitutions and other smb.conf options.
282
283 .SS NAME MANGLING
284
285 Samba supports "name mangling" so that DOS and Windows clients can use
286 files that don't conform to the 8.3 format. It can also be set to adjust
287 the case of 8.3 format filenames.
288
289 There are several options that control the way mangling is performed,
290 and they are grouped here rather than listed separately. For the
291 defaults look at the output of the testparm program.
292
293 All of these options can be set separately for each service (or
294 globally, of course).
295
296 The options are:
297
298 "mangle case = yes/no" controls if names that have characters that
299 aren't of the "default" case are mangled. For example, if this is yes
300 then a name like "Mail" would be mangled. Default no.
301
302 "case sensitive = yes/no" controls whether filenames are case
303 sensitive. If they aren't then Samba must do a filename search and
304 match on passed names. Default no.
305
306 "default case = upper/lower" controls what the default case is for new
307 filenames. Default lower.
308
309 "preserve case = yes/no" controls if new files are created with the
310 case that the client passes, or if they are forced to be the "default"
311 case. Default no.
312
313 "short preserve case = yes/no" controls if new files which conform to 8.3
314 syntax, that is all in upper case and of suitable length, are created
315 upper case, or if they are forced to be the "default" case. This option can
316 be use with "preserve case = yes" to permit long filenames to retain their
317 case, while short names are lowered. Default no.
318
319 .SS COMPLETE LIST OF GLOBAL PARAMETERS
320
321 Here is a list of all global parameters. See the section of each
322 parameter for details.  Note that some are synonyms.
323
324 auto services
325
326 config file
327
328 deadtime
329
330 debuglevel
331
332 default
333
334 default service
335
336 dfree command
337
338 domain master
339
340 encrypt passwords
341
342 getwd cache
343
344 hosts equiv
345
346 include
347
348 keepalive
349
350 lock dir
351
352 load printers
353
354 lock directory
355
356 log file
357
358 log level
359
360 lpq cache time
361
362 mangled stack
363
364 max log size
365
366 max packet
367
368 max xmit
369
370 message command
371
372 null passwords
373
374 os level
375
376 packet size
377
378 passwd chat
379
380 passwd program
381
382 password level
383
384 password server
385
386 preferred master
387
388 preload
389
390 printing
391
392 printcap name
393
394 protocol
395
396 read bmpx
397
398 read prediction
399
400 read raw
401
402 read size
403
404 remote announce
405
406 root
407
408 root dir
409
410 root directory
411
412 security
413
414 server string
415
416 smbrun
417
418 socket address
419
420 socket options
421
422 status
423
424 strip dot
425
426 time offset
427
428 username map
429
430 use rhosts
431
432 valid chars
433
434 workgroup
435
436 write raw
437
438 .SS COMPLETE LIST OF SERVICE PARAMETERS
439
440 Here is a list of all service parameters. See the section of each
441 parameter for details. Note that some are synonyms.
442
443 admin users
444
445 allow hosts
446
447 alternate permissions
448
449 available
450
451 browseable
452
453 case sensitive
454
455 case sig names
456
457 copy
458
459 create mask
460
461 create mode
462
463 comment
464
465 default case
466
467 delete readonly
468
469 deny hosts
470
471 directory
472
473 dont descend
474
475 exec
476
477 fake oplocks
478
479 force group
480
481 force user
482
483 guest account
484
485 guest ok
486
487 guest only
488
489 hide dot files
490
491 hosts allow
492
493 hosts deny
494
495 invalid users
496
497 locking
498
499 lppause command
500
501 lpq command
502
503 lpresume command
504
505 lprm command
506
507 magic output
508
509 magic script
510
511 mangle case
512
513 mangled names
514
515 mangling char
516
517 map archive
518
519 map hidden
520
521 map system
522
523 max connections
524
525 min print space
526
527 only guest
528
529 only user
530
531 path
532
533 postexec
534
535 postscript
536
537 preserve case
538
539 print command
540
541 printer driver
542
543 print ok
544
545 printable
546
547 printer
548
549 printer name
550
551 public
552
553 read only
554
555 read list
556
557 revalidate
558
559 root postexec
560
561 root preexec
562
563 set directory
564
565 share modes
566
567 short preserve case
568
569 strict locking
570
571 sync always
572
573 user
574
575 username
576
577 users
578
579 valid users
580
581 volume
582
583 wide links
584
585 writable
586
587 write ok
588
589 writeable
590
591 write list
592
593 .SS EXPLANATION OF EACH PARAMETER
594 .RS 3
595
596 .SS admin users (G)
597
598 This is a list of users who will be granted administrative privileges
599 on the share. This means that they will do all file operations as the
600 super-user (root).
601
602 You should use this option very carefully, as any user in this list
603 will be able to do anything they like on the share, irrespective of
604 file permissions.
605
606 .B Default:
607         no admin users
608
609 .B Example:
610         admin users = jason
611
612 .SS auto services (G)
613 This is a list of services that you want to be automatically added to
614 the browse lists. This is most useful for homes and printers services
615 that would otherwise not be visible.
616
617 Note that if you just want all printers in your printcap file loaded
618 then the "load printers" option is easier.
619
620 .B Default:
621         no auto services
622
623 .B Example:
624         auto services = fred lp colorlp
625
626 .SS allow hosts (S)
627 A synonym for this parameter is 'hosts allow'.
628
629 This parameter is a comma delimited set of hosts which are permitted to access
630 a services. If specified in the [global] section, matching hosts will be
631 allowed access to any service that does not specifically exclude them from
632 access. Specific services my have their own list, which override those
633 specified in the [global] section.
634
635 You can specify the hosts by name or IP number. For example, you could
636 restrict access to only the hosts on a Class C subnet with something like
637 "allow hosts = 150.203.5.". The full syntax of the list is described in
638 the man page
639 .BR hosts_access (5).
640
641 You can also specify hosts by network/netmask pairs and by netgroup
642 names if your system supports netgroups. The EXCEPT keyword can also
643 be used to limit a wildcard list. The following examples may provide
644 some help:
645
646 Example 1: allow all IPs in 150.203.*.* except one
647
648         hosts allow = 150.203. EXCEPT 150.203.6.66
649
650 Example 2: allow hosts that match the given network/netmask
651
652         hosts allow = 150.203.15.0/255.255.255.0
653
654 Example 3: allow a couple of hosts
655
656         hosts allow = lapland, arvidsjaur
657
658 Example 4: allow only hosts in netgroup "foonet" or localhost, but 
659 deny access from one particular host
660
661         hosts allow = @foonet, localhost
662         hosts deny = pirate
663
664 Note that access still requires suitable user-level passwords.
665
666 See
667 .BR testparm (1)
668 for a way of testing your host access to see if it
669 does what you expect.
670
671 .B Default:
672         none (i.e., all hosts permitted access)
673
674 .B Example:
675         allow hosts = 150.203.5. myhost.mynet.edu.au
676
677 .SS alternate permissions (S)
678
679 This option affects the way the "read only" DOS attribute is produced
680 for UNIX files. If this is false then the read only bit is set for
681 files on writeable shares which the user cannot write to.
682
683 If this is true then it is set for files whos user write bit is not set.
684
685 The latter behaviour is useful for when users copy files from each
686 others directories, and use a file manager that preserves
687 permissions. Without this option they may get annoyed as all copied
688 files will have the "read only" bit set.
689
690 .B Default:
691         alternate permissions = no
692
693 .B Example:
694         alternate permissions = yes
695
696 .SS available (S)
697 This parameter lets you 'turn off' a service. If 'available = no', then
698 ALL attempts to connect to the service will fail. Such failures are logged.
699
700 .B Default:
701         available = yes
702
703 .B Example:
704         available = no
705 .SS browseable (S)
706 This controls whether this share is seen in the list of available
707 shares in a net view and in the browse list.
708
709 .B Default:
710         browseable = Yes
711
712 .B Example: 
713         browseable = No
714
715 .SS case sig names (G)
716 See "case sensitive"
717
718 .SS comment (S)
719 This is a text field that is seen when a client does a net view to
720 list what shares are available. It will also be used when browsing is
721 fully supported.
722
723 .B Default:
724         No comment string
725
726 .B Example:
727         comment = Fred's Files
728
729 .SS config file (G)
730
731 This allows you to override the config file to use, instead of the
732 default (usually smb.conf). There is a chicken and egg problem here as
733 this option is set in the config file! 
734
735 For this reason, if the name of the config file has changed when the
736 parameters are loaded then it will reload them from the new config
737 file.
738
739 This option takes the usual substitutions, which can be very useful.
740
741 If the config file doesn't exist then it won't be loaded (allowing
742 you to special case the config files of just a few clients).
743
744 .B Example:
745         config file = /usr/local/samba/lib/smb.conf.%m
746
747 .SS copy (S)
748 This parameter allows you to 'clone' service entries. The specified
749 service is simply duplicated under the current service's name. Any 
750 parameters specified in the current section will override those in the
751 section being copied.
752
753 This feature lets you set up a 'template' service and create similar 
754 services easily. Note that the service being copied must occur earlier 
755 in the configuration file than the service doing the copying.
756
757 .B Default:
758         none
759
760 .B Example:
761         copy = otherservice
762 .SS create mask (S)
763 A synonym for this parameter is 'create mode'.
764
765 This parameter is the octal modes which are used when converting DOS modes 
766 to UNIX modes.
767
768 Note that Samba will or this value with 0700 as you must have at least
769 user read, write and execute for Samba to work properly.
770
771 .B Default:
772         create mask = 0755
773
774 .B Example:
775         create mask = 0775
776 .SS create mode (S)
777 See
778 .B create mask.
779 .SS dead time (G)
780 The value of the parameter (a decimal integer) represents the number of
781 minutes of inactivity before a connection is considered dead, and it
782 is disconnected. The deadtime only takes effect if the number of open files
783 is zero.
784
785 This is useful to stop a server's resources being exhausted by a large
786 number of inactive connections.
787
788 Most clients have an auto-reconnect feature when a connection is broken so
789 in most cases this parameter should be transparent to users.
790
791 Using this parameter with a timeout of a few minutes is recommended
792 for most systems.
793
794 A deadtime of zero indicates that no auto-disconnection should be performed.
795
796 .B Default:
797         dead time = 0
798
799 .B Example:
800         dead time = 15
801 .SS debug level (G)
802 The value of the parameter (an integer) allows the debug level
803 (logging level) to be specified in the
804 .B smb.conf
805 file. This is to give
806 greater flexibility in the configuration of the system.
807
808 The default will be the debug level specified on the command line.
809
810 .B Example:
811         debug level = 3
812 .SS default (G)
813 See
814 .B default service.
815 .SS default case (S)
816
817 See the section on "NAME MANGLING" Also note the addition of "short
818 preserve case"
819
820 .SS default service (G)
821 A synonym for this parameter is 'default'.
822
823 This parameter specifies the name of a service which will be connected to
824 if the service actually requested cannot be found. Note that the square
825 brackets are NOT given in the parameter value (see example below).
826
827 There is no default value for this parameter. If this parameter is not given,
828 attempting to connect to a nonexistent service results in an error.
829
830 Typically the default service would be a public, read-only service.
831
832 Also note that as of 1.9.14 the apparent service name will be changed to
833 equal that of the requested service, this is very useful as it allows
834 you to use macros like %S to make a wildcard service.
835
836 Note also that any _ characters in the name of the service used in the
837 default service will get mapped to a /. This allows for interesting
838 things.
839
840
841 .B Example:
842         default service = pub
843         
844         [pub]
845              path = /%S
846           
847
848 .SS delete readonly (S)
849 This parameter allows readonly files to be deleted.  This is not normal DOS
850 semantics, but is allowed by UNIX.
851
852 This option may be useful for running applications such as rcs, where UNIX
853 file ownership prevents changing file permissions, and DOS semantics prevent
854 deletion of a read only file.
855
856 .B Default:
857         delete readonly = No
858
859 .B Example:
860         delete readonly = Yes
861 .SS deny hosts (S)
862 A synonym for this parameter is 'hosts deny'.
863
864 The opposite of 'allow hosts' - hosts listed here are NOT permitted
865 access to services unless the specific services have their own lists to
866 override this one. Where the lists conflict, the 'allow' list takes precedence.
867
868 .B Default:
869         none (i.e., no hosts specifically excluded)
870
871 .B Example:
872         deny hosts = 150.203.4. badhost.mynet.edu.au
873 .SS dfree command (G)
874 The dfree command setting should only be used on systems where a
875 problem occurs with the internal disk space calculations. This has
876 been known to happen with Ultrix, but may occur with other operating
877 systems. The symptom that was seen was an error of "Abort Retry
878 Ignore" at the end of each directory listing.
879
880 This setting allows the replacement of the internal routines to
881 calculate the total disk space and amount available with an external
882 routine. The example below gives a possible script that might fulfill
883 this function. 
884
885 The external program will be passed a single parameter indicating a
886 directory in the filesystem being queried. This will typically consist
887 of the string "./". The script should return two integers in ascii. The
888 first should be the total disk space in blocks, and the second should
889 be the number of available blocks. An optional third return value
890 can give the block size in bytes. The default blocksize is 1024 bytes.
891
892 Note: Your script should NOT be setuid or setgid and should be owned by
893 (and writable only by) root!
894
895 .B Default:
896         By default internal routines for determining the disk capacity
897 and remaining space will be used.
898
899 .B Example:
900         dfree command = /usr/local/samba/bin/dfree
901
902         Where the script dfree (which must be made executable) could be
903
904 .nf
905         #!/bin/sh
906         df $1 | tail -1 | awk '{print $2" "$4}'
907 .fi
908
909         or perhaps (on Sys V)
910
911 .nf
912         #!/bin/sh
913         /usr/bin/df -k $1 | tail -1 | awk '{print $3" "$5}'
914 .fi
915
916         Note that you may have to replace the command names with full
917 path names on some systems.
918 .SS directory (S)
919 See
920 .B path.
921
922 .SS domain master (G)
923
924 Enable WAN-wide browse list collation.  Local master browsers on 
925 broadcast-isolated subnets will give samba their local browse lists, and 
926 ask for a complete copy of the browse list for the whole wide area network.
927 Browser clients will then contact their local master browser, and will
928 receive the domain-wide browse list, instead of just the list for their
929 broadcast-isolated subnet.
930
931 .B Default:
932         domain master = no
933
934 .SS dont descend (S)
935 There are certain directories on some systems (eg., the /proc tree under
936 Linux) that are either not of interest to clients or are infinitely deep
937 (recursive). This parameter allows you to specify a comma-delimited list
938 of directories that the server should always show as empty.
939
940 Note that Samba can be very fussy about the exact format of the "dont
941 descend" entries. For example you may need "./proc" instead of just
942 "/proc". Experimentation is the best policy :-)
943
944 .B Default:
945         none (i.e., all directories are OK to descend)
946
947 .B Example:
948         dont descend = /proc,/dev
949
950 .SS encrypt passwords (G)
951
952 This boolean controls whether encrypted passwords will be negotiated
953 with the client. Note that this option has no effect if you haven't
954 compiled in the necessary des libraries and encryption code. It
955 defaults to no.
956
957 .SS exec (S)
958
959 This is an alias for preexec
960
961
962 .SS force group (S)
963 This specifies a group name that all connections to this service
964 should be made as. This may be useful for sharing files.
965
966 .B Default:
967        no forced group
968
969 .B Example:
970        force group = agroup
971
972 .SS force user (S)
973 This specifies a user name that all connections to this service
974 should be made as. This may be useful for sharing files. You should
975 also use it carefully as using it incorrectly can cause security
976 problems.
977
978 This user name only gets used once a connection is established. Thus
979 clients still need to connect as a valid user and supply a valid
980 password. Once connected, all file operations will be performed as the
981 "forced user", not matter what username the client connected as.
982
983 .B Default:
984        no forced user
985
986 .B Example:
987        force user = auser
988
989 .SS guest account (S)
990 This is a username which will be used for access to services which are
991 specified as 'guest ok' (see below). Whatever privileges this user has
992 will be available to any client connecting to the guest
993 service. Typically this user will exist in the password file, but will
994 not have a valid login. If a username is specified in a given service,
995 the specified username overrides this one.
996
997 One some systems the account "nobody" may not be able to print. Use
998 another account in this case. You should test this by trying to log in
999 as your guest user (perhaps by using the "su \-" command) and trying to
1000 print using
1001 .BR lpr .
1002
1003 Note that as of version 1.9 of Samba this option may be set
1004 differently for each service.
1005
1006 .B Default:
1007         specified at compile time
1008
1009 .B Example:
1010         guest account = nobody
1011 .SS getwd cache (G)
1012 This is a tuning option. When this is enabled a cacheing algorithm will
1013 be used to reduce the time taken for getwd() calls. This can have a
1014 significant impact on performance, especially when widelinks is False.
1015
1016 .B Default:
1017         getwd cache = No
1018
1019 .B Example:
1020         getwd cache = Yes
1021 .SS guest ok (S)
1022 See
1023 .B public.
1024 .SS guest only (S)
1025 If this parameter is 'yes' for a service, then only guest connections to the
1026 service are permitted. This parameter will have no affect if "guest ok" or
1027 "public" is not set for the service.
1028
1029 See the section below on user/password validation for more information about
1030 this option.
1031
1032 .B Default:
1033         guest only = no
1034
1035 .B Example:
1036         guest only = yes
1037 .SS hide dot files (S)
1038 This is a boolean parameter that controls whether files starting with
1039 a dot appear as hidden files.
1040
1041 .B Default:
1042         hide dot files = yes
1043
1044 .B Example:
1045         hide dot files = no
1046 .SS hosts allow (S)
1047 See
1048 .B allow hosts.
1049 .SS hosts deny (S)
1050 See
1051 .B deny hosts.
1052
1053 .SS group (S)
1054 This is an alias for "force group" and is only kept for compatibility
1055 with old versions of Samba. It may be removed in future versions.
1056
1057 .SS hosts equiv (G)
1058 If this global parameter is a non-null string, it specifies the name of
1059 a file to read for the names of hosts and users who will be allowed access
1060 without specifying a password.
1061
1062 This is not be confused with 
1063 .B allow hosts
1064 which is about hosts access to services and is more useful for guest services.
1065 .B hosts equiv
1066 may be useful for NT clients which will not supply passwords to samba.
1067
1068 NOTE: The use of hosts.equiv can be a major security hole. This is
1069 because you are trusting the PC to supply the correct username. It is
1070 very easy to get a PC to supply a false username. I recommend that the
1071 hosts.equiv option be only used if you really know what you are doing,
1072 or perhaps on a home network where you trust your wife and kids :-)
1073
1074 .B Default
1075         No host equivalences
1076
1077 .B Example
1078         hosts equiv = /etc/hosts.equiv
1079
1080 .SS interfaces (G)
1081
1082 This option allows you to setup multiple network interfaces, so that
1083 Samba can properly handle browsing on all interfaces.
1084
1085 The option takes a list of ip/netmask pairs. The netmask may either be
1086 a bitmask, or a bitlength. 
1087
1088 For example, the following line:
1089
1090 interfaces = 192.168.2.10/24 192.168.3.10/24
1091
1092 would configure two network interfaces with IP addresses 192.168.2.10
1093 and 192.168.3.10. The netmasks of both interfaces would be set to
1094 255.255.255.0. 
1095
1096 You could produce an equivalent result by using:
1097
1098 interfaces = 192.168.2.10/255.255.255.0 192.168.3.10/255.255.255.0
1099
1100 if you prefer that format.
1101
1102 If this option is not set then Samba will attempt to find a primary
1103 interface, but won't attempt to configure more than one interface.
1104
1105 .SS invalid users (S)
1106 This is a list of users that should not be allowed to login to this
1107 service. This is really a "paranoid" check to absolutely ensure an
1108 improper setting does not breach your security.
1109
1110 A name starting with @ is interpreted as a UNIX group.
1111
1112 The current servicename is substituted for %S. This is useful in the
1113 [homes] section.
1114
1115 See also "valid users"
1116
1117 .B Default
1118         No invalid users
1119
1120 .B Example
1121         invalid users = root fred admin @wheel
1122
1123 .SS include (G)
1124
1125 This allows you to include one config file inside another.  The file is
1126 included literally, as though typed in place.
1127
1128 It takes the standard substitutions, except %u, %P and %S
1129
1130 .SS keep alive (G)
1131 The value of the parameter (an integer) represents the number of seconds 
1132 between 'keepalive' packets. If this parameter is zero, no keepalive packets
1133 will be sent. Keepalive packets, if sent, allow the server to tell whether a
1134 client is still present and responding.
1135
1136 Keepalives should, in general, not be needed if the socket being used
1137 has the SO_KEEPALIVE attribute set on it (see "socket
1138 options"). Basically you should only use this option if you strike
1139 difficulties.
1140
1141 .B Default:
1142         keep alive = 0
1143
1144 .B Example:
1145         keep alive = 60
1146 .SS load printers (G)
1147 A boolean variable that controls whether all printers in the printcap
1148 will be loaded for browsing by default. 
1149
1150 .B Default:
1151         load printers = no
1152
1153 .B Example:
1154         load printers = yes
1155
1156 .SS lock directory (G)
1157 This options specifies the directory where lock files will be placed.
1158 The lock files are used to implement the "max connections" option.
1159
1160 .B Default:
1161         lock directory = /tmp/samba
1162
1163 .B Example: 
1164         lock directory = /usr/local/samba/var/locks
1165 .SS locking (S)
1166 This controls whether or not locking will be performed by the server in 
1167 response to lock requests from the client.
1168
1169 If "locking = no", all lock and unlock requests will appear to succeed and 
1170 all lock queries will indicate that the queried lock is clear.
1171
1172 If "locking = yes", real locking will be performed by the server.
1173
1174 This option may be particularly useful for read-only filesystems which
1175 do not need locking (such as cdrom drives).
1176
1177 Be careful about disabling locking either globally or in a specific
1178 service, as lack of locking may result in data corruption.
1179
1180 .B Default:
1181         locking = yes
1182
1183 .B Example:
1184         locking = no
1185
1186 .SS log file (G)
1187
1188 This options allows you to override the name of the Samba log file
1189 (also known as the debug file).
1190
1191 This option takes the standard substitutions, allowing you to have
1192 separate log files for each user or machine.
1193
1194 .B Example:
1195         log file = /usr/local/samba/var/log.%m
1196
1197 .SS log level (G)
1198 see "debug level"
1199
1200 .SS lppause command (S)
1201 This parameter specifies the command to be executed on the server host in
1202 order to stop printing or spooling a specific print job.
1203
1204 This command should be a program or script which takes a printer name and
1205 job number to pause the print job. Currently I don't know of any print
1206 spooler system that can do this with a simple option, except for the PPR
1207 system from Trinity College (ppr\-dist.trincoll.edu/pub/ppr). One way
1208 of implementing this is by using job priorities, where jobs having a too
1209 low priority won't be sent to the printer. See also the
1210 .B lppause
1211 command.
1212
1213 If a %p is given then the printername is put in its place. A %j is
1214 replaced with the job number (an integer).
1215 On HPUX (see printing=hpux), if the -p%p option is added to the lpq
1216 command, the job will show up with the correct status, i.e. if the job
1217 priority is lower than the set fence priority it will have the PAUSED
1218 status, whereas if the priority is equal or higher it will have the
1219 SPOOLED or PRINTING status.
1220
1221 Note that it is good practice to include the absolute path in the lppause
1222 command as the PATH may not be available to the server.
1223
1224 .B Default:
1225         Currently no default value is given to this string
1226
1227 .B Example for HPUX:
1228         lppause command = /usr/bin/lpalt %p-%j -p0
1229
1230 .SS lpq cache time (G)
1231
1232 This controls how long lpq info will be cached for to prevent the lpq
1233 command being called too often. A separate cache is kept for each
1234 variation of the lpq command used by the system, so if you use
1235 different lpq commands for different users then they won't share cache
1236 information.
1237
1238 The cache files are stored in /tmp/lpq.xxxx where xxxx is a hash
1239 of the lpq command in use.
1240
1241 The default is 10 seconds, meaning that the cached results of a
1242 previous identical lpq command will be used if the cached data is less
1243 than 10 seconds old. A large value may be advisable if your lpq
1244 command is very slow.
1245
1246 A value of 0 will disable cacheing completely.
1247
1248 .B Default:
1249         lpq cache time = 10
1250
1251 .B Example:
1252         lpq cache time = 30
1253
1254 .SS lpq command (S)
1255 This parameter specifies the command to be executed on the server host in
1256 order to obtain "lpq"-style printer status information. 
1257
1258 This command should be a program or script which takes a printer name
1259 as its only parameter and outputs printer status information. 
1260
1261 Currently six styles of printer status information are supported; BSD,
1262 SYSV, AIX, HPUX, QNX, LPRNG and PLP. This covers most UNIX systems. You
1263 control which type is expected using the "printing =" option.
1264
1265 Some clients (notably Windows for Workgroups) may not correctly send the
1266 connection number for the printer they are requesting status information
1267 about. To get around this, the server reports on the first printer service
1268 connected to by the client. This only happens if the connection number sent
1269 is invalid.
1270
1271 If a %p is given then the printername is put in its place. Otherwise
1272 it is placed at the end of the command.
1273
1274 Note that it is good practice to include the absolute path in the lpq
1275 command as the PATH may not be available to the server.
1276
1277 .B Default:
1278         depends on the setting of "printing ="
1279
1280 .B Example:
1281         lpq command = /usr/bin/lpq %p
1282
1283 .SS lpresume command (S)
1284 This parameter specifies the command to be executed on the server host in
1285 order to restart or continue printing or spooling a specific print job.
1286
1287 This command should be a program or script which takes a printer name and
1288 job number to resume the print job. See also the lppause command.
1289
1290 If a %p is given then the printername is put in its place. A %j is
1291 replaced with the job number (an integer).
1292
1293 Note that it is good practice to include the absolute path in the lpresume
1294 command as the PATH may not be available to the server.
1295
1296 .B Default:
1297         Currently no default value is given to this string
1298
1299 .B Example for HPUX:
1300         lpresume command = /usr/bin/lpalt %p-%j -p2
1301
1302 .SS lprm command (S)
1303 This parameter specifies the command to be executed on the server host in
1304 order to delete a print job.
1305
1306 This command should be a program or script which takes a printer name
1307 and job number, and deletes the print job.
1308
1309 Currently seven styles of printer control are supported; BSD, SYSV, AIX
1310 HPUX, QNX, LPRNG and PLP. This covers most UNIX systems. You control
1311 which type is expected using the "printing =" option.
1312
1313 If a %p is given then the printername is put in its place. A %j is
1314 replaced with the job number (an integer).
1315
1316 Note that it is good practice to include the absolute path in the lprm
1317 command as the PATH may not be available to the server.
1318
1319 .B Default:
1320         depends on the setting of "printing ="
1321
1322 .B Example 1:
1323         lprm command = /usr/bin/lprm -P%p %j
1324
1325 .B Example 2:
1326         lprm command = /usr/bin/cancel %p-%j
1327
1328 .SS magic output (S)
1329 This parameter specifies the name of a file which will contain output
1330 created by a magic script (see
1331 .I magic script
1332 below).
1333
1334 Warning: If two clients use the same magic script in the same directory the
1335 output file content is undefined.
1336 .B Default:
1337         magic output = <magic script name>.out
1338
1339 .B Example:
1340         magic output = myfile.txt
1341 .SS magic script (S)
1342 This parameter specifies the name of a file which, if opened, will be
1343 executed by the server when the file is closed. This allows a UNIX script
1344 to be sent to the Samba host and executed on behalf of the connected user.
1345
1346 Scripts executed in this way will be deleted upon completion, permissions
1347 permitting.
1348
1349 If the script generates output, output will be sent to the file specified by
1350 the
1351 .I magic output
1352 parameter (see above).
1353
1354 Note that some shells are unable to interpret scripts containing
1355 carriage-return-linefeed instead of linefeed as the end-of-line
1356 marker. Magic scripts must be executable "as is" on the host, which
1357 for some hosts and some shells will require filtering at the DOS end.
1358
1359 Magic scripts are EXPERIMENTAL and should NOT be relied upon.
1360
1361 .B Default:
1362         None. Magic scripts disabled.
1363
1364 .B Example:
1365         magic script = user.csh
1366 .SS mangled map (S)
1367 This is for those who want to directly map UNIX file names which are
1368 not representable on DOS.  The mangling of names is not always what is
1369 needed.  In particular you may have documents with file extensions
1370 that differ between DOS and UNIX. For example, under UNIX it is common
1371 to use .html for HTML files, whereas under DOS .htm is more commonly
1372 used.
1373
1374 So to map 'html' to 'htm' you put:
1375
1376   mangled map = (*.html *.htm)
1377
1378 One very useful case is to remove the annoying ;1 off the ends of
1379 filenames on some CDROMS (only visible under some UNIXes). To do this
1380 use a map of (*;1 *)
1381
1382 .B default:
1383         no mangled map
1384
1385 .B Example:
1386         mangled map = (*;1 *)
1387
1388 .SS mangle case (S)
1389
1390 See the section on "NAME MANGLING"
1391
1392 .SS mangled names (S)
1393 This controls whether non-DOS names under UNIX should be mapped to
1394 DOS-compatible names ("mangled") and made visible, or whether non-DOS names
1395 should simply be ignored.
1396
1397 See the section on "NAME MANGLING" for details on how to control the
1398 mangling process.
1399
1400 If mangling is used then the mangling algorithm is as follows:
1401 .RS
1402 - the first (up to) five alphanumeric characters before the rightmost dot of
1403 the filename are preserved, forced to upper case, and appear as the first (up
1404 to) five characters of the mangled name.
1405
1406 - a tilde ("~") is appended to the first part of the mangled name, followed
1407 by a two-character unique sequence, based on the original root name 
1408 (i.e., the original filename minus its final extension). The final
1409 extension is included in the hash calculation only if it contains any upper
1410 case characters or is longer than three characters.
1411
1412 Note that the character to use may be specified using the "mangling
1413 char" option, if you don't like ~.
1414
1415 - the first three alphanumeric characters of the final extension are preserved,
1416 forced to upper case and appear as the extension of the mangled name. The 
1417 final extension is defined as that part of the original filename after the
1418 rightmost dot. If there are no dots in the filename, the mangled name will
1419 have no extension (except in the case of hidden files - see below).
1420
1421 - files whose UNIX name begins with a dot will be presented as DOS hidden
1422 files. The mangled name will be created as for other filenames, but with the
1423 leading dot removed and "___" as its extension regardless of actual original
1424 extension (that's three underscores).
1425 .RE
1426
1427 The two-digit hash value consists of upper case alphanumeric characters.
1428
1429 This algorithm can cause name collisions only if files in a directory share
1430 the same first five alphanumeric characters. The probability of such a clash 
1431 is 1/1300.
1432
1433 The name mangling (if enabled) allows a file to be copied between UNIX
1434 directories from DOS while retaining the long UNIX filename. UNIX files can
1435 be renamed to a new extension from DOS and will retain the same basename. 
1436 Mangled names do not change between sessions.
1437
1438 .B Default:
1439         mangled names = yes
1440
1441 .B Example:
1442         mangled names = no
1443 .SS mangling char (S)
1444 This controls what character is used as the "magic" character in name
1445 mangling. The default is a ~ but this may interfere with some
1446 software. Use this option to set it to whatever you prefer.
1447
1448 .B Default:
1449         mangling char = ~
1450
1451 .B Example:
1452         mangling char = ^
1453
1454 .SS max disk size (G)
1455 This option allows you to put an upper limit on the apparent size of
1456 disks. If you set this option to 100 then all shares will appear to be
1457 not larger than 100 MB in size.
1458
1459 Note that this option does not limit the amount of data you can put on
1460 the disk. In the above case you could still store much more than 100
1461 MB on the disk, but if a client ever asks for the amount of free disk
1462 space or the total disk size then the result will be bounded by the
1463 amount specified in "max disk size".
1464
1465 This option is primarily useful to work around bugs in some pieces of
1466 software that can't handle very large disks, particularly disks over
1467 1GB in size.
1468
1469 A "max disk size" of 0 means no limit.
1470
1471 .B Default:
1472         max disk size = 0
1473
1474 .B Example:
1475         max disk size = 1000
1476 .SS max log size (G)
1477
1478 This option (an integer in kilobytes) specifies the max size the log
1479 file should grow to. Samba periodically checks the size and if it is
1480 exceeded it will rename the file, adding a .old extension.
1481
1482 A size of 0 means no limit.
1483
1484 .B Default:
1485         max log size = 5000
1486
1487 .B Example:
1488         max log size = 1000
1489
1490 .SS max xmit (G)
1491
1492 This option controls the maximum packet size that will be negotiated
1493 by Samba. The default is 65535, which is the maximum. In some cases
1494 you may find you get better performance with a smaller value. A value
1495 below 2048 is likely to cause problems.
1496
1497 .B Default:
1498         max xmit = 65535
1499
1500 .B Example:
1501         max xmit = 8192
1502
1503 .SS mangled stack (G)
1504 This parameter controls the number of mangled names that should be cached in
1505 the Samba server.
1506
1507 This stack is a list of recently mangled base names (extensions are only
1508 maintained if they are longer than 3 characters or contains upper case
1509 characters).
1510
1511 The larger this value, the more likely it is that mangled names can be
1512 successfully converted to correct long UNIX names. However, large stack
1513 sizes will slow most directory access. Smaller stacks save memory in the
1514 server (each stack element costs 256 bytes).
1515
1516 It is not possible to absolutely guarantee correct long file names, so
1517 be prepared for some surprises!
1518
1519 .B Default:
1520         mangled stack = 50
1521
1522 .B Example:
1523         mangled stack = 100
1524
1525 .SS map archive (S)
1526 This controls whether the DOS archive attribute should be mapped to UNIX
1527 execute bits.  The DOS archive bit is set when a file has been modified
1528 since its last backup.  One motivation for this option it to keep Samba/your
1529 PC from making any file it touches from becoming executable under UNIX.
1530 This can be quite annoying for shared source code, documents,  etc...
1531
1532 .B Default:
1533       map archive = yes
1534
1535 .B Example:
1536       map archive = no
1537
1538 .SS map hidden (S)
1539 This controls whether DOS style hidden files should be mapped to UNIX
1540 execute bits.
1541
1542 .B Default:
1543         map hidden = no
1544
1545 .B Example:
1546         map hidden = yes
1547 .SS map system (S)
1548 This controls whether DOS style system files should be mapped to UNIX
1549 execute bits.
1550
1551 .B Default:
1552         map system = no
1553
1554 .B Example:
1555         map system = yes
1556 .SS max connections (S)
1557 This option allows the number of simultaneous connections to a
1558 service to be limited. If "max connections" is greater than 0 then
1559 connections will be refused if this number of connections to the
1560 service are already open. A value of zero mean an unlimited number of
1561 connections may be made.
1562
1563 Record lock files are used to implement this feature. The lock files
1564 will be stored in the directory specified by the "lock directory" option.
1565
1566 .B Default:
1567         max connections = 0
1568
1569 .B Example:
1570         max connections = 10
1571 .SS only user (S)
1572 This is a boolean option that controls whether connections with
1573 usernames not in the user= list will be allowed. By default this
1574 option is disabled so a client can supply a username to be used by
1575 the server.
1576
1577 Note that this also means Samba won't try to deduce usernames from the
1578 service name. This can be annoying for the [homes] section. To get
1579 around this you could use "user = %S" which means your "user" list
1580 will be just the service name, which for home directories is the name
1581 of the user.
1582
1583 .B Default: 
1584         only user = False
1585
1586 .B Example: 
1587         only user = True
1588
1589 .SS fake oplocks (S)
1590
1591 Oplocks are the way that SMB clients get permission from a server to
1592 locally cache file operations. If a server grants an oplock
1593 (opportunistic lock) then the client is free to assume that it is the
1594 only one accessing the file and it will aggressively cache file
1595 data. With some oplock types the client may even cache file open/close
1596 operations. This can give enormous performance benefits.
1597
1598 Samba does not support opportunistic locks because they are very
1599 difficult to do under Unix. Samba can fake them, however, by granting
1600 a oplock whenever a client asks for one. This is controlled using the
1601 smb.conf option "fake oplocks". If you set "fake oplocks = yes" then
1602 you are telling the client that it may aggressively cache the file
1603 data.
1604
1605 By enabling this option on all read-only shares or shares that you know
1606 will only be accessed from one client at a time you will see a big
1607 performance improvement on many operations. If you enable this option
1608 on shares where multiple clients may be accessing the files read-write
1609 at the same time you can get data corruption. Use this option
1610 carefully! 
1611
1612 This option is disabled by default.
1613
1614 .SS message command (G)
1615
1616 This specifies what command to run when the server receives a WinPopup
1617 style message.
1618
1619 This would normally be a command that would deliver the message
1620 somehow. How this is to be done is up to your imagination.
1621
1622 What I use is:
1623
1624    message command = csh -c 'xedit %s;rm %s' &
1625
1626 This delivers the message using xedit, then removes it
1627 afterwards. NOTE THAT IT IS VERY IMPORTANT THAT THIS COMMAND RETURN
1628 IMMEDIATELY. That's why I have the & on the end. If it doesn't return
1629 immediately then your PCs may freeze when sending messages (they
1630 should recover after 30secs, hopefully).
1631
1632 All messages are delivered as the global guest user. The command takes
1633 the standard substitutions, although %u won't work (%U may be better
1634 in this case).
1635
1636 Apart from the standard substitutions, some additional ones apply. In
1637 particular:
1638
1639 %s = the filename containing the message
1640
1641 %t = the destination that the message was sent to (probably the server
1642 name)
1643
1644 %f = who the message is from
1645
1646 You could make this command send mail, or whatever else takes your
1647 fancy. Please let me know of any really interesting ideas you have.
1648
1649 Here's a way of sending the messages as mail to root:
1650
1651 message command = /bin/mail -s 'message from %f on %m' root < %s; rm %s
1652
1653 If you don't have a message command then the message won't be
1654 delivered and Samba will tell the sender there was an
1655 error. Unfortunately WfWg totally ignores the error code and carries
1656 on regardless, saying that the message was delivered.
1657
1658 If you want to silently delete it then try "message command = rm %s".
1659
1660 For the really adventurous, try something like this:
1661
1662 message command = csh -c 'csh < %s |& /usr/local/samba/bin/smbclient \e
1663                   -M %m; rm %s' &
1664
1665 this would execute the command as a script on the server, then give
1666 them the result in a WinPopup message. Note that this could cause a
1667 loop if you send a message from the server using smbclient! You better
1668 wrap the above in a script that checks for this :-)
1669
1670 .B Default:
1671         no message command
1672
1673 .B Example:
1674         message command = csh -c 'xedit %s;rm %s' &
1675
1676 .SS min print space (S)
1677
1678 This sets the minimum amount of free disk space that must be available
1679 before a user will be able to spool a print job. It is specified in
1680 kilobytes. The default is 0, which means no limit.
1681
1682 .B Default:
1683         min print space = 0
1684
1685 .B Example:
1686         min print space = 2000
1687
1688 .SS null passwords (G)
1689 Allow or disallow access to accounts that have null passwords. 
1690
1691 .B Default:
1692         null passwords = no
1693
1694 .B Example:
1695         null passwords = yes
1696
1697 .SS os level (G)
1698 This integer value controls what level Samba advertises itself as for
1699 browse elections. See BROWSING.txt for details.
1700
1701 .SS packet size (G)
1702 The maximum transmit packet size during a raw read. This option is no
1703 longer implemented as of version 1.7.00, and is kept only so old
1704 configuration files do not become invalid.
1705
1706 .SS passwd chat (G)
1707 This string controls the "chat" conversation that takes places
1708 between smbd and the local password changing program to change the
1709 users password. The string describes a sequence of response-receive
1710 pairs that smbd uses to determine what to send to the passwd program
1711 and what to expect back. If the expected output is not received then
1712 the password is not changed.
1713
1714 This chat sequence is often quite site specific, depending on what
1715 local methods are used for password control (such as NIS+ etc).
1716
1717 The string can contain the macros %o and %n which are substituted for
1718 the old and new passwords respectively. It can also contain the
1719 standard macros \en \er \et and \es to give line-feed, carriage-return,
1720 tab and space.
1721
1722 The string can also contain a * which matches any sequence of
1723 characters.
1724
1725 Double quotes can be used to collect strings with spaces in them into
1726 a single string.
1727
1728 If the send string in any part of the chat sequence is a fullstop "."
1729 then no string is sent. Similarly, is the expect string is a fullstop
1730 then no string is expected.
1731
1732 .B Example:
1733         passwd chat = "*Enter OLD password*" %o\en "*Enter NEW password*" %n\en \e
1734                        "*Reenter NEW password*" %n\en "*Password changed*"
1735
1736
1737 .B Default:
1738        passwd chat = *old*password* %o\en *new*password* %n\en *new*password* %n\en *changed*
1739
1740 .SS passwd program (G)
1741 The name of a program that can be used to set user passwords.
1742
1743 This is only necessary if you have enabled remote password changing at
1744 compile time. Any occurrences of %u will be replaced with the user
1745 name.
1746
1747 Also note that many passwd programs insist in "reasonable" passwords,
1748 such as a minimum length, or the inclusion of mixed case chars and
1749 digits. This can pose a problem as some clients (such as Windows for
1750 Workgroups) uppercase the password before sending it. 
1751
1752 .B Default:
1753         passwd program = /bin/passwd
1754
1755 .B Example:
1756         passwd program = /sbin/passwd %u
1757
1758 .SS password level (G)
1759 Some client/server combinations have difficulty with mixed-case passwords.
1760 One offending client is Windows for Workgroups, which for some reason forces
1761 passwords to upper case when using the LANMAN1 protocol, but leaves them alone
1762 when using COREPLUS!
1763
1764 This parameter defines the maximum number of characters that may be upper case
1765 in passwords.
1766
1767 For example, say the password given was "FRED". If
1768 .B password level
1769 is set to 1 (one), the following combinations would be tried if "FRED" failed:
1770 "Fred", "fred", "fRed", "frEd", "freD". If
1771 .B password level was set to 2 (two), the following combinations would also be
1772 tried: "FRed", "FrEd", "FreD", "fREd", "fReD", "frED". And so on.
1773
1774 The higher value this parameter is set to the more likely it is that a mixed
1775 case password will be matched against a single case password. However, you
1776 should be aware that use of this parameter reduces security and increases the
1777 time taken to process a new connection.
1778
1779 A value of zero will cause only two attempts to be made - the password as is
1780 and the password in all-lower case.
1781
1782 If you find the connections are taking too long with this option then
1783 you probably have a slow crypt() routine. Samba now comes with a fast
1784 "ufc crypt" that you can select in the Makefile. You should also make
1785 sure the PASSWORD_LENGTH option is correct for your system in local.h
1786 and includes.h. On most systems only the first 8 chars of a password
1787 are significant so PASSWORD_LENGTH should be 8, but on some longer
1788 passwords are significant. The includes.h file tries to select the
1789 right length for your system.
1790
1791 .B Default:
1792         password level = 0
1793
1794 .B Example:
1795         password level = 4
1796
1797 .SS password server (G)
1798
1799 By specifying the name of another SMB server (such as a WinNT box)
1800 with this option, and using "security = server" you can get Samba to
1801 do all its username/password validation via a remote server.
1802
1803 This options sets the name of the password server to use. It must be a
1804 netbios name, so if the machine's netbios name is different from its
1805 internet name then you may have to add its netbios name to
1806 /etc/hosts.
1807
1808 The password server much be a machine capable of using the "LM1.2X002"
1809 or the "LM NT 0.12" protocol, and it must be in user level security
1810 mode. 
1811
1812 NOTE: Using a password server means your UNIX box (running Samba) is
1813 only as secure as your password server. DO NOT CHOOSE A PASSWORD
1814 SERVER THAT YOU DON'T COMPLETELY TRUST.
1815
1816 Never point a Samba server at itself for password serving. This will
1817 cause a loop and could lock up your Samba server!
1818
1819 The name of the password server takes the standard substitutions, but
1820 probably the only useful one is %m, which means the Samba server will
1821 use the incoming client as the password server. If you use this then
1822 you better trust your clients, and you better restrict them with hosts
1823 allow!
1824
1825 If you list several hosts in the "password server" option then smbd
1826 will try each in turn till it finds one that responds. This is useful
1827 in case your primary server goes down.
1828
1829 .SS path (S)
1830 A synonym for this parameter is 'directory'.
1831
1832 This parameter specifies a directory to which the user of the service is to
1833 be given access. In the case of printable services, this is where print data 
1834 will spool prior to being submitted to the host for printing.
1835
1836 For a printable service offering guest access, the service should be readonly
1837 and the path should be world-writable and have the sticky bit set. This is not
1838 mandatory of course, but you probably won't get the results you expect if you
1839 do otherwise.
1840
1841 Any occurrences of %u in the path will be replaced with the username
1842 that the client is connecting as. Any occurrences of %m will be
1843 replaced by the name of the machine they are connecting from. These
1844 replacements are very useful for setting up pseudo home directories
1845 for users.
1846
1847 Note that this path will be based on 'root dir' if one was specified.
1848 .B Default:
1849         none
1850
1851 .B Example:
1852         path = /home/fred+ 
1853
1854 .SS postexec (S)
1855
1856 This option specifies a command to be run whenever the service is
1857 disconnected. It takes the usual substitutions. The command may be run
1858 as the root on some systems.
1859
1860 An interesting example may be do unmount server resources:
1861
1862 postexec = /etc/umount /cdrom
1863
1864 See also preexec
1865
1866 .B Default:
1867       none (no command executed)
1868
1869 .B Example:
1870       postexec = echo \e"%u disconnected from %S from %m (%I)\e" >> /tmp/log
1871
1872 .SS postscript (S)
1873 This parameter forces a printer to interpret the print files as
1874 postscript. This is done by adding a %! to the start of print output. 
1875
1876 This is most useful when you have lots of PCs that persist in putting
1877 a control-D at the start of print jobs, which then confuses your
1878 printer.
1879
1880 .B Default: 
1881         postscript = False
1882
1883 .B Example: 
1884         postscript = True
1885
1886 .SS preexec (S)
1887
1888 This option specifies a command to be run whenever the service is
1889 connected to. It takes the usual substitutions.
1890
1891 An interesting example is to send the users a welcome message every
1892 time they log in. Maybe a message of the day? Here is an example:
1893
1894 preexec = csh -c 'echo \e"Welcome to %S!\e" | \e
1895        /usr/local/samba/bin/smbclient -M %m -I %I' &
1896
1897 Of course, this could get annoying after a while :-)
1898
1899 See also postexec
1900
1901 .B Default:
1902         none (no command executed)
1903
1904 .B Example:
1905         preexec = echo \e"%u connected to %S from %m (%I)\e" >> /tmp/log
1906
1907 .SS preferred master (G)
1908 This boolean parameter controls if Samba is a preferred master browser
1909 for its workgroup.
1910 On startup, samba will force an election, and it will have a slight
1911 advantage in winning the election.  It is recommended that this 
1912 parameter is used in conjunction with domain master = yes, so that samba 
1913 can guarantee becoming a domain master.  
1914
1915 See
1916 .B os level = nn
1917
1918 .B Default:
1919         preferred master = yes
1920
1921 .SS preload
1922 This is an alias for "auto services"
1923
1924 .SS preserve case (S)
1925
1926 This controls if new filenames are created with the case that the
1927 client passes, or if they are forced to be the "default" case.
1928
1929 .B Default:
1930        preserve case = no
1931
1932 See the section on "NAME MANGLING" for a fuller discussion.
1933
1934 .SS print command (S)
1935 After a print job has finished spooling to a service, this command will be
1936 used via a system() call to process the spool file. Typically the command 
1937 specified will submit the spool file to the host's printing subsystem, but
1938 there is no requirement that this be the case. The server will not remove the
1939 spool file, so whatever command you specify should remove the spool file when
1940 it has been processed, otherwise you will need to manually remove old spool
1941 files.
1942
1943 The print command is simply a text string. It will be used verbatim,
1944 with two exceptions: All occurrences of "%s" will be replaced by the
1945 appropriate spool file name, and all occurrences of "%p" will be
1946 replaced by the appropriate printer name. The spool file name is
1947 generated automatically by the server, the printer name is discussed
1948 below.
1949
1950 The full path name will be used for the filename if %s is not preceded
1951 by a /. If you don't like this (it can stuff up some lpq output) then
1952 use %f instead. Any occurrences of %f get replaced by the spool
1953 filename without the full path at the front.
1954
1955 The print command MUST contain at least one occurrence of "%s" or %f -
1956 the "%p" is optional. At the time a job is submitted, if no printer
1957 name is supplied the "%p" will be silently removed from the printer
1958 command.
1959
1960 If specified in the [global] section, the print command given will be used
1961 for any printable service that does not have its own print command specified.
1962
1963 If there is neither a specified print command for a printable service nor a 
1964 global print command, spool files will be created but not processed and (most
1965 importantly) not removed.
1966
1967 Note that printing may fail on some UNIXes from the "nobody"
1968 account. If this happens then create an alternative guest account that
1969 can print and set the "guest account" in the [global] section.
1970
1971 You can form quite complex print commands by realising that they are
1972 just passed to a shell. For example the following will log a print
1973 job, print the file, then remove it. Note that ; is the usual
1974 separator for command in shell scripts.
1975
1976 print command = echo Printing %s >> /tmp/print.log; lpr -P %p %s; rm %s
1977
1978 You may have to vary this command considerably depending on how you
1979 normally print files on your system.
1980
1981 .B Default:
1982         print command = lpr -r -P %p %s
1983
1984 .B Example:
1985         print command = /usr/local/samba/bin/myprintscript %p %s
1986 .SS print ok (S)
1987 See
1988 .B printable.
1989 .SS printable (S)
1990 A synonym for this parameter is 'print ok'.
1991
1992 If this parameter is 'yes', then clients may open, write to and submit spool 
1993 files on the directory specified for the service.
1994
1995 Note that a printable service will ALWAYS allow writing to the service path
1996 (user privileges permitting) via the spooling of print data. The 'read only'
1997 parameter controls only non-printing access to the resource.
1998
1999 .B Default:
2000         printable = no
2001
2002 .B Example:
2003         printable = yes
2004
2005 .SS printing (G)
2006 This parameters controls how printer status information is interpreted
2007 on your system, and also affects the default values for the "print
2008 command", "lpq command" and "lprm command".
2009
2010 Currently six printing styles are supported. They are "printing =
2011 bsd", "printing = sysv", "printing = hpux", "printing = aix",
2012 "printing = qnx" and "printing = plp".
2013
2014 To see what the defaults are for the other print commands when using
2015 these three options use the "testparm" program.
2016
2017
2018 .SS printcap name (G)
2019 This parameter may be used to override the compiled-in default printcap
2020 name used by the server (usually /etc/printcap). See the discussion of the
2021 [printers] section above for reasons why you might want to do this.
2022
2023 For those of you without a printcap (say on SysV) you can just create a
2024 minimal file that looks like a printcap and set "printcap name =" in
2025 [global] to point at it.
2026
2027 A minimal printcap file would look something like this:
2028
2029 print1|My Printer 1
2030 .br
2031 print2|My Printer 2
2032 .br
2033 print3|My Printer 3
2034 .br
2035 print4|My Printer 4
2036 .br
2037 print5|My Printer 5
2038
2039 where the | separates aliases of a printer. The fact that the second
2040 alias has a space in it gives a hint to Samba that it's a comment.
2041
2042 NOTE: Under AIX the default printcap name is "/etc/qconfig". Samba
2043 will assume the file is in AIX "qconfig" format if the string
2044 "/qconfig" appears in the printcap filename.
2045
2046 .B Default:
2047         printcap name = /etc/printcap
2048
2049 .B Example:
2050         printcap name = /etc/myprintcap
2051 .SS printer (S)
2052 A synonym for this parameter is 'printer name'.
2053
2054 This parameter specifies the name of the printer to which print jobs spooled
2055 through a printable service will be sent.
2056
2057 If specified in the [global] section, the printer name given will be used
2058 for any printable service that does not have its own printer name specified.
2059
2060 .B Default:
2061         none (but may be 'lp' on many systems)
2062
2063 .B Example:
2064         printer name = laserwriter
2065
2066 .SS printer driver (S)
2067 This option allows you to control the string that clients receive when
2068 they ask the server for the printer driver associated with a
2069 printer. If you are using Windows95 or WindowsNT then you can use this
2070 to automate the setup of printers on your system.
2071
2072 You need to set this parameter to the exact string (case sensitive)
2073 that describes the appropriate printer driver for your system. 
2074 If you don't know the exact string to use then you should first try
2075 with no "printer driver" option set and the client will give you a
2076 list of printer drivers. The appropriate strings are shown in a
2077 scrollbox after you have chosen the printer manufacturer.
2078
2079 .B Example:
2080         printer driver = HP LaserJet 4L
2081
2082 .SS printer name (S)
2083 See
2084 .B printer.
2085
2086 .SS protocol (G)
2087 The value of the parameter (a string) is the highest protocol level that will
2088 be supported by the server. 
2089
2090 Possible values are CORE, COREPLUS, LANMAN1, LANMAN2 and NT1. The relative
2091 merits of each are discussed in the README file.
2092
2093 Normally this option should not be set as the automatic negotiation
2094 phase in the SMB protocol takes care of choosing the appropriate protocol.
2095
2096 .B Default:
2097         protocol = NT1
2098
2099 .B Example:
2100         protocol = LANMAN1
2101 .SS public (S)
2102 A synonym for this parameter is 'guest ok'.
2103
2104 If this parameter is 'yes' for a service, then no password is required
2105 to connect to the service. Privileges will be those of the guest
2106 account.
2107
2108 See the section below on user/password validation for more information about
2109 this option.
2110
2111 .B Default:
2112         public = no
2113
2114 .B Example:
2115         public = yes
2116 .SS read list (S)
2117 This is a list of users that are given read-only access to a
2118 service. If the connecting user is in this list then they will
2119 not be given write access, no matter what the "read only" option
2120 is set to. The list can include group names using the @group syntax.
2121
2122 See also the "write list" option
2123
2124 .B Default:
2125      read list =
2126
2127 .B Example:
2128      read list = mary, @students
2129
2130 .SS read only (S)
2131 See
2132 .B writable
2133 and
2134 .B write ok.
2135 Note that this is an inverted synonym for writable and write ok.
2136 .SS read prediction (G)
2137 This options enables or disables the read prediction code used to
2138 speed up reads from the server. When enabled the server will try to
2139 pre-read data from the last accessed file that was opened read-only
2140 while waiting for packets.
2141
2142 .SS Default:
2143         read prediction = False
2144
2145 .SS Example:
2146         read prediction = True
2147 .SS read raw (G)
2148 This parameter controls whether or not the server will support raw reads when
2149 transferring data to clients.
2150
2151 If enabled, raw reads allow reads of 65535 bytes in one packet. This
2152 typically provides a major performance benefit.
2153
2154 However, some clients either negotiate the allowable block size incorrectly
2155 or are incapable of supporting larger block sizes, and for these clients you
2156 may need to disable raw reads.
2157
2158 In general this parameter should be viewed as a system tuning tool and left
2159 severely alone. See also
2160 .B write raw.
2161
2162 .B Default:
2163         read raw = yes
2164
2165 .B Example:
2166         read raw = no
2167 .SS read size (G)
2168
2169 The option "read size" affects the overlap of disk reads/writes with
2170 network reads/writes. If the amount of data being transferred in
2171 several of the SMB commands (currently SMBwrite, SMBwriteX and
2172 SMBreadbraw) is larger than this value then the server begins writing
2173 the data before it has received the whole packet from the network, or
2174 in the case of SMBreadbraw, it begins writing to the network before
2175 all the data has been read from disk.
2176
2177 This overlapping works best when the speeds of disk and network access
2178 are similar, having very little effect when the speed of one is much
2179 greater than the other.
2180
2181 The default value is 2048, but very little experimentation has been
2182 done yet to determine the optimal value, and it is likely that the best
2183 value will vary greatly between systems anyway. A value over 65536 is
2184 pointless and will cause you to allocate memory unnecessarily.
2185
2186 .B Default:
2187         read size = 2048
2188
2189 .B Example:
2190         read size = 8192
2191
2192 .SS remote announce (G)
2193
2194 This option allows you to setup nmbd to periodically announce itself
2195 to arbitrary IP addresses with an arbitrary workgroup name. 
2196
2197 This is useful if you want your Samba server to appear in a remote
2198 workgroup for which the normal browse propagation rules don't
2199 work. The remote workgroup can be anywhere that you can send IP
2200 packets to.
2201
2202 For example:
2203
2204        remote announce = 192.168.2.255/SERVERS 192.168.4.255/STAFF
2205
2206 the above line would cause nmbd to announce itself to the two given IP
2207 addresses using the given workgroup names. If you leave out the
2208 workgroup name then the one given in the "workgroup" option is used
2209 instead. 
2210
2211 The IP addresses you choose would normally be the broadcast addresses
2212 of the remote networks, but can also be the IP addresses of known
2213 browse masters if your network config is that stable.
2214
2215 This option replaces similar functionality from the nmbd lmhosts file.
2216
2217 .SS revalidate (S)
2218
2219 This options controls whether Samba will allow a previously validated
2220 username/password pair to be used to attach to a share. Thus if you
2221 connect to \e\eserver\eshare1 then to \e\eserver\eshare2 it won't
2222 automatically allow the client to request connection to the second
2223 share as the same username as the first without a password.
2224
2225 If "revalidate" is True then the client will be denied automatic
2226 access as the same username.
2227
2228 .B Default:
2229         revalidate = False
2230
2231 .B Example:
2232         revalidate = True
2233
2234 .SS root (G)
2235 See
2236 .B root directory.
2237 .SS root dir (G)
2238 See
2239 .B root directory.
2240 .SS root directory (G)
2241 Synonyms for this parameter are 'root dir' and 'root'.
2242
2243 The server will chroot() to this directory on startup. This is not 
2244 strictly necessary for secure operation. Even without it the server
2245 will deny access to files not in one of the service entries. It may 
2246 also check for, and deny access to, soft links to other parts of the 
2247 filesystem, or attempts to use .. in file names to access other 
2248 directories (depending on the setting of the "wide links" parameter).
2249
2250 Adding a "root dir" entry other than "/" adds an extra level of security, 
2251 but at a price. It absolutely ensures that no access is given to files not
2252 in the sub-tree specified in the "root dir" option, *including* some files 
2253 needed for complete operation of the server. To maintain full operability
2254 of the server you will need to mirror some system files into the "root dir"
2255 tree. In particular you will need to mirror /etc/passwd (or a subset of it),
2256 and any binaries or configuration files needed for printing (if required). 
2257 The set of files that must be mirrored is operating system dependent.
2258
2259 .B Default:
2260         root directory = /
2261
2262 .B Example:
2263         root directory = /homes/smb
2264 .SS security (G)
2265 This option affects how clients respond to Samba.
2266
2267 The option sets the "security mode bit" in replies to protocol negotiations
2268 to turn share level security on or off. Clients decide based on this bit 
2269 whether (and how) to transfer user and password information to the server.
2270
2271 The default is "security=SHARE", mainly because that was the only
2272 option at one stage.
2273
2274 The alternatives are "security = user" or "security = server". 
2275
2276 If your PCs use usernames that are the same as their usernames on the
2277 UNIX machine then you will want to use "security = user". If you
2278 mostly use usernames that don't exist on the UNIX box then use
2279 "security = share".
2280
2281 There is a bug in WfWg that may affect your decision. When in user
2282 level security a WfWg client will totally ignore the password you type
2283 in the "connect drive" dialog box. This makes it very difficult (if
2284 not impossible) to connect to a Samba service as anyone except the
2285 user that you are logged into WfWg as.
2286
2287 If you use "security = server" then Samba will try to validate the
2288 username/password by passing it to another SMB server, such as an NT
2289 box. If this fails it will revert to "security = USER".
2290
2291 See the "password server" option for more details.
2292
2293 .B Default:
2294         security = SHARE
2295
2296 .B Example:
2297         security = USER
2298 .SS server string (G)
2299 This controls what string will show up in the printer comment box in
2300 print manager and next to the IPC connection in "net view". It can be
2301 any string that you wish to show to your users.
2302
2303 It also sets what will appear in browse lists next to the machine name.
2304
2305 A %v will be replaced with the Samba version number.
2306
2307 A %h will be replaced with the hostname.
2308
2309 .B Default:
2310         server string = Samba %v
2311
2312 .B Example:
2313         server string = University of GNUs Samba Server
2314
2315 .SS smbrun (G)
2316 This sets the full path to the smbrun binary. This defaults to the
2317 value in the Makefile.
2318
2319 You must get this path right for many services to work correctly.
2320
2321 .B Default:
2322 taken from Makefile
2323
2324 .B Example:
2325         smbrun = /usr/local/samba/bin/smbrun
2326
2327 .SS short preserve case (S)
2328
2329 This controls if new short filenames are created with the case that
2330 the client passes, or if they are forced to be the "default" case.
2331
2332 .B Default:
2333        short preserve case = no
2334
2335 See the section on "NAME MANGLING" for a fuller discussion.
2336
2337 .SS root preexec (S)
2338
2339 This is the same as preexec except that the command is run as
2340 root. This is useful for mounting filesystems (such as cdroms) before
2341 a connection is finalised.
2342
2343 .SS root postexec (S)
2344
2345 This is the same as postexec except that the command is run as
2346 root. This is useful for unmounting filesystems (such as cdroms) after
2347 a connection is closed.
2348
2349 .SS set directory (S)
2350 If 'set directory = no', then users of the service may not use the setdir
2351 command to change directory.
2352
2353 The setdir command is only implemented in the Digital Pathworks client. See the
2354 Pathworks documentation for details.
2355
2356 .B Default:
2357         set directory = no
2358
2359 .B Example:
2360         set directory = yes
2361
2362 .SS share modes (S)
2363
2364 This enables or disables the honouring of the "share modes" during a
2365 file open. These modes are used by clients to gain exclusive read or
2366 write access to a file. 
2367
2368 These open modes are not directly supported by UNIX, so they are
2369 simulated using lock files in the "lock directory". The "lock
2370 directory" specified in smb.conf must be readable by all users.
2371
2372 The share modes that are enabled by this option are DENY_DOS,
2373 DENY_ALL, DENY_READ, DENY_WRITE, DENY_NONE and DENY_FCB.
2374
2375 Enabling this option gives full share compatibility but may cost a bit
2376 of processing time on the UNIX server. They are enabled by default.
2377
2378 .B Default:
2379         share modes = yes
2380
2381 .B Example:
2382         share modes = no
2383
2384 .SS socket address (G)
2385
2386 This option allows you to control what address Samba will listen for
2387 connections on. This is used to support multiple virtual interfaces on
2388 the one server, each with a different configuration.
2389
2390 By default samba will accept connections on any address.
2391
2392 .B Example:
2393         socket address = 192.168.2.20
2394
2395 .SS socket options (G)
2396 This option (which can also be invoked with the -O command line
2397 option) allows you to set socket options to be used when talking with
2398 the client.
2399
2400 Socket options are controls on the networking layer of the operating
2401 systems which allow the connection to be tuned.
2402
2403 This option will typically be used to tune your Samba server for
2404 optimal performance for your local network. There is no way that Samba
2405 can know what the optimal parameters are for your net, so you must
2406 experiment and choose them yourself. I strongly suggest you read the
2407 appropriate documentation for your operating system first (perhaps
2408 "man setsockopt" will help).
2409
2410 You may find that on some systems Samba will say "Unknown socket
2411 option" when you supply an option. This means you either mis-typed it
2412 or you need to add an include file to includes.h for your OS. If the
2413 latter is the case please send the patch to me
2414 (samba-bugs@samba.anu.edu.au).
2415
2416 Any of the supported socket options may be combined in any way you
2417 like, as long as your OS allows it.
2418
2419 This is the list of socket options currently settable using this
2420 option:
2421
2422   SO_KEEPALIVE
2423
2424   SO_REUSEADDR
2425
2426   SO_BROADCAST
2427
2428   TCP_NODELAY
2429
2430   IPTOS_LOWDELAY
2431
2432   IPTOS_THROUGHPUT
2433
2434   SO_SNDBUF *
2435
2436   SO_RCVBUF *
2437
2438   SO_SNDLOWAT *
2439
2440   SO_RCVLOWAT *
2441
2442 Those marked with a * take an integer argument. The others can
2443 optionally take a 1 or 0 argument to enable or disable the option, by
2444 default they will be enabled if you don't specify 1 or 0.
2445
2446 To specify an argument use the syntax SOME_OPTION=VALUE for example
2447 SO_SNDBUF=8192. Note that you must not have any spaces before or after
2448 the = sign.
2449
2450 If you are on a local network then a sensible option might be
2451
2452 socket options = IPTOS_LOWDELAY
2453
2454 If you have an almost unloaded local network and you don't mind a lot
2455 of extra CPU usage in the server then you could try
2456
2457 socket options = IPTOS_LOWDELAY TCP_NODELAY
2458
2459 If you are on a wide area network then perhaps try setting
2460 IPTOS_THROUGHPUT. 
2461
2462 Note that several of the options may cause your Samba server to fail
2463 completely. Use these options with caution!
2464
2465 .B Default:
2466         no socket options
2467
2468 .B Example:
2469         socket options = IPTOS_LOWDELAY 
2470
2471
2472
2473
2474 .SS status (G)
2475 This enables or disables logging of connections to a status file that
2476 .B smbstatus
2477 can read.
2478
2479 With this disabled
2480 .B smbstatus
2481 won't be able to tell you what
2482 connections are active.
2483
2484 .B Default:
2485         status = yes
2486
2487 .B Example:
2488         status = no
2489
2490 .SS strip dot (G)
2491 This is a boolean that controls whether to strip trailing dots off
2492 filenames. This helps with some CDROMs that have filenames ending in a
2493 single dot.
2494
2495 NOTE: This option is now obsolete, and may be removed in future. You
2496 should use the "mangled map" option instead as it is much more
2497 general. 
2498
2499 .SS strict locking (S)
2500 This is a boolean that controls the handling of file locking in the
2501 server. When this is set to yes the server will check every read and
2502 write access for file locks, and deny access if locks exist. This can
2503 be slow on some systems.
2504
2505 When strict locking is "no" the server does file lock checks only when
2506 the client explicitly asks for them. 
2507
2508 Well behaved clients always ask for lock checks when it is important,
2509 so in the vast majority of cases "strict locking = no" is preferable.
2510
2511 .B Default:
2512         strict locking = no
2513
2514 .B Example:
2515         strict locking = yes
2516
2517 .SS sync always (S)
2518
2519 This is a boolean parameter that controls whether writes will always
2520 be written to stable storage before the write call returns. If this is
2521 false then the server will be guided by the client's request in each
2522 write call (clients can set a bit indicating that a particular write
2523 should be synchronous). If this is true then every write will be
2524 followed by a fsync() call to ensure the data is written to disk.
2525
2526 .B Default:
2527         sync always = no
2528
2529 .B Example:
2530         sync always = yes
2531
2532 .SS time offset (G)
2533 This parameter is a setting in minutes to add to the normal GMT to
2534 local time conversion. This is useful if you are serving a lot of PCs
2535 that have incorrect daylight saving time handling.
2536
2537 .B Default:
2538         time offset = 0
2539
2540 .B Example:
2541         time offset = 60
2542
2543 .SS user (S)
2544 See
2545 .B username.
2546 .SS username (S)
2547 A synonym for this parameter is 'user'.
2548
2549 Multiple users may be specified in a comma-delimited list, in which case the
2550 supplied password will be tested against each username in turn (left to right).
2551
2552 The username= line is needed only when the PC is unable to supply its own
2553 username. This is the case for the coreplus protocol or where your
2554 users have different WfWg usernames to UNIX usernames. In both these
2555 cases you may also be better using the \e\eserver\eshare%user syntax
2556 instead. 
2557
2558 The username= line is not a great solution in many cases as it means Samba
2559 will try to validate the supplied password against each of the
2560 usernames in the username= line in turn. This is slow and a bad idea for
2561 lots of users in case of duplicate passwords. You may get timeouts or
2562 security breaches using this parameter unwisely.
2563
2564 Samba relies on the underlying UNIX security. This parameter does not
2565 restrict who can login, it just offers hints to the Samba server as to
2566 what usernames might correspond to the supplied password. Users can
2567 login as whoever they please and they will be able to do no more
2568 damage than if they started a telnet session. The daemon runs as the
2569 user that they log in as, so they cannot do anything that user cannot
2570 do.
2571
2572 To restrict a service to a particular set of users you can use the
2573 "valid users=" line.
2574
2575 If any of the usernames begin with a @ then the name will be looked up
2576 in the groups file and will expand to a list of all users in the group
2577 of that name. Note that searching though a groups file can take quite
2578 some time, and some clients may time out during the search.
2579
2580 See the section below on username/password validation for more information
2581 on how this parameter determines access to the services.
2582
2583 .B Default:
2584         The guest account if a guest service, else the name of the service.
2585
2586 .B Examples:
2587         username = fred
2588         username = fred, mary, jack, jane, @users, @pcgroup
2589
2590 .SS username map (G)
2591
2592 This option allows you to to specify a file containing a mapping of
2593 usernames from the clients to the server. This can be used for several
2594 purposes. The most common is to map usernames that users use on DOS or
2595 Windows machines to those that the UNIX box uses. The other is to map
2596 multiple users to a single username so that they can more easily share
2597 files.
2598
2599 The map file is parsed line by line. Each line should contain a single
2600 UNIX username on the left then a '=' followed by a list of usernames
2601 on the right. The list of usernames on the right may contain names of
2602 the form @group in which case they will match any UNIX username in
2603 that group. The special client name '*' is a wildcard and matches any
2604 name.
2605
2606 The file is processed on each line by taking the supplied username and
2607 comparing it with each username on the right hand side of the '='
2608 signs. If the supplied name matches any of the names on the right
2609 hand side then it is replaced with the name on the left. Processing
2610 then continues with the next line.
2611
2612 If any line begins with a '#' or a ';' then it is ignored
2613
2614 For example to map from the name "admin" or "administrator" to the UNIX
2615 name "root" you would use
2616
2617         root = admin administrator
2618
2619 Or to map anyone in the UNIX group "system" to the UNIX name "sys" you
2620 would use
2621
2622         sys = @system
2623
2624 You can have as many mappings as you like in a username map file.
2625
2626 Note that the remapping is applied to all occurrences of
2627 usernames. Thus if you connect to "\e\eserver\efred" and "fred" is
2628 remapped to "mary" then you will actually be connecting to
2629 "\e\eserver\emary" and will need to supply a password suitable for
2630 "mary" not "fred". The only exception to this is the username passed
2631 to the "password server" (if you have one). The password server will
2632 receive whatever username the client supplies without modification.
2633
2634 Also note that no reverse mapping is done. The main effect this has is
2635 with printing. Users who have been mapped may have trouble deleting
2636 print jobs as PrintManager under WfWg will think they don't own the
2637 print job.
2638
2639 .B Default
2640         no username map
2641
2642 .B Example
2643         username map = /usr/local/samba/lib/users.map
2644
2645 .SS valid chars (S)
2646
2647 The option allows you to specify additional characters that should be
2648 considered valid by the server in filenames. This is particularly
2649 useful for national character sets, such as adding u-umlaut or a-ring.
2650
2651 The option takes a list of characters in either integer or character
2652 form with spaces between them. If you give two characters with a colon
2653 between them then it will be taken as an lowercase:uppercase pair.
2654
2655 If you have an editor capable of entering the characters into the
2656 config file then it is probably easiest to use this method. Otherwise
2657 you can specify the characters in octal, decimal or hexadecimal form
2658 using the usual C notation.
2659
2660 For example to add the single character 'Z' to the charset (which is a
2661 pointless thing to do as it's already there) you could do one of the
2662 following
2663
2664 valid chars = Z
2665 valid chars = z:Z
2666 valid chars = 0132:0172
2667
2668 The last two examples above actually add two characters, and alter
2669 the uppercase and lowercase mappings appropriately.
2670
2671 .B Default
2672 .br
2673         Samba defaults to using a reasonable set of valid characters
2674 .br
2675         for english systems
2676
2677 .B Example
2678         valid chars = 0345:0305 0366:0326 0344:0304
2679
2680 The above example allows filenames to have the swedish characters in
2681 them. 
2682
2683 NOTE: It is actually quite difficult to correctly produce a "valid
2684 chars" line for a particular system. To automate the process
2685 tino@augsburg.net has written a package called "validchars" which will
2686 automatically produce a complete "valid chars" line for a given client
2687 system. Look in the examples subdirectory for this package.
2688
2689 .SS valid users (S)
2690 This is a list of users that should be allowed to login to this
2691 service. A name starting with @ is interpreted as a UNIX group.
2692
2693 If this is empty (the default) then any user can login. If a username
2694 is in both this list and the "invalid users" list then access is
2695 denied for that user.
2696
2697 The current servicename is substituted for %S. This is useful in the
2698 [homes] section.
2699
2700 See also "invalid users"
2701
2702 .B Default
2703         No valid users list. (anyone can login)
2704
2705 .B Example
2706         valid users = greg, @pcusers
2707
2708 .SS volume (S)
2709 This allows you to override the volume label returned for a
2710 share. Useful for CDROMs with installation programs that insist on a
2711 particular volume label.
2712
2713 The default is the name of the share
2714
2715 .SS wide links (S)
2716 This parameter controls whether or not links in the UNIX file system may be
2717 followed by the server. Links that point to areas within the directory tree
2718 exported by the server are always allowed; this parameter controls access 
2719 only to areas that are outside the directory tree being exported.
2720
2721 .B Default:
2722         wide links = yes
2723
2724 .B Example:
2725         wide links = no
2726
2727 .SS wins proxy (G)
2728
2729 This is a boolean that controls if nmbd will respond to broadcast name
2730 queries on behalf of other hosts. You may need to set this to no for
2731 some older clients.
2732
2733 .B Default:
2734         wins proxy = no
2735 .SS wins support (G)
2736
2737 This boolean controls if Samba will act as a WINS server. You should
2738 normally set this to true unless you already have another WINS server
2739 on the network.
2740
2741 .B Default:
2742         wins support = yes
2743 .SS wins server (G)
2744
2745 This specifies the DNS name of the WINS server that Samba should
2746 register with. If you have a WINS server on your network then you
2747 should set this to the WINS servers name.
2748
2749 This option only takes effect if Samba is not acting as a WINS server
2750 itself. 
2751
2752 .B Default:
2753         wins server = 
2754 .SS workgroup (G)
2755
2756 This controls what workgroup your server will appear to be in when
2757 queried by clients. 
2758
2759 .B Default:
2760         set in the Makefile
2761
2762 .B Example:
2763         workgroup = MYGROUP
2764
2765 .SS write ok (S)
2766 See
2767 .B writable
2768 and
2769 .B read only.
2770 .SS writable (S)
2771 A synonym for this parameter is 'write ok'. An inverted synonym is 'read only'.
2772
2773 If this parameter is 'no', then users of a service may not create or modify
2774 files in the service's directory.
2775
2776 Note that a printable service ('printable = yes') will ALWAYS allow 
2777 writing to the directory (user privileges permitting), but only via
2778 spooling operations.
2779
2780 .B Default:
2781         writable = no
2782
2783 .B Examples:
2784         read only = no
2785         writable = yes
2786         write ok = yes
2787 .SS write list (S)
2788 This is a list of users that are given read-write access to a
2789 service. If the connecting user is in this list then they will be
2790 given write access, no matter what the "read only" option is set
2791 to. The list can include group names using the @group syntax.
2792
2793 Note that if a user is in both the read list and the write list then
2794 they will be given write access.
2795
2796 See also the "read list" option
2797
2798 .B Default:
2799      write list =
2800
2801 .B Example:
2802      write list = admin, root, @staff
2803
2804 .SS write raw (G)
2805 This parameter controls whether or not the server will support raw writes when
2806 transferring data from clients.
2807
2808 .B Default:
2809         write raw = yes
2810
2811 .B Example:
2812         write raw = no
2813 .SH NOTE ABOUT USERNAME/PASSWORD VALIDATION
2814 There are a number of ways in which a user can connect to a
2815 service. The server follows the following steps in determining if it
2816 will allow a connection to a specified service. If all the steps fail
2817 then the connection request is rejected. If one of the steps pass then
2818 the following steps are not checked.
2819
2820 If the service is marked "guest only = yes" then steps 1 to 5 are skipped
2821
2822 Step 1: If the client has passed a username/password pair and that
2823 username/password pair is validated by the UNIX system's password
2824 programs then the connection is made as that username. Note that this
2825 includes the \e\eserver\eservice%username method of passing a username.
2826
2827 Step 2: If the client has previously registered a username with the
2828 system and now supplies a correct password for that username then the
2829 connection is allowed.
2830
2831 Step 3: The client's netbios name and any previously used user names
2832 are checked against the supplied password, if they match then the
2833 connection is allowed as the corresponding user.
2834
2835 Step 4: If the client has previously validated a username/password
2836 pair with the server and the client has passed the validation token
2837 then that username is used. This step is skipped if "revalidate = yes" 
2838 for this service.
2839
2840 Step 5: If a "user = " field is given in the smb.conf file for the
2841 service and the client has supplied a password, and that password
2842 matches (according to the UNIX system's password checking) with one of
2843 the usernames from the user= field then the connection is made as the
2844 username in the "user=" line. If one of the username in the user= list
2845 begins with a @ then that name expands to a list of names in the group
2846 of the same name.
2847
2848 Step 6: If the service is a guest service then a connection is made as
2849 the username given in the "guest account =" for the service,
2850 irrespective of the supplied password.
2851 .SH WARNINGS
2852 Although the configuration file permits service names to contain spaces, 
2853 your client software may not. Spaces will be ignored in comparisons anyway,
2854 so it shouldn't be a problem - but be aware of the possibility.
2855
2856 On a similar note, many clients - especially DOS clients - limit service
2857 names to eight characters. Smbd has no such limitation, but attempts
2858 to connect from such clients will fail if they truncate the service names.
2859 For this reason you should probably keep your service names down to eight 
2860 characters in length.
2861
2862 Use of the [homes] and [printers] special sections make life for an 
2863 administrator easy, but the various combinations of default attributes can be
2864 tricky. Take extreme care when designing these sections. In particular,
2865 ensure that the permissions on spool directories are correct.
2866 .SH VERSION
2867 This man page is (mostly) correct for version 1.9.00 of the Samba suite, plus some
2868 of the recent patches to it. These notes will necessarily lag behind 
2869 development of the software, so it is possible that your version of 
2870 the server has extensions or parameter semantics that differ from or are not 
2871 covered by this man page. Please notify these to the address below for 
2872 rectification.
2873
2874 Prior to version 1.5.21 of the Samba suite, the configuration file was
2875 radically different (more primitive). If you are using a version earlier than
2876 1.8.05, it is STRONGLY recommended that you upgrade.
2877 .SH OPTIONS
2878 Not applicable.
2879 .SH FILES
2880 Not applicable.
2881 .SH ENVIRONMENT VARIABLES
2882 Not applicable.
2883 .SH SEE ALSO
2884 .BR smbd (8),
2885 .BR smbclient (1),
2886 .BR nmbd (8),
2887 .BR testparm (1), 
2888 .BR testprns (1),
2889 .BR lpq (1),
2890 .BR hosts_access (5)
2891 .SH DIAGNOSTICS
2892 [This section under construction]
2893
2894 Most diagnostics issued by the server are logged in a specified log file. The
2895 log file name is specified at compile time, but may be overridden on the
2896 smbd command line (see
2897 .BR smbd (8)).
2898
2899 The number and nature of diagnostics available depends on the debug level used
2900 by the server. If you have problems, set the debug level to 3 and peruse the
2901 log files.
2902
2903 Most messages are reasonably self-explanatory. Unfortunately, at time of
2904 creation of this man page the source code is still too fluid to warrant
2905 describing each and every diagnostic. At this stage your best bet is still
2906 to grep the source code and inspect the conditions that gave rise to the 
2907 diagnostics you are seeing.
2908 .SH BUGS
2909 None known.
2910
2911 Please send bug reports, comments and so on to:
2912
2913 .RS 3
2914 .B samba-bugs@samba.anu.edu.au (Andrew Tridgell)
2915
2916 .RS 3
2917 or to the mailing list:
2918 .RE
2919
2920 .B samba@listproc.anu.edu.au
2921
2922 .RE
2923 You may also like to subscribe to the announcement channel:
2924
2925 .RS 3
2926 .B samba-announce@listproc.anu.edu.au
2927 .RE
2928
2929 To subscribe to these lists send a message to
2930 listproc@listproc.anu.edu.au with a body of "subscribe samba Your
2931 Name" or "subscribe samba-announce Your Name".
2932
2933 Errors or suggestions for improvements to the Samba man pages should be 
2934 mailed to:
2935
2936 .RS 3
2937 .B samba-bugs@samba.anu.edu.au (Andrew Tridgell)
2938 .RE
2939