summaryrefslogtreecommitdiffstats
path: root/docs/manpages
Commit message (Collapse)AuthorAgeFilesLines
...
* fixed typoAndrew Tridgell1998-02-111-1/+1
|
* *** empty log message ***Volker Lendecke1998-01-262-25/+62
|
* preparing for release of 1.9.18Samba Release Account1998-01-0815-15/+15
|
* Added manpages.Volker Lendecke1998-01-063-0/+131
| | | | | Removed obsolete options from smbmount help message. Volker
* preparing for release of 1.9.18alpha14Samba Release Account1997-12-2412-12/+12
|
* Added docs for new signal handling functions.Jeremy Allison1997-12-242-0/+26
| | | | Jeremy.
* preparing for release of 1.9.18alpha13Samba Release Account1997-12-1612-12/+12
|
* WHATSNEW.txt - updated for 1.9.18alpha13.Jeremy Allison1997-12-161-71/+0
| | | | | | | docs/smb.conf.5: Removed unused NTDOMAIN params. Added new params. source/loadparm.c: Put #ifdef NTDOMAIN around unused params. source/nmbd_become_lmb.c: Removed check for workgroup name in lmb name. Jeremy.
* Added new wins & lm announce options.Jeremy Allison1997-12-161-1/+73
| | | | Jeremy.
* applied a patch from Norm Jacobs to allow "printcap name = lpstat"Andrew Tridgell1997-12-031-3/+13
| | | | | | | | | | to use lpstat to obtain the printer list on systemV systems. I've now made this the default on all SYSV systems. Jeremy, you were a little worried about the security of this patch. I believe it's OK as the user has no control over the options given to popen() and the pipe is only open for reading.
* change the "username map" option to allow the user to stop theAndrew Tridgell1997-12-031-0/+13
| | | | | | | | processing part way through the file if a match is found. If a line starts with ! and a match is made by that line then processing stops. This allows better wildcard handling. (patch from Anselm.Kruis@Physik.Uni-Muenchen.DE)
* make the "printing" option a per share option rather than global. WhenAndrew Tridgell1997-12-031-3/+7
| | | | printing to lots of different sorts of remote printers this is useful
* Documented the 'veto oplock files' parameter.Jeremy Allison1997-12-021-0/+24
| | | | Jeremy.
* preparing for release of 1.9.18alpha12Samba Release Account1997-11-2812-12/+12
|
* Added in mods for new smb.conf "remote browse sync" option as posted toJohn Terpstra1997-11-211-0/+31
| | | | the samba-1.9.17 tree moments ago.
* preparing for release of 1.9.18alpha11Samba Release Account1997-11-0212-12/+12
|
* documented "domain hosts allow/deny" parametersLuke Leighton1997-11-021-7/+43
|
* preparing for release of 1.9.18alpha10Samba Release Account1997-11-0112-12/+12
|
* preparing for release of 1.9.18alpha9Samba Release Account1997-10-3012-12/+12
|
* preparing for release of 1.9.18alpha8Samba Release Account1997-10-2912-12/+12
|
* preparing for release of 1.9.18alpha7Samba Release Account1997-10-2912-12/+12
|
* Added "printer driver location", "printer driver file" parameters.Jeremy Allison1997-10-281-0/+49
| | | | Jeremy.
* preparing for release of 1.9.18alpha6Samba Release Account1997-10-2712-12/+12
|
* preparing for release of 1.9.18alpha5Samba Release Account1997-10-2512-12/+12
|
* preparing for release of 1.9.18alpha4Samba Release Account1997-10-2412-12/+12
|
* preparing for release of samba-1.9.18alpha4Samba Release Account1997-10-2412-12/+12
|
* preparing for release of 1.9.18alpha3Samba Release Account1997-10-2112-12/+12
|
* preparing for release of 1.9.18alpha2Samba Release Account1997-10-2112-12/+12
|
* WHATSNEW.txt: Preparing for 1.9.18alpha2 release.Jeremy Allison1997-10-211-1/+39
| | | | | | smb.conf.5: Added 'bind interfaces only' parameter. version.h: Updated to 1.9.18alpha2. Jeremy (jallison@whistle.com)
* add a note on how to map usernames with spaces in themAndrew Tridgell1997-10-211-0/+8
|
* added a note about which netbios name is use in server level securityAndrew Tridgell1997-10-211-0/+5
|
* Adding make_smbcodepage.1 man page.Jeremy Allison1997-10-202-0/+149
| | | | | Updated smb.conf with dos filetimes. Jeremy (jallison@whistle.com)
* added description of parameters:Luke Leighton1997-10-201-2/+75
| | | | | | | domain sid domain groups logon drive logon path
* document -a "append log" optionAndrew Tridgell1997-10-171-0/+7
|
* updated the "comment =" entry a bitAndrew Tridgell1997-10-131-9/+10
| | | | updated the fake oplocks entry a bit
* Added definition of oplocks parameter.Jeremy Allison1997-10-091-0/+18
| | | | Jeremy (jallison@whistle.com)
* Removed samba.faq from the docs directory, it was out of date. All FAQs inSamba Release Account1997-10-071-1/+1
| | | | | | | | | | | | | docs/faq. Replaced all reference to samba.canberra.edu.au/pub/samba/samba.html with samba.anu.edu.au/samba/ Replaced references to ictinus@lake.canberra.edu.au with ictinus@samba.anu.edu.au Added 3 new mirrors, Greece, Poland, Romania Paul.
* change the semantics of hosts allow/hosts deny so that a globalAndrew Tridgell1997-10-021-4/+5
| | | | | | | | | | | | | | | | | | | | | | | setting applies to all shares regardless of any settings on other shares. This allows us to immediately drop a connection if it does not come from a allowed host, without even parsing the first SMB packet. The next time we get a nasty security hole we can offer people the option of just setting their hosts allow line. If we drop a connection in this way we generate a "Not listening for calling name" response and then exit. add a per share "oplocks" option in smb.conf. I think its important to be able to disable oplocks on a per-share basis as there are occasions then they are definately not wanted, for example when sharing data between a windows box and a unix application. This also allows us to tell people "try disabling oplocks" when diagnosing problems. fix a bug in process_smb(). It was taking the length of the packet from outbuf, not inbuf (this bug was introduced with the oplocks code). Jeremy, I assume this wasn't deliberate?
* smbclient.1: Added documentation of the username%password environment code.Jeremy Allison1997-09-192-0/+29
| | | | | smb.conf.5: Added 'username level' docs. Jeremy (jallison@whistle.com)
* Added documentation for the 'delete veto files' parameter.Jeremy Allison1997-09-171-2/+32
| | | | Jeremy (jallison@whistle.com)
* updated bit on kill -HUP to make it clear what effect this has, and itsLuke Leighton1997-09-091-9/+19
| | | | limitations.
* added info about _not_ using \\SAMBA_SERVER\HOMES\profile - must useSamba Release Account1997-08-261-3/+8
| | | | | | | | \\SAMBA_SERVER\%U\profile for the profile path. documented default profile path changing to \\%L\%U\profile, so that w95 and NT can use the same profile directory: you cannot use \\%L\%U for NT profiles. lkcl
* fix several references to samba-bugs@anu.edu.au which should be ↵Samba Release Account1997-08-224-4/+4
| | | | samba-bugs@samba.anu.edu.au
* Removed the obsolete comment from the 'strip dot'Samba Release Account1997-08-211-4/+6
| | | | | | option. It isn't :-). Jeremy (jallison@whistle.com)
* Support.txt: Added two more consultants.Samba Release Account1997-08-201-1/+2
| | | | | smbtar.1: Mentioned it is meant for GNU tar. Jeremy (jallison@whistle.com)
* smb.conf.5: Added netbios aliases entry.Samba Release Account1997-07-311-0/+25
| | | | | Support.txt: One more USA consultant. Jeremy (jallison@whistle.com)
* Made docs more up to date with source. Preparing for 1.9.17alpha5.Samba Release Account1997-07-301-1/+45
| | | | Jeremy (jallison@whistle.com)
* Changed default create mask parameter to 0744 as per John's request.Samba Release Account1997-07-241-26/+41
| | | | | Tidied up mask descriptions. Jeremy (jallison@whistle.com)
* Support.txt: Modified a consultant's entry (Italy)Samba Release Account1997-07-181-0/+15
| | | | | smb.conf.5: Documented follow symlinks parameter. Jeremy (jallison@whistle.com)
* Changed separators for veto & hide files back to /.Samba Release Account1997-07-141-17/+15
| | | | Jeremy (jallison@whistle.com)