summary refs log tree commit diff
path: root/doc
AgeCommit message (Collapse)Author
2011-07-10Updated doc/Platforms.txt for ngIRCd release 18Alexander Barton
2011-07-10Add preliminary ngIRCd protocol module for Anope 1.9Alexander Barton
See contrib/Anope/README and doc/Services.txt for more details and installation instructions!
2011-06-28Fix some wording, use spellchecker ;-)Alexander Barton
2011-06-28doc/SSL.txt: adopt to new configuration file layoutAlexander Barton
2011-06-26Merge branch 'MorePrivacy'Alexander Barton
* MorePrivacy: New configuration opion "MorePrivacy" to "censor" some user information
2011-06-26sample-ngircd.conf: remove "SSL" prefix from SSL-related variablesAlexander Barton
2011-06-26Merge branch 'ScrubCTCP'Alexander Barton
* ScrubCTCP: Add documentation for "ScrubCTCP" configuration option New option to scrub incoming CTCP commands
2011-06-26Merge branch 'newconfig'Alexander Barton
* newconfig: sample-ngircd.conf: "SyslogFacility" should be commented out Move SSL-related configuration variables to new [SSL] section CheckFileReadable(): only check when a filename is given ... PAM: make clear which "Password" config option is ignored Really remove [Features] in our manual pages INSTALL: document changed location of configuration variables Update sample config file and manual page for new config structure Testsuite: update configuration files for new config file format Display configuration errors more prominent on "--configtest" conf.c: code cleanup Check for redability of SSL-related files like for MOTD file Restructure ngIRCd configuration, introduce [Limits] and [Options]
2011-06-26sample-ngircd.conf: "SyslogFacility" should be commented outAlexander Barton
2011-06-26Move SSL-related configuration variables to new [SSL] sectionAlexander Barton
2011-06-25Add documentation for "ScrubCTCP" configuration optionxor
2011-06-25New configuration opion "MorePrivacy" to "censor" some user informationxor
this patch contains: * Fix for Conf_CloakUserToNick to make it conceal user details * Adds MorePrivacy-feature MorePrivacy censors some user information from being reported by the server. Signon time and idle time is censored. Part and quit messages are made to look the same. WHOWAS requests are silently dropped. All of this is useful if one wish to conceal users that access the ngircd servers from TOR or I2P.
2011-06-25Update sample config file and manual page for new config structureAlexander Barton
2011-06-24New documentation: "how to contribute"Alexander Barton
2011-06-04ssl: gnutls: bump dh bitsize to 2048Florian Westphal
problem is that some clients refuse to connect to severs that only offer 1024. For interoperability it would be best to just use 4096, but that takes minutes, even on current hardware.
2011-03-27Merge branch 'AuthPing'Alexander Barton
* AuthPing: Add documentation for "RequireAuthPing" configuration option New configuration option "RequireAuthPing": PING-PONG on login
2011-03-27Add documentation for "NoticeAuth" configuration optionAlexander Barton
2011-03-27Add documentation for "RequireAuthPing" configuration optionAlexander Barton
2011-03-25Update doc/GIT.txtAlexander Barton
2011-03-19Merge branches 'CloakUserHost', 'QuitOnHTTP' and 'bug72-WHOIS-List'Alexander Barton
* CloakUserHost: Add a note not to use a percent sign ("%") in CloakHost variable Rename ClientHost to CloakHost, and ClientUserNick to CloakUserToNick Don't use "the.net" in sample-ngircd.conf, use "example.net" ngircd.conf.5: document "ClientHost" and "ClientUserNick" Move "ClientHost" and "ClientUserNick" to end of [Global] section ClientUserNick setting ClientHost setting * QuitOnHTTP: Only "handle" HTTP commands on unregistered connections Don't use IRC_QUIT_HTTP() if STRICT_RFC is #define'd IRC_QUIT_HTTP(): enhance error message Move IRC_QUIT_HTTP() below IRC_QUIT() quit on HTTP commands: GET & POST * bug72-WHOIS-List: Add "whois-test" to testsuite and distribution archive Add support for up to 3 targets in WHOIS queries.
2011-03-19Add a note not to use a percent sign ("%") in CloakHost variableAlexander Barton
The percent sign is reserved for future extensions, for example to expand some variables like %H to a hash value of the real host name ... Idea by kaFux in #ngircd.
2011-03-19Rename ClientHost to CloakHost, and ClientUserNick to CloakUserToNickAlexander Barton
2011-03-19Doxygen: Remove header.inc.html and ngircd-doc.css from distributionAlexander Barton
2011-03-18Don't use "the.net" in sample-ngircd.conf, use "example.net"Alexander Barton
"the.net" is an existing domain of the Texas Higher Education Network ... See RFC 2606.
2011-03-16Move "ClientHost" and "ClientUserNick" to end of [Global] sectionAlexander Barton
2011-03-16ClientUserNick settingGabor Adam Toth
2011-03-16ClientHost settingGabor Adam Toth
2011-02-17Protocol.txt: Update description of CHANINFO commandAlexander Barton
2011-02-13Enhance documentation for the WEBIRC commandAlexander Barton
2011-02-13Doxygen: define ZLIB, PAM, and ZEROCONFAlexander Barton
2011-02-13Updated Doxygen configuration fileAlexander Barton
Removed unnecessary variables DETAILS_AT_TOP, EXTRACT_PRIVATE, EXTRACT_LOCAL_CLASSES, added SHOW_DIRECTORIES=YES, STRIP_CODE_COMMENTS=NO, REFERENCED_BY_RELATION=YES, REFERENCES_RELATION=YES, HTML_DYNAMIC_SECTIONS=YES and GENERATE_DOCSET=NO; updated PREDEFINED.
2011-02-13Doxygen: remove own header and CSS fileAlexander Barton
Use the ones of Doxygen instead, this has the advantage that we benefit of new functionality of Doxygen without having to make changes.
2011-01-10Remove ZeroConf variable from sample-ngircd.confAlexander Barton
2011-01-09Remove support for ZeroConf/Bonjour/Rendezvous service registrationAlexander Barton
2011-01-09conf: move 'run-time-feature-disable' options to new FEATURE sectionFlorian Westphal
2011-01-09config: deprecate NoXX-OptionsFlorian Westphal
ngircd unfortunately uses several options using double-negation, e.g. NoIdent = No, NoPam = No, etc. This renames all options by dropping the "No" prefix, e.g. "NoIdent = no" becomes "Ident = yes". The old options will continue to work, but will cause a warning message. Also update man pages and default config. To prevent silly 'Ident = yes' from appearing in --configtest output in the 'ident support not compiled in and Ident Option not used' case, make default value depend on feature availability. If feature is available, enable by default, otherwise disable. We might consider moving these options to a new [Feature] section, or something like that, because none of these options are essential. Another possible improvement: 'Ident = yes' option in ngircd.conf causes a warning if ngircd was built without ident support. This does not happen with e.g. zeroconf....
2010-11-15add doc/README-Interix.txt and doc/Bopm.txt to distribution tarballAlexander Barton
2010-11-14add doc/PAM.txt to distribution tarballFlorian Westphal
doc/PAM.txt was not included in the release tarball. reported by Christoph Biedl.
2010-11-07Updated doc/Platforms.txt for upcoming release 17Alexander Barton
2010-11-03Fix up generation and distribution of sample-ngircd.confAlexander Barton
- Add generated sample-ngircd.conf to new .gitignore file, - refactor Makefile.am to generate sample-ngircd.conf on "make all", to clean it up on "make clean", and to install it to the correct place. - Make sure path names in sample-ngircd.conf are separated by "/".
2010-11-03doc: change path names in sample-ngircd.conf depending on sysconfdirFlorian Westphal
2010-10-25New doc/HowToRelease.txt file describing the release processAlexander Barton
2010-10-19Added m68k/apple/aux3.0.1 (gcc 2.7.2) to doc/Platforms.txtAlexander Barton
2010-10-13doc/Makefile.am: don¹t set docdir, automake handles it alreadyAlexander Barton
And elder make(1) programs don¹t like "x ?= y" ...
2010-10-11New configuration option "NoZeroConf" to disable ZeroConf registrationAlexander Barton
If ngIRCd is compiled to register its services using ZeroConf (e.g. using Howl, Avahi or on Mac OS X) this parameter can be used to disable service registration at runtime.
2010-10-07doc/Platforms.txt: added NetBSD 5.0.2Alexander Barton
2010-10-05Updated doc/Platforms.txtAlexander Barton
2010-09-24New configuration option "SyslogFacility"Alexander Barton
The new option "SyslogFacility" deines the syslog "facility" to which ngIRCd should send log messages. Possible values are system dependant, but most probably "auth", "daemon", "user" and "local1" through "local7" are possible values; see syslog(3). Default is "local5" for historical reasons.
2010-08-17Make configure switch "--docdir" work (closes: #108)Alexander Barton
2010-08-13Reformat and update FAQ.txt a little bitAlexander Barton