Changeset c55701e
- Timestamp:
- 2010-08-30T19:58:33Z (14 years ago)
- Branches:
- master
- Children:
- fda55fa
- Parents:
- df61c35a
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/user-guide/commands.xml
rdf61c35a rc55701e 73 73 74 74 <para> 75 By default all your Twitter contacts will come from a contact called twitter_(yourusername). You can change this behaviour using the <emphasis>mode</emphasis> setting (see <emphasis>help set mode</emphasis>).75 By default all your Twitter contacts will appear in a new channel called #twitter_yourusername. You can change this behaviour using the <emphasis>mode</emphasis> setting (see <emphasis>help set mode</emphasis>). 76 76 </para> 77 77 … … 811 811 <bitlbee-setting name="mode" type="string" scope="account"> 812 812 <possible-values>one, many, chat</possible-values> 813 <default>one</default> 814 815 <description> 816 <para> 817 By default, everything from the Twitter module will come from one nick, twitter_(yourusername). If you prefer to have individual nicks for everyone, you can set this setting to "many" instead. 818 </para> 819 820 <para> 821 If you prefer to have all your Twitter things in a separate channel, you can set this setting to "chat". 822 </para> 823 824 <para> 825 In the last two modes, you can send direct messages by /msg'ing your contacts directly. Note, however, that incoming DMs are not fetched yet. 813 <default>chat</default> 814 815 <description> 816 <para> 817 By default, BitlBee will create a separate channel (called #twitter_yourusername) for all your Twitter contacts/messages. 818 </para> 819 820 <para> 821 If you don't want an extra channel, you can set this setting to "one" (everything will come from one nick, twitter_yourusername), or to "many" (individual nicks for everyone). 822 </para> 823 824 <para> 825 With modes "chat" and "many", you can send direct messages by /msg'ing your contacts directly. Note, however, that incoming DMs are not fetched yet. 826 </para> 827 828 <para> 829 With modes "many" and "one", you can post tweets by /msg'ing the twitter_yourusername contact. In mode "chat", messages posted in the Twitter channel will also be posted as tweets. 826 830 </para> 827 831 </description> -
protocols/twitter/twitter.c
rdf61c35a rc55701e 195 195 s = set_add( &acc->set, "message_length", "140", set_eval_int, acc ); 196 196 197 s = set_add( &acc->set, "mode", " one", set_eval_mode, acc );197 s = set_add( &acc->set, "mode", "chat", set_eval_mode, acc ); 198 198 s->flags |= ACC_SET_OFFLINE_ONLY; 199 199
Note: See TracChangeset
for help on using the changeset viewer.