aboutsummaryrefslogtreecommitdiffstats
path: root/doc/user-guide
Commit message (Collapse)AuthorAgeLines
* jabber: Add "always_use_nicks" setting, for non-anonymous MUCsdequis2016-03-20-0/+18
| | | | | | | | | Basically the same thing as github PR #55, which fixes trac bug 415, but this one conditionalized that behavior and uses the API introduced a few commits ago. I didn't think too much about the setting name and i'm open to changing it to anything else
* Prepare 3.4.2 release notesdequis2016-03-12-0/+17
|
* 'help set self_messages': link to wiki pagedequis2015-12-30-0/+4
|
* Remove facebook XMPP code, show error pointing at the new plugindequis2015-12-04-2/+2
| | | | | | | | | | | | | | Facebook's oauth has been broken for months, and in the last few days they broke plain logins too, so I just added an error message that says this when you do "account on": Facebook's XMPP service is gone. Try this instead: https://wiki.bitlbee.org/HowtoFacebookMQTT Also nuked all the oauth related code, except some parts of lib/oauth2.c which seemed generic enough to maybe help in the future with other not-really-compliant not-really-implementations of the not-really-oauth2 not-really-spec
* jabber: Implement carbons (XEP-0280)dequis2015-11-21-0/+16
| | | | | | | | | | | | | | "Message carbons" (XEP-0280) is a server feature to get copies of outgoing messages sent from other clients connected to the same account. It's not widely supported by most public XMPP servers (easier if you host your own), but this will probably change in the next few years. This is enabled by default if the server supports it. It can also be disabled with the "carbons" account setting. Loosely based on a patch by kormat from trac ticket 1021. (Thanks!) I moved stuff around, simplified things, fixed a few bugs, and used the new self-messages feature.
* Update twitter's "help set mode" to mention that DMs are now fetcheddequis2015-11-08-1/+1
|
* IRC self-message support (messages sent by yourself from other clients)dequis2015-10-30-0/+27
| | | | | | | | | | | | | | | | | | | | | | This adds an OPT_SELFMESSAGE flag that can be passed to imcb_buddy_msg() or imcb_chat_msg() to indicate that the protocol knows that the message being sent is a self message. This needs to be explicit since the old behavior is to silently drop these messages, which also removed server echoes. This commit doesn't break API/ABI, the flags parameters that were added are all internal (between protocols and UI code) On the irc protocol side, the situation isn't very nice, since some clients put these messages in the wrong window. Irssi, hexchat and mirc get this wrong. Irssi 0.8.18 has a fix for it, and the others have scripts to patch it. But meanwhile, there's a "self_messages" global setting that lets users disable this, or get them as normal messages / notices with a "->" prefix, which loosely imitates the workaround used by the ZNC "privmsg_prefix" module.
* Update 'help set show_users' to mention special and the new defaultdequis2015-10-25-4/+5
| | | | It was added a while ago.
* Fix typoMohammed Attia2015-10-08-1/+1
|
* user-guide: add help for the jabber 'proxy' settingdequis2015-08-27-0/+20
|
* typofix - https://github.com/vlajos/misspell_fixerVeres Lajos2015-08-07-6/+6
|
* jabber: Add SASL ANONYMOUS support (XEP-0175)dequis2015-07-04-0/+15
| | | | Use "account jabber set anonymous on" to have bitlbee try that method
* 3.4.1 release notesdequis2015-06-14-0/+12
|
* configure: allow specifying location of python executabledequis2015-06-04-1/+8
| | | | | Because openbsd/netbsd don't have a 'python' in the PATH unless the user creates the symlink explicitly.
* Allow building docs from any directorydequis2015-06-04-2/+6
| | | | | Also just remove the .git check completely - just rely on make skipping it if it exists already.
* Rename mail notification related settings for consistencydequis2015-05-28-13/+2
| | | | | - GMail notifications stuff is now just 'mail_notifications' - sed -i s/notify_handle/mail_notifications_handle/
* Gmail notifications support through new imcb_notify_email() APIArtem Savkov2015-05-28-0/+22
|
* Build only help.txt (with genhelp.py), create 'user-guide' targetdequis2015-05-17-5/+4
| | | | | Since user-guide.{txt,html} aren't normally needed for anything and add xsltproc/xmlto as dependencies.
* genhelp.py: take input/output parametersdequis2015-05-17-5/+11
|
* genhelp.py: Comments!dequis2015-05-16-9/+66
|
* Add python script to generate help.txt, replacing xslt stuffdequis2015-05-16-0/+165
| | | | | | | | | | | | | | | | This would mean changing one build dependency for another, but one that is way more common at least. (Fun fact: the xslt stuff depends on perl) It generates *almost* the same thing as the xslt - a bit better if you ask me, since it correctly handles a few <emphasis> tags in the middle of the text, which were previously stripped. One example of that is: Favo<emphasis>u</emphasis>rite the given user [...] Outputs "Favo\x02u\x02rite" with this script, "Favorite" with the xslt. (That's actually an accidental feature) The script works in python2 and python3 and only uses the stdlib
* Add "url" command to Twitter module to get web URL for a Tweet.Wilmer van der Gaast2015-05-02-1/+2
|
* Prepare for 3.4 releasedequis2015-03-15-0/+24
|
* Revert "Twitter format strings"dequis2015-02-20-62/+0
| | | | | | This reverts commit ce402b20d82ec323e6bd5e306de934773590742d. See discussion in PR #10 for more details.
* Twitter format stringsWilliam Pettersson2015-01-26-0/+62
| | | | | | | | | | | Allow users to specify how tweets should be displayed 3 new settings are available to set how tweets are displayed: - twitter_format_string for normal tweets - retweet_format_string for retweets - reply_format_string for replies For full documentation see the help files
* twitter: Add raw reply supportWilliam Pettersson2015-01-26-0/+1
| | | | | | | By default, "reply" prepends the username of the tweet being replied to. This adds support for a "rawreply" command which does not prepend this username. This is useful for "replying" to your own tweet to maintain a chain of tweets on a singular topic.
* jabber: Account-wide display_name setting, for groupchatsdequis2015-01-25-1/+7
| | | | | This sets the default value of 'nick' for newly created groupchats. There is no way to set an account-wide nick.
* Pass generate.consistent.ids flag to xsltproc so id tags in HTML output willWilmer van der Gaast2014-09-21-1/+1
| | | | | | no longer be randomised, so when you generate the file from the same input, it will in fact generate the same output.
* Allow filtering of blist outputtribut2014-07-24-1/+5
| | | | | Add an (optional) second parameter to blist. If present, it is treated as regex and used to filter the result list.
* 3.2.2. Last revisions pretty much all done and/or merged by dx!3.2.2Wilmer van der Gaast2014-07-05-0/+13
|
* close otr connections on quit, add 'otr disconnect *' commandunknown2014-02-07-1/+2
|
* Documentation for utf8_nicks setting.Wilmer van der Gaast2013-04-23-0/+14
|
* ! modified for control channel fill_by setting to for example create aWilmer van der Gaast2013-02-21-0/+4
| | | | | | separate control channel with all contacts *not* in a certain group/from a certain IM account/network, etc.
* Implement 'group info' command to list members of a group (#741)Miklos Vajna2013-02-09-2/+6
|
* Require StartTLS from all Jabber servers by default, like most clients doWilmer van der Gaast2013-01-06-3/+3
| | | | | these days.
* Preparing for 3.2 release, hopefully very soon.Wilmer van der Gaast2013-01-06-0/+10
|
* To address #991, adding a strict commands mode, where one has to use "post"Wilmer van der Gaast2012-11-25-1/+2
| | | | | to post tweets.
* Fix documentation for show_ids setting, it's on by default for a while already.Wilmer van der Gaast2012-11-25-1/+1
|
* Add help info for "stream" setting. Also, disable it for non-Twitter accounts.Wilmer van der Gaast2012-11-24-0/+15
|
* Update authors files to reflect the current state of things. I'd like toWilmer van der Gaast2012-10-29-1/+1
| | | | | | | | thank Jelmer and Maurits for their past contributions. Also, list Miklos, pesco, Geert, ulim and Marijn who have done some substantial contributions (recently).
* Merge Twitter favourite command from Flexo/#983. Leaving out the unfavouriteWilmer van der Gaast2012-09-15-0/+1
| | | | | | | | command for reasons given there. At this point there are loads of command and stuff is getting a little messy maybe.. :-/
* Twitter module cleanup: Both Twitter and identi.ca "modules" support OAuthWilmer van der Gaast2012-09-15-3/+3
| | | | | now.
* Commit two patches from RH package maintainer (#956).Wilmer van der Gaast2012-06-03-1/+1
|
* Update outdated help text for the handle_unknown setting.Wilmer van der Gaast2012-03-25-8/+3
|
* Merging report-spam patch for Twitter from Flexo. #923Wilmer van der Gaast2012-03-12-0/+1
|
* Rename SRCDIR directory to _SRCDIR_. I guess #907 was caused by SRCDIRWilmer van der Gaast2012-02-11-3/+3
| | | | | unexpectedly being set to something already.
* Stop talking about "the control channel" since there isn't necessarily justWilmer van der Gaast2012-02-11-15/+9
| | | | | one, since 3.0 already.
* Changelog update for 3.0.5. No clue yet when to release it, but we'reWilmer van der Gaast2012-02-11-0/+20
| | | | | probably getting close.
* Applied patch from #895, making show_old_mentions an integer setting insteadWilmer van der Gaast2012-02-10-0/+10
| | | | | of boolean so you can change the number of mentions being fetched.
* Take t.co URL lengthe^Wshortening into account when counting message lengthWilmer van der Gaast2012-02-08-0/+15
| | | | | | | before posting a Twitter message. Disable this functionality by default for identi.ca accounts. Hardcode post-t.co URL length to 20 since it's probably not going to change any time soon. Bug #855. Patch by Artem Savkov, thanks!