diff options
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/bitlbee.8 | 2 | ||||
| -rw-r--r-- | doc/bitlbee.xinetd | 11 | ||||
| -rw-r--r-- | doc/example_plugin.c | 3 | ||||
| -rw-r--r-- | doc/user-guide/commands.xml | 16 | 
4 files changed, 26 insertions, 6 deletions
| diff --git a/doc/bitlbee.8 b/doc/bitlbee.8 index f1d4dbce..201e366e 100644 --- a/doc/bitlbee.8 +++ b/doc/bitlbee.8 @@ -115,7 +115,7 @@ along with this program; if not, write to the Free Software  Foundation, Inc., 59 Temple PLace, Suite 330, Boston, MA  02111-1307  USA  .SH AUTHORS  .PP - Wilmer van der Gaast <lintux@lintux.cx> + Wilmer van der Gaast <wilmer@gaast.net>  .BR   Jelmer Vernooij <jelmer@vernstok.nl>  .BR diff --git a/doc/bitlbee.xinetd b/doc/bitlbee.xinetd index 5f05e26e..88d02013 100644 --- a/doc/bitlbee.xinetd +++ b/doc/bitlbee.xinetd @@ -13,7 +13,12 @@ service ircd  	user            = nobody  	server          = /usr/local/sbin/bitlbee -	## xinetd is fucking retarded, what's the use of this port flag if -	## it HAS to be the same as in /etc/services ? -	# port		= 6667 +	## You might want to limit access to localhost only: +	# bind            = 127.0.0.1 +	 +	## Thanks a lot to friedman@splode.com for telling us about the type +	## argument, so now this file can be used without having to edit +	## /etc/services too. +	type            = UNLISTED +	port            = 6667  } diff --git a/doc/example_plugin.c b/doc/example_plugin.c index 38d02260..a33907a8 100644 --- a/doc/example_plugin.c +++ b/doc/example_plugin.c @@ -2,10 +2,11 @@   * This is the most simple possible BitlBee plugin. To use, compile it as    * a shared library and place it in the plugin directory:    * - * gcc -o example.so -shared example.c + * gcc -o example.so -shared example.c `pkg-config --cflags bitlbee`   * cp example.so /usr/local/lib/bitlbee   */  #include <stdio.h> +#include <bitlbee.h>  void init_plugin(void)  { diff --git a/doc/user-guide/commands.xml b/doc/user-guide/commands.xml index b04a6b0a..44a9882f 100644 --- a/doc/user-guide/commands.xml +++ b/doc/user-guide/commands.xml @@ -140,6 +140,7 @@  	<bitlbee-command name="add">  		<short-description>Add a buddy to your contact list</short-description>  		<syntax>add <connection> <handle> [<nick>]</syntax> +		<syntax>add -tmp <connection> <handle> [<nick>]</syntax>  		<description>  			<para> @@ -149,6 +150,10 @@  			<para>  				If you want, you can also tell BitlBee what nick to give the new contact. Of course you can also use the <emphasis>rename</emphasis> command for that, but sometimes this might be more convenient.  			</para> +			 +			<para> +				Adding -tmp adds the buddy to the internal BitlBee structures only, not to the real contact list (like done by <emphasis>set handle_unknown add</emphasis>). This allows you to talk to people who are not in your contact list. +			</para>  		</description>  		<ircexample> @@ -196,11 +201,16 @@  		<short-description>Block someone</short-description>  		<syntax>block <nick></syntax>  		<syntax>block <connection> <handle></syntax> +		<syntax>block <connection></syntax>  		<description>  			<para>  				Puts the specified user on your ignore list. Either specify the user's nick when you have him/her in your contact list or a connection number and a user handle.  			</para> +			 +			<para> +				When called with only a connection specification as an argument, the command displays the current block list for that connection. +			</para>  		</description>  	</bitlbee-command> @@ -213,6 +223,10 @@  			<para>  				Reverse of block. Unignores the specified user or user handle on specified connection.  			</para> +			 +			<para> +				When called with only a connection specification as an argument, the command displays the current allow list for that connection. +			</para>  		</description>  	</bitlbee-command> @@ -606,7 +620,7 @@  			</para>  			<para> -				To identify yourself in later sessions, you can use the <emphasis>identify</emphasis> command. +				To identify yourself in later sessions, you can use the <emphasis>identify</emphasis> command. To change your password later, you can use the <emphasis>set password</emphasis> command.  			</para>  		</description> | 
