~jtaylor/ubuntu/oneiric/gajim/multiple-CVE

« back to all changes in this revision

Viewing changes to src/common/config.py

  • Committer: Bazaar Package Importer
  • Author(s): Nafallo Bjälevik
  • Date: 2009-06-12 13:49:19 UTC
  • mto: (1.5.1 squeeze)
  • mto: This revision was merged to the branch mainline in revision 40.
  • Revision ID: james.westby@ubuntu.com-20090612134919-q5i1vj7b4pubx281
Tags: upstream-0.12.2
Import upstream version 0.12.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
80
80
                'notify_on_new_message': [ opt_bool, True ],
81
81
                'autopopupaway': [ opt_bool, False ],
82
82
                'use_notif_daemon': [ opt_bool, True , _('Use D-Bus and Notification-Daemon to show notifications') ],
83
 
                'ignore_unknown_contacts': [ opt_bool, False ],
84
83
                'showoffline': [ opt_bool, False ],
85
84
                'show_transports_group': [ opt_bool, True ],
86
85
                'autoaway': [ opt_bool, True ],
136
135
                'gc-hpaned-position': [opt_int, 430],
137
136
                'gc_refer_to_nick_char': [opt_str, ',', _('Character to add after nickname when using nick completion (tab) in group chat.')],
138
137
                'gc_proposed_nick_char': [opt_str, '_', _('Character to propose to add after desired nickname when desired nickname is used by someone else in group chat.')],
 
138
                'msgwin-max-state': [opt_bool, False],
139
139
                'msgwin-x-position': [opt_int, -1], # Default is to let the window manager decide
140
140
                'msgwin-y-position': [opt_int, -1], # Default is to let the window manager decide
141
141
                'msgwin-width': [opt_int, 500],
161
161
                'time_stamp': [ opt_str, '[%X] ', _('This option let you customize timestamp that is printed in conversation. For exemple "[%H:%M] " will show "[hour:minute] ". See python doc on strftime for full documentation: http://docs.python.org/lib/module-time.html') ],
162
162
                'before_nickname': [ opt_str, '', _('Characters that are printed before the nickname in conversations') ],
163
163
                'after_nickname': [ opt_str, ':', _('Characters that are printed after the nickname in conversations') ],
164
 
                'send_os_info': [ opt_bool, True ],
165
164
                'notify_on_new_gmail_email': [ opt_bool, True ],
166
165
                'notify_on_new_gmail_email_extra': [ opt_bool, False ],
167
166
                'use_gpg_agent': [ opt_bool, False ],
200
199
                'tabs_always_visible': [opt_bool, False, _('Show tab when only one conversation?')],
201
200
                'tabs_border': [opt_bool, False, _('Show tabbed notebook border in chat windows?')],
202
201
                'tabs_close_button': [opt_bool, True, _('Show close button in tab?')],
203
 
                'log_encrypted_sessions': [opt_bool, True, _('When negotiating an encrypted session, should Gajim assume you want your messages to be logged?')],
204
202
                'esession_modp': [opt_str, '5,14', _('A list of modp groups to use in a Diffie-Hellman, highest preference first, separated by commas. Valid groups are 1, 2, 5, 14, 15, 16, 17 and 18. Higher numbers are more secure, but take longer to calculate when you start a session.')],
205
203
                'chat_avatar_width': [opt_int, 52],
206
204
                'chat_avatar_height': [opt_int, 52],
306
304
                        'no_log_for': [ opt_str, '' ],
307
305
                        'minimized_gc': [ opt_str, '' ],
308
306
                        'attached_gpg_keys': [ opt_str, '' ],
309
 
                        'keep_alives_enabled': [ opt_bool, True],
 
307
                        'keep_alives_enabled': [ opt_bool, True, _('Whitespace sent after inactivity')],
 
308
                        'ping_alives_enabled': [ opt_bool, True, _('XMPP ping sent after inactivity')],
310
309
                        # send keepalive every N seconds of inactivity
311
310
                        'keep_alive_every_foo_secs': [ opt_int, 55 ],
312
 
                        'time_for_keep_alive_answer': [ opt_int, 30, _('How many seconds to wait for the answer of keepalive packet before we try to reconnect.') ],
313
 
                        # try for 2 minutes before giving up (aka. timeout after those seconds)
 
311
                        'ping_alive_every_foo_secs': [ opt_int, 120 ],
 
312
                        'time_for_ping_alive_answer': [ opt_int, 60, _('How many seconds to wait for the answer of ping alive packet before we try to reconnect.') ],
 
313
                        # try for 1 minutes before giving up (aka. timeout after those seconds)
314
314
                        'try_connecting_for_foo_secs': [ opt_int, 60 ],
315
315
                        'http_auth': [opt_str, 'ask'], # yes, no, ask
316
316
                        'dont_ack_subscription': [opt_bool, False, _('Jabberd2 workaround')],
338
338
                        'subscribe_activity': [opt_bool, True],
339
339
                        'subscribe_tune': [opt_bool, True],
340
340
                        'subscribe_nick': [opt_bool, True],
 
341
                        'ignore_unknown_contacts': [ opt_bool, False ],
 
342
                        'send_os_info': [ opt_bool, True ],
 
343
                        'log_encrypted_sessions': [opt_bool, True, _('When negotiating an encrypted session, should Gajim assume you want your messages to be logged?')],
341
344
                }, {}),
342
345
                'statusmsg': ({
343
346
                        'message': [ opt_str, '' ],