Browse Source

Uncheck "Trust invalid authority certificates" when adding new Services

Most users will use the default values and will therefore have an insecure setup.
The result can be Man-in-the-Middle or other attacks on rambox users when using default settings!
pull/1238/head
madblobfish 8 years ago
parent
commit
7dced6925d
  1. 2
      app/view/add/Add.js

2
app/view/add/Add.js

@ -191,7 +191,7 @@ Ext.define('Rambox.view.add.Add',{
,boxLabel: locale['app.window[19]']
,name: 'trust'
,hidden: me.record.get('type') !== 'custom'
,checked: me.edit ? me.record.get('trust') : true
,checked: me.edit ? me.record.get('trust') : false
,uncheckedValue: false
,inputValue: true
}

Loading…
Cancel
Save