From e506d6ce40dd357e29a7c856ab2b664df69cf015 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Thu, 2 Mar 2006 12:38:33 +0100 Subject: Install bitlbee's header files and a pkg-config file. This means that 3rd-parties can write support for additional protocols in BitlBee. --- doc/example_plugin.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'doc') 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 +#include void init_plugin(void) { -- cgit v1.2.3 From 9b8efab1327b0263871fd95fc8612a21c7bb2389 Mon Sep 17 00:00:00 2001 From: Wilmer van der Gaast Date: Tue, 21 Mar 2006 09:38:15 +0100 Subject: Updated documentation for the new block/allow syntax. Yes, it's slightly ambiguous now, but it shouldn't cause problems. --- doc/user-guide/commands.xml | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'doc') diff --git a/doc/user-guide/commands.xml b/doc/user-guide/commands.xml index b04a6b0a..fd803801 100644 --- a/doc/user-guide/commands.xml +++ b/doc/user-guide/commands.xml @@ -196,11 +196,16 @@ Block someone block <nick> block <connection> <handle> + block <connection> 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. + + + When called with only a connection specification as an argument, the command displays the current block list for that connection. + @@ -213,6 +218,10 @@ Reverse of block. Unignores the specified user or user handle on specified connection. + + + When called with only a connection specification as an argument, the command displays the current allow list for that connection. + -- cgit v1.2.3 From 9e08d5d5ba8958807158d7afaedd40e60cfb40ff Mon Sep 17 00:00:00 2001 From: Wilmer van der Gaast Date: Fri, 7 Apr 2006 21:27:58 +0200 Subject: Got rid of some old e-mail addresses. --- doc/bitlbee.8 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') 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 + Wilmer van der Gaast .BR Jelmer Vernooij .BR -- cgit v1.2.3 From 1be54a9f9590beeec71e32bd3386c6e8aa60bcad Mon Sep 17 00:00:00 2001 From: Wilmer van der Gaast Date: Fri, 5 May 2006 18:12:50 +0200 Subject: Closing #132. --- doc/user-guide/commands.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/user-guide/commands.xml b/doc/user-guide/commands.xml index fd803801..bd6e6c26 100644 --- a/doc/user-guide/commands.xml +++ b/doc/user-guide/commands.xml @@ -615,7 +615,7 @@ - To identify yourself in later sessions, you can use the identify command. + To identify yourself in later sessions, you can use the identify command. To change your password later, you can use the set password command. -- cgit v1.2.3 From 2b13c3c90d246ce032890fd8cd040ddb00c2767e Mon Sep 17 00:00:00 2001 From: Wilmer van der Gaast Date: Fri, 5 May 2006 18:23:53 +0200 Subject: Better xinetd file, thanks to friedman@splode.com (#129). --- doc/bitlbee.xinetd | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'doc') 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 } -- cgit v1.2.3 From ea3a26d921acd43a627f750eb9aa7949ba2036a5 Mon Sep 17 00:00:00 2001 From: Wilmer van der Gaast Date: Fri, 5 May 2006 18:31:57 +0200 Subject: Added add -tmp to the docs. --- doc/user-guide/commands.xml | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'doc') diff --git a/doc/user-guide/commands.xml b/doc/user-guide/commands.xml index bd6e6c26..fa189f7c 100644 --- a/doc/user-guide/commands.xml +++ b/doc/user-guide/commands.xml @@ -140,6 +140,7 @@ Add a buddy to your contact list add <connection> <handle> [<nick>] + add -tmp <connection> <handle> [<nick>] @@ -149,6 +150,10 @@ If you want, you can also tell BitlBee what nick to give the new contact. Of course you can also use the rename command for that, but sometimes this might be more convenient. + + + Adding -tmp only adds the buddy to the internal BitlBee structures, not to the real contact list (like done by set handle_unknown add). This allows you to talk to people outside your contact list. + -- cgit v1.2.3 From 64d1f45ed9ccfd90ba17592ac980dcb3436f9548 Mon Sep 17 00:00:00 2001 From: Wilmer van der Gaast Date: Sun, 7 May 2006 13:22:46 +0200 Subject: Slightly different wording for add -tmp. --- doc/user-guide/commands.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/user-guide/commands.xml b/doc/user-guide/commands.xml index fa189f7c..44a9882f 100644 --- a/doc/user-guide/commands.xml +++ b/doc/user-guide/commands.xml @@ -152,7 +152,7 @@ - Adding -tmp only adds the buddy to the internal BitlBee structures, not to the real contact list (like done by set handle_unknown add). This allows you to talk to people outside your contact list. + Adding -tmp adds the buddy to the internal BitlBee structures only, not to the real contact list (like done by set handle_unknown add). This allows you to talk to people who are not in your contact list. -- cgit v1.2.3