about summary refs log tree commit diff
path: root/doc/sample-ngircd.conf.tmpl
AgeCommit message (Collapse)Author
2011-06-28Fix some wording, use spellchecker ;-)Alexander 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-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-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-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-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-01-10Remove ZeroConf variable from sample-ngircd.confAlexander 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-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