aboutsummaryrefslogtreecommitdiff
path: root/lib/libutil/login.conf.5
Commit message (Collapse)AuthorAgeFilesLines
* libutil: Document function HISTORY within the manpagesGordon Bergling2020-06-141-1/+6
| | | | | | | | | | Reviewed by: bcr (mentor) Approved by: bcr (mentor) MFC after: 7 days Differential Revision: https://reviews.freebsd.org/D24795 Notes: svn path=/head/; revision=362169
* login.conf(5): split MAIL env var out into a "mail" capabilityKyle Evans2020-02-051-1/+2
| | | | | | | | | | | | This allows it to be easily suppressed in, e.g., the "daemon" class where it will not be properly expanded. This is a part of D21481. Submitted by: Andrew Gierth <andrew_tao173.riddles.org.uk> Notes: svn path=/head/; revision=357560
* Fix handling of umtxp resource limit in sh(1)/ulimit(1), limits(1), addKonstantin Belousov2016-03-121-0/+1
| | | | | | | | | | | login.conf(5) support. Reviewed by: jilles Sponsored by: The FreeBSD Foundation Differential revision: https://reviews.freebsd.org/D5610 Notes: svn path=/head/; revision=296723
* Mention in login.conf.5 which fields may be infinite and how to specifify ↵Eitan Adler2013-10-271-0/+10
| | | | | | | | | | | | | infinity. The number of ways to indicate this confuses people. PR: docs/100196 Reported by: "Dr. Markus Waldeck" <waldeck@gmx.de> Reported by: Jamie Landeg Jones <jamie.landeg.jones@gmail.com> Notes: svn path=/head/; revision=257205
* All man pages refer to FreeBSD so there is no need to mention "In .Fx"Eitan Adler2013-10-271-3/+1
| | | | Notes: svn path=/head/; revision=257204
* Switch the default password hash from md5 to sha512.Dag-Erling Smørgrav2012-06-191-1/+1
| | | | | | | MFC after: 1 week Notes: svn path=/head/; revision=237269
* Document that we also support sha256 and sha512.Dag-Erling Smørgrav2012-06-081-1/+3
| | | | | | | MFC after: 1 week Notes: svn path=/head/; revision=236751
* General mdoc(7) and typo fixes.Glen Barber2012-05-121-1/+2
| | | | | | | | | PR: 167804 Submitted by: Nobuyuki Koganemaru (kogane!jp.freebsd.org) MFC after: 3 days Notes: svn path=/head/; revision=235337
* mdoc: terminate quoted strings.Joel Dahl2012-03-301-53/+53
| | | | Notes: svn path=/head/; revision=233698
* mandoc complains loudly when <TAB>s are misused in columnated lists. FixJoel Dahl2012-03-291-1/+1
| | | | | | | | this syntax violation and while I'm here also convert <TAB> to Ta and adjust quotation marks in order to prevent this problem in the future. Notes: svn path=/head/; revision=233665
* This string should be quoted.Joel Dahl2012-03-261-1/+1
| | | | | | | Noticed by: brueffer Notes: svn path=/head/; revision=233511
* mdoc: terminate quoted strings.Joel Dahl2012-03-261-21/+21
| | | | | | | Reviewed by: brueffer Notes: svn path=/head/; revision=233510
* Add missing "swapuse" resource limit.Edward Tomasz Napierala2011-07-091-1/+2
| | | | Notes: svn path=/head/; revision=223878
* Integrate the new MPSAFE TTY layer to the FreeBSD operating system.Ed Schouten2008-08-201-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The last half year I've been working on a replacement TTY layer for the FreeBSD kernel. The new TTY layer was designed to improve the following: - Improved driver model: The old TTY layer has a driver model that is not abstract enough to make it friendly to use. A good example is the output path, where the device drivers directly access the output buffers. This means that an in-kernel PPP implementation must always convert network buffers into TTY buffers. If a PPP implementation would be built on top of the new TTY layer (still needs a hooks layer, though), it would allow the PPP implementation to directly hand the data to the TTY driver. - Improved hotplugging: With the old TTY layer, it isn't entirely safe to destroy TTY's from the system. This implementation has a two-step destructing design, where the driver first abandons the TTY. After all threads have left the TTY, the TTY layer calls a routine in the driver, which can be used to free resources (unit numbers, etc). The pts(4) driver also implements this feature, which means posix_openpt() will now return PTY's that are created on the fly. - Improved performance: One of the major improvements is the per-TTY mutex, which is expected to improve scalability when compared to the old Giant locking. Another change is the unbuffered copying to userspace, which is both used on TTY device nodes and PTY masters. Upgrading should be quite straightforward. Unlike previous versions, existing kernel configuration files do not need to be changed, except when they reference device drivers that are listed in UPDATING. Obtained from: //depot/projects/mpsafetty/... Approved by: philip (ex-mentor) Discussed: on the lists, at BSDCan, at the DevSummit Sponsored by: Snow B.V., the Netherlands dcons(4) fixed by: kan Notes: svn path=/head/; revision=181905
* Add support for a new login capability, cpumask which allows loginBrooks Davis2008-07-251-0/+9
| | | | | | | sessions to be pinned to cpus by login class. Notes: svn path=/head/; revision=180815
* Fix markup in previous revision.Ruslan Ermilov2006-10-101-2/+5
| | | | Notes: svn path=/head/; revision=163193
* Add information on how to escape a literal colon in a value or name.Tom Rhodes2006-10-091-1/+5
| | | | | | | PR: 101262 Notes: svn path=/head/; revision=163186
* Recognize the existence of `auth' and `auth-type'Yaroslav Tykhiy2006-08-231-1/+6
| | | | | | | | | | | | | capabilities but tell they do nothing in the base system. This is a late responce to http://docs.freebsd.org/cgi/mid.cgi?ED759F1DC5ADD74592DD063B1EDEDAF803ACD2B5 . Obtained from: OpenBSD (wording; with minor corrections) Notes: svn path=/head/; revision=161545
* Document how the backoff delay is calculated.Christian Brueffer2006-04-191-1/+4
| | | | | | | | Submitted by: markus MFC after: 3 days Notes: svn path=/head/; revision=157874
* Fix grammatical issue.Tom Rhodes2005-02-271-4/+4
| | | | | | | Submitted by: ceri Notes: svn path=/head/; revision=142721
* Use ~/.login_conf when discussing a user's local file.Tom Rhodes2005-02-261-1/+1
| | | | | | | Suggested by: ru Notes: svn path=/head/; revision=142600
* Reword previous commit to be a bit more correct and provide more information.Tom Rhodes2005-02-251-5/+13
| | | | | | | Inspiried by: ru Notes: svn path=/head/; revision=142411
* Make it more obvious that cap_mkdb(1) is required to rebuild the database.Tom Rhodes2005-02-231-0/+7
| | | | | | | | PR: 76981 Submitted by: Lowell Gilbert <freebsd-bugs-local@be-well.ilk.org> Notes: svn path=/head/; revision=142330
* Spell FTP correctly - in this case, it is used as the name of the protocol,Peter Pentchev2004-08-061-2/+2
| | | | | | | | | not the program. Also, bump the document date. Reminded by: our resident mdoc guard (ru) Notes: svn path=/head/; revision=133210
* Add Giorgos's description of the ftp-chroot login.conf option.Peter Pentchev2004-08-061-0/+10
| | | | | | | | | Reported by: Bill Moran <wmoran@potentialtech.com> Submitted by: keramida MFC after: 2 weeks Notes: svn path=/head/; revision=133206
* Mechanically kill hard sentence breaks.Ruslan Ermilov2004-07-021-1/+1
| | | | Notes: svn path=/head/; revision=131504
* Backout last commit. It is redundant in -CURRENT.Murray Stokely2003-05-051-5/+1
| | | | | | | Pointed out by: David Schultz Notes: svn path=/head/; revision=114703
* Note that the idletime setting is not enforced.Murray Stokely2003-05-041-1/+5
| | | | | | | | PR: docs/40952 MFC After: 3 days Notes: svn path=/head/; revision=114675
* Document the login-backoff and login-retries capabilities.Murray Stokely2003-05-041-0/+5
| | | | | | | | PR: docs/51397 MFC After: 3 days Notes: svn path=/head/; revision=114648
* Re-document unimplemented capabilities that were removed in the lastDavid Schultz2003-03-051-0/+57
| | | | | | | | | | | revision of this file, but note that they are not supported in the base system. Requested by: ache Reviewed by: ache, mike (mentor) Notes: svn path=/head/; revision=111891
* - Document the fact that we now use pam_passwdqc(8) to checkDavid Schultz2003-03-031-58/+16
| | | | | | | | | | | | | | | password quality, not login.conf(5). - Move warnexpire and warnpasswd from the ``Accounting Limits'' section to ``Authentication'', and nix everything else in the former section. The accounting knobs are not available in the base system, and the subset of them available in ports should be documented in the ports' manpages. PR: 47960 Reviewed by: mike (mentor), doc Notes: svn path=/head/; revision=111791
* Document the `label' capability.Chris Costello2002-11-221-0/+2
| | | | | | | | | Approved by: re Sponsored by: DARPA, Network Associates Labs Obtained from: TrustedBSD Project Notes: svn path=/head/; revision=107177
* Use "deprecated" instead of "depreciated" where appropriate.Sheldon Hearn2002-10-301-1/+1
| | | | Notes: svn path=/head/; revision=106194
* mdoc(7) police: spelling.Ruslan Ermilov2002-08-091-1/+1
| | | | Notes: svn path=/head/; revision=101582
* Add documentation for vmemoryuseMatthew Dillon2002-06-261-0/+1
| | | | Notes: svn path=/head/; revision=98852
* o Document 'nocheckmail' login capability.Robert Watson2001-11-161-0/+1
| | | | Notes: svn path=/head/; revision=86451
* Although the 'bool' type is referenced in the list of capabilities, itRobert Watson2001-11-161-0/+3
| | | | | | | | | | is not defined in the capability type list. Provide a definition for 'bool', if a slightly less than elegant one. Note that this definition does not include the complete scope of available behavior defined in cgetcap(3), and could probably be improved. Notes: svn path=/head/; revision=86444
* 1) Back out ~/.login_conf disableAndrey A. Chernov2001-09-251-2/+0
| | | | | | | 2) Pick only "me" class from ~/.login_conf as documented Notes: svn path=/head/; revision=83923
* Disable per-user .login_conf support due to incorrect merging of localRobert Watson2001-09-161-0/+2
| | | | | | | | | and globaly settings. An alternative implementation will be developed. Reported by: Przemyslaw Frasunek <venglin@freebsd.lublin.pl> Notes: svn path=/head/; revision=83550
* Remove whitespace at EOL.Dima Dorfman2001-07-151-1/+1
| | | | Notes: svn path=/head/; revision=79754
* mdoc(7) police: removed HISTORY info from the .Os call.Ruslan Ermilov2001-07-101-1/+1
| | | | Notes: svn path=/head/; revision=79531
* mdoc(7) police: remove extraneous .Pp before and/or after .Sh.Dima Dorfman2001-07-091-3/+0
| | | | Notes: svn path=/head/; revision=79454
* Sort.David E. O'Brien2001-05-181-23/+24
| | | | Notes: svn path=/head/; revision=76787
* Add the "prompt" and "passwd_prompt" fields to /etc/login.conf,David E. O'Brien2001-05-181-0/+4
| | | | | | | | | which makes lgoin more like getty in its ability to be configured. Submitted by: tlambert (code only) Notes: svn path=/head/; revision=76786
* Updates for Blowfish password hashing.Mark Murray2001-03-111-1/+1
| | | | Notes: svn path=/head/; revision=74107
* Prepare for mdoc(7)NG.Ruslan Ermilov2001-01-161-1/+1
| | | | Notes: svn path=/head/; revision=71097
* Prepare for mdoc(7)NG.Ruslan Ermilov2000-12-291-63/+63
| | | | Notes: svn path=/head/; revision=70481
* mdoc(7) police: use the new features of the Nm macro.Ruslan Ermilov2000-11-201-1/+1
| | | | Notes: svn path=/head/; revision=68945
* Use Fx macro wherever possible.Ruslan Ermilov2000-11-141-2/+6
| | | | Notes: svn path=/head/; revision=68716
* Document passwd_format further.Brian Feldman2000-09-301-0/+4
| | | | Notes: svn path=/head/; revision=66470