Optionally verify SSL connection to IRC servers
authorShane Synan <digitalcircuit36939@gmail.com>
Wed, 13 Jul 2016 23:17:30 +0000 (19:17 -0400)
committerManuel Nickschas <sputnick@quassel-irc.org>
Mon, 5 Sep 2016 20:31:24 +0000 (22:31 +0200)
commit5221b0b4d044d214539a1932a7a2eefbe88e4a66
tree6cf875446577bcd705cd8f3ff1b495125cdbeabf
parentaf787c6830e12c665572044db1beab65473607b9
Optionally verify SSL connection to IRC servers

Add SSL verify flag.
> In database, add 'sslverify' to 'server' table, defaulting to
false so upgrades won't break existing setups.  This modifies
schema, requiring a version bump, changes to migration scripts, etc.
> In protocol, add 'sslVerify' to Network::Server, configuring if
SSL errors should be ignored or result in disconnect.

Add 'VerifyServerSSL' feature flag so the client can tell users about
needing to upgrade their core to get this feature.

If SSL verification fails and...
> SSL verify enabled:  disconnect and trigger a retry, logging the
error message in the status buffer
> SSL verify disabled: log the error message at Info level and
continue connecting anyways

Add "Verify connection security" checkbox to network add/edit dialogs
with an explanatory tooltip.  Tooltip is modified and checkbox
disabled if the core does not support the feature.  Connections are
verified by default when "Use encrypted connection" is checked.

Change "Use SSL" and "Use secure connection" to
"Use encrypted connection" to better reflect what the option does.

Fix tooltips and other strings in network editing dialogs.

Testing:
> Database schema handling
SQLite new install - works
SQLite upgrade - works
SQLite migrate to Postgres - works
Postgres new install - works
Postgres upgrade - works

> Client/core connections
New client, new core - works
New client, old core - works, verify SSL grayed out
Old client, new core - works, verify SSL reset to false on edit
(Unfortunately there's no way to use a boolean and tell if the client
 is old, or actually setting verify SSL to false.  Would need the
 work-in-progress ClientFeature system 'esainane' designed)

(Not using '@mention' since that notifies on EVERY commit push)
184 files changed:
src/common/network.cpp
src/common/network.h
src/common/presetnetworks.cpp
src/common/quassel.h
src/core/SQL/PostgreSQL/18/delete_backlog_by_uid.sql [moved from src/core/SQL/PostgreSQL/17/delete_backlog_by_uid.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/delete_backlog_for_buffer.sql [moved from src/core/SQL/PostgreSQL/17/delete_backlog_for_buffer.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/delete_backlog_for_network.sql [moved from src/core/SQL/PostgreSQL/17/delete_backlog_for_network.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/delete_buffer_for_bufferid.sql [moved from src/core/SQL/PostgreSQL/17/delete_buffer_for_bufferid.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/delete_buffers_by_uid.sql [moved from src/core/SQL/PostgreSQL/17/delete_buffers_by_uid.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/delete_buffers_for_network.sql [moved from src/core/SQL/PostgreSQL/17/delete_buffers_for_network.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/delete_identity.sql [moved from src/core/SQL/PostgreSQL/17/delete_identity.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/delete_ircservers_for_network.sql [moved from src/core/SQL/PostgreSQL/17/delete_ircservers_for_network.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/delete_network.sql [moved from src/core/SQL/PostgreSQL/17/delete_network.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/delete_networks_by_uid.sql [moved from src/core/SQL/PostgreSQL/17/delete_networks_by_uid.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/delete_nicks.sql [moved from src/core/SQL/PostgreSQL/17/delete_nicks.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/delete_quasseluser.sql [moved from src/core/SQL/PostgreSQL/17/delete_quasseluser.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/insert_buffer.sql [moved from src/core/SQL/PostgreSQL/17/insert_buffer.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/insert_identity.sql [moved from src/core/SQL/PostgreSQL/17/insert_identity.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/insert_message.sql [moved from src/core/SQL/PostgreSQL/17/insert_message.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/insert_network.sql [moved from src/core/SQL/PostgreSQL/17/insert_network.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/insert_nick.sql [moved from src/core/SQL/PostgreSQL/17/insert_nick.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/insert_quasseluser.sql [moved from src/core/SQL/PostgreSQL/17/insert_quasseluser.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/insert_sender.sql [moved from src/core/SQL/PostgreSQL/17/insert_sender.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/insert_server.sql [moved from src/core/SQL/PostgreSQL/17/insert_server.sql with 79% similarity]
src/core/SQL/PostgreSQL/18/insert_user_setting.sql [moved from src/core/SQL/PostgreSQL/17/insert_user_setting.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/migrate_write_backlog.sql [moved from src/core/SQL/PostgreSQL/17/migrate_write_backlog.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/migrate_write_buffer.sql [moved from src/core/SQL/PostgreSQL/17/migrate_write_buffer.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/migrate_write_identity.sql [moved from src/core/SQL/PostgreSQL/17/migrate_write_identity.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/migrate_write_identity_nick.sql [moved from src/core/SQL/PostgreSQL/17/migrate_write_identity_nick.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/migrate_write_ircserver.sql [moved from src/core/SQL/PostgreSQL/17/migrate_write_ircserver.sql with 57% similarity]
src/core/SQL/PostgreSQL/18/migrate_write_network.sql [moved from src/core/SQL/PostgreSQL/17/migrate_write_network.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/migrate_write_quasseluser.sql [moved from src/core/SQL/PostgreSQL/17/migrate_write_quasseluser.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/migrate_write_sender.sql [moved from src/core/SQL/PostgreSQL/17/migrate_write_sender.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/migrate_write_usersetting.sql [moved from src/core/SQL/PostgreSQL/17/migrate_write_usersetting.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/select_authuser.sql [moved from src/core/SQL/PostgreSQL/17/select_authuser.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/select_bufferByName.sql [moved from src/core/SQL/PostgreSQL/17/select_bufferByName.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/select_bufferExists.sql [moved from src/core/SQL/PostgreSQL/17/select_bufferExists.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/select_buffer_by_id.sql [moved from src/core/SQL/PostgreSQL/17/select_buffer_by_id.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/select_buffer_lastseen_messages.sql [moved from src/core/SQL/PostgreSQL/17/select_buffer_lastseen_messages.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/select_buffer_markerlinemsgids.sql [moved from src/core/SQL/PostgreSQL/17/select_buffer_markerlinemsgids.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/select_buffers.sql [moved from src/core/SQL/PostgreSQL/17/select_buffers.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/select_buffers_for_network.sql [moved from src/core/SQL/PostgreSQL/17/select_buffers_for_network.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/select_checkidentity.sql [moved from src/core/SQL/PostgreSQL/17/select_checkidentity.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/select_connected_networks.sql [moved from src/core/SQL/PostgreSQL/17/select_connected_networks.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/select_identities.sql [moved from src/core/SQL/PostgreSQL/17/select_identities.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/select_internaluser.sql [moved from src/core/SQL/PostgreSQL/17/select_internaluser.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/select_messages.sql [moved from src/core/SQL/PostgreSQL/17/select_messages.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/select_messagesAll.sql [moved from src/core/SQL/PostgreSQL/17/select_messagesAll.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/select_messagesAllNew.sql [moved from src/core/SQL/PostgreSQL/17/select_messagesAllNew.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/select_messagesNewerThan.sql [moved from src/core/SQL/PostgreSQL/17/select_messagesNewerThan.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/select_messagesRange.sql [moved from src/core/SQL/PostgreSQL/17/select_messagesRange.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/select_networkExists.sql [moved from src/core/SQL/PostgreSQL/17/select_networkExists.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/select_network_awaymsg.sql [moved from src/core/SQL/PostgreSQL/17/select_network_awaymsg.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/select_network_usermode.sql [moved from src/core/SQL/PostgreSQL/17/select_network_usermode.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/select_networks_for_user.sql [moved from src/core/SQL/PostgreSQL/17/select_networks_for_user.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/select_nicks.sql [moved from src/core/SQL/PostgreSQL/17/select_nicks.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/select_persistent_channels.sql [moved from src/core/SQL/PostgreSQL/17/select_persistent_channels.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/select_senderid.sql [moved from src/core/SQL/PostgreSQL/17/select_senderid.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/select_servers_for_network.sql [moved from src/core/SQL/PostgreSQL/17/select_servers_for_network.sql with 63% similarity]
src/core/SQL/PostgreSQL/18/select_user_setting.sql [moved from src/core/SQL/PostgreSQL/17/select_user_setting.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/select_userid.sql [moved from src/core/SQL/PostgreSQL/17/select_userid.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/setup_000_quasseluser.sql [moved from src/core/SQL/PostgreSQL/17/setup_000_quasseluser.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/setup_010_sender.sql [moved from src/core/SQL/PostgreSQL/17/setup_010_sender.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/setup_020_identity.sql [moved from src/core/SQL/PostgreSQL/17/setup_020_identity.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/setup_030_identity_nick.sql [moved from src/core/SQL/PostgreSQL/17/setup_030_identity_nick.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/setup_040_network.sql [moved from src/core/SQL/PostgreSQL/17/setup_040_network.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/setup_050_buffer.sql [moved from src/core/SQL/PostgreSQL/17/setup_050_buffer.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/setup_060_backlog.sql [moved from src/core/SQL/PostgreSQL/17/setup_060_backlog.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/setup_070_coreinfo.sql [moved from src/core/SQL/PostgreSQL/17/setup_070_coreinfo.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/setup_080_ircservers.sql [moved from src/core/SQL/PostgreSQL/17/setup_080_ircservers.sql with 86% similarity]
src/core/SQL/PostgreSQL/18/setup_090_backlog_idx.sql [moved from src/core/SQL/PostgreSQL/17/setup_090_backlog_idx.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/setup_100_user_setting.sql [moved from src/core/SQL/PostgreSQL/17/setup_100_user_setting.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/setup_110_alter_sender_seq.sql [moved from src/core/SQL/PostgreSQL/17/setup_110_alter_sender_seq.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/setup_120_alter_messageid_seq.sql [moved from src/core/SQL/PostgreSQL/17/setup_120_alter_messageid_seq.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/update_backlog_bufferid.sql [moved from src/core/SQL/PostgreSQL/17/update_backlog_bufferid.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/update_buffer_lastseen.sql [moved from src/core/SQL/PostgreSQL/17/update_buffer_lastseen.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/update_buffer_markerlinemsgid.sql [moved from src/core/SQL/PostgreSQL/17/update_buffer_markerlinemsgid.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/update_buffer_name.sql [moved from src/core/SQL/PostgreSQL/17/update_buffer_name.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/update_buffer_persistent_channel.sql [moved from src/core/SQL/PostgreSQL/17/update_buffer_persistent_channel.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/update_buffer_set_channel_key.sql [moved from src/core/SQL/PostgreSQL/17/update_buffer_set_channel_key.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/update_identity.sql [moved from src/core/SQL/PostgreSQL/17/update_identity.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/update_network.sql [moved from src/core/SQL/PostgreSQL/17/update_network.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/update_network_connected.sql [moved from src/core/SQL/PostgreSQL/17/update_network_connected.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/update_network_set_awaymsg.sql [moved from src/core/SQL/PostgreSQL/17/update_network_set_awaymsg.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/update_network_set_usermode.sql [moved from src/core/SQL/PostgreSQL/17/update_network_set_usermode.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/update_user_setting.sql [moved from src/core/SQL/PostgreSQL/17/update_user_setting.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/update_username.sql [moved from src/core/SQL/PostgreSQL/17/update_username.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/update_userpassword.sql [moved from src/core/SQL/PostgreSQL/17/update_userpassword.sql with 100% similarity]
src/core/SQL/PostgreSQL/18/upgrade_000_alter_ircserver_add_sslverify.sql [new file with mode: 0644]
src/core/SQL/SQLite/19/delete_backlog_by_uid.sql [moved from src/core/SQL/SQLite/18/delete_backlog_by_uid.sql with 100% similarity]
src/core/SQL/SQLite/19/delete_backlog_for_buffer.sql [moved from src/core/SQL/SQLite/18/delete_backlog_for_buffer.sql with 100% similarity]
src/core/SQL/SQLite/19/delete_backlog_for_network.sql [moved from src/core/SQL/SQLite/18/delete_backlog_for_network.sql with 100% similarity]
src/core/SQL/SQLite/19/delete_buffer_for_bufferid.sql [moved from src/core/SQL/SQLite/18/delete_buffer_for_bufferid.sql with 100% similarity]
src/core/SQL/SQLite/19/delete_buffers_by_uid.sql [moved from src/core/SQL/SQLite/18/delete_buffers_by_uid.sql with 100% similarity]
src/core/SQL/SQLite/19/delete_buffers_for_network.sql [moved from src/core/SQL/SQLite/18/delete_buffers_for_network.sql with 100% similarity]
src/core/SQL/SQLite/19/delete_identity.sql [moved from src/core/SQL/SQLite/18/delete_identity.sql with 100% similarity]
src/core/SQL/SQLite/19/delete_ircservers_for_network.sql [moved from src/core/SQL/SQLite/18/delete_ircservers_for_network.sql with 100% similarity]
src/core/SQL/SQLite/19/delete_network.sql [moved from src/core/SQL/SQLite/18/delete_network.sql with 100% similarity]
src/core/SQL/SQLite/19/delete_networks_by_uid.sql [moved from src/core/SQL/SQLite/18/delete_networks_by_uid.sql with 100% similarity]
src/core/SQL/SQLite/19/delete_nicks.sql [moved from src/core/SQL/SQLite/18/delete_nicks.sql with 100% similarity]
src/core/SQL/SQLite/19/delete_quasseluser.sql [moved from src/core/SQL/SQLite/18/delete_quasseluser.sql with 100% similarity]
src/core/SQL/SQLite/19/insert_buffer.sql [moved from src/core/SQL/SQLite/18/insert_buffer.sql with 100% similarity]
src/core/SQL/SQLite/19/insert_identity.sql [moved from src/core/SQL/SQLite/18/insert_identity.sql with 100% similarity]
src/core/SQL/SQLite/19/insert_message.sql [moved from src/core/SQL/SQLite/18/insert_message.sql with 100% similarity]
src/core/SQL/SQLite/19/insert_network.sql [moved from src/core/SQL/SQLite/18/insert_network.sql with 100% similarity]
src/core/SQL/SQLite/19/insert_nick.sql [moved from src/core/SQL/SQLite/18/insert_nick.sql with 100% similarity]
src/core/SQL/SQLite/19/insert_quasseluser.sql [moved from src/core/SQL/SQLite/18/insert_quasseluser.sql with 100% similarity]
src/core/SQL/SQLite/19/insert_sender.sql [moved from src/core/SQL/SQLite/18/insert_sender.sql with 100% similarity]
src/core/SQL/SQLite/19/insert_server.sql [moved from src/core/SQL/SQLite/18/insert_server.sql with 79% similarity]
src/core/SQL/SQLite/19/insert_user_setting.sql [moved from src/core/SQL/SQLite/18/insert_user_setting.sql with 100% similarity]
src/core/SQL/SQLite/19/migrate_read_backlog.sql [moved from src/core/SQL/SQLite/18/migrate_read_backlog.sql with 100% similarity]
src/core/SQL/SQLite/19/migrate_read_buffer.sql [moved from src/core/SQL/SQLite/18/migrate_read_buffer.sql with 100% similarity]
src/core/SQL/SQLite/19/migrate_read_identity.sql [moved from src/core/SQL/SQLite/18/migrate_read_identity.sql with 100% similarity]
src/core/SQL/SQLite/19/migrate_read_identity_nick.sql [moved from src/core/SQL/SQLite/18/migrate_read_identity_nick.sql with 100% similarity]
src/core/SQL/SQLite/19/migrate_read_ircserver.sql [moved from src/core/SQL/SQLite/18/migrate_read_ircserver.sql with 84% similarity]
src/core/SQL/SQLite/19/migrate_read_network.sql [moved from src/core/SQL/SQLite/18/migrate_read_network.sql with 100% similarity]
src/core/SQL/SQLite/19/migrate_read_quasseluser.sql [moved from src/core/SQL/SQLite/18/migrate_read_quasseluser.sql with 100% similarity]
src/core/SQL/SQLite/19/migrate_read_sender.sql [moved from src/core/SQL/SQLite/18/migrate_read_sender.sql with 100% similarity]
src/core/SQL/SQLite/19/migrate_read_usersetting.sql [moved from src/core/SQL/SQLite/18/migrate_read_usersetting.sql with 100% similarity]
src/core/SQL/SQLite/19/select_authuser.sql [moved from src/core/SQL/SQLite/18/select_authuser.sql with 100% similarity]
src/core/SQL/SQLite/19/select_bufferByName.sql [moved from src/core/SQL/SQLite/18/select_bufferByName.sql with 100% similarity]
src/core/SQL/SQLite/19/select_bufferExists.sql [moved from src/core/SQL/SQLite/18/select_bufferExists.sql with 100% similarity]
src/core/SQL/SQLite/19/select_buffer_by_id.sql [moved from src/core/SQL/SQLite/18/select_buffer_by_id.sql with 100% similarity]
src/core/SQL/SQLite/19/select_buffer_lastseen_messages.sql [moved from src/core/SQL/SQLite/18/select_buffer_lastseen_messages.sql with 100% similarity]
src/core/SQL/SQLite/19/select_buffer_markerlinemsgids.sql [moved from src/core/SQL/SQLite/18/select_buffer_markerlinemsgids.sql with 100% similarity]
src/core/SQL/SQLite/19/select_buffers.sql [moved from src/core/SQL/SQLite/18/select_buffers.sql with 100% similarity]
src/core/SQL/SQLite/19/select_buffers_for_merge.sql [moved from src/core/SQL/SQLite/18/select_buffers_for_merge.sql with 100% similarity]
src/core/SQL/SQLite/19/select_buffers_for_network.sql [moved from src/core/SQL/SQLite/18/select_buffers_for_network.sql with 100% similarity]
src/core/SQL/SQLite/19/select_checkidentity.sql [moved from src/core/SQL/SQLite/18/select_checkidentity.sql with 100% similarity]
src/core/SQL/SQLite/19/select_connected_networks.sql [moved from src/core/SQL/SQLite/18/select_connected_networks.sql with 100% similarity]
src/core/SQL/SQLite/19/select_identities.sql [moved from src/core/SQL/SQLite/18/select_identities.sql with 100% similarity]
src/core/SQL/SQLite/19/select_internaluser.sql [moved from src/core/SQL/SQLite/18/select_internaluser.sql with 100% similarity]
src/core/SQL/SQLite/19/select_messages.sql [moved from src/core/SQL/SQLite/18/select_messages.sql with 100% similarity]
src/core/SQL/SQLite/19/select_messagesAll.sql [moved from src/core/SQL/SQLite/18/select_messagesAll.sql with 100% similarity]
src/core/SQL/SQLite/19/select_messagesAllNew.sql [moved from src/core/SQL/SQLite/18/select_messagesAllNew.sql with 100% similarity]
src/core/SQL/SQLite/19/select_messagesNewerThan.sql [moved from src/core/SQL/SQLite/18/select_messagesNewerThan.sql with 100% similarity]
src/core/SQL/SQLite/19/select_messagesNewestK.sql [moved from src/core/SQL/SQLite/18/select_messagesNewestK.sql with 100% similarity]
src/core/SQL/SQLite/19/select_networkExists.sql [moved from src/core/SQL/SQLite/18/select_networkExists.sql with 100% similarity]
src/core/SQL/SQLite/19/select_network_awaymsg.sql [moved from src/core/SQL/SQLite/18/select_network_awaymsg.sql with 100% similarity]
src/core/SQL/SQLite/19/select_network_usermode.sql [moved from src/core/SQL/SQLite/18/select_network_usermode.sql with 100% similarity]
src/core/SQL/SQLite/19/select_networks_for_user.sql [moved from src/core/SQL/SQLite/18/select_networks_for_user.sql with 100% similarity]
src/core/SQL/SQLite/19/select_nicks.sql [moved from src/core/SQL/SQLite/18/select_nicks.sql with 100% similarity]
src/core/SQL/SQLite/19/select_persistent_channels.sql [moved from src/core/SQL/SQLite/18/select_persistent_channels.sql with 100% similarity]
src/core/SQL/SQLite/19/select_servers_for_network.sql [moved from src/core/SQL/SQLite/18/select_servers_for_network.sql with 63% similarity]
src/core/SQL/SQLite/19/select_user_setting.sql [moved from src/core/SQL/SQLite/18/select_user_setting.sql with 100% similarity]
src/core/SQL/SQLite/19/select_userid.sql [moved from src/core/SQL/SQLite/18/select_userid.sql with 100% similarity]
src/core/SQL/SQLite/19/setup_000_quasseluser.sql [moved from src/core/SQL/SQLite/18/setup_000_quasseluser.sql with 100% similarity]
src/core/SQL/SQLite/19/setup_010_sender.sql [moved from src/core/SQL/SQLite/18/setup_010_sender.sql with 100% similarity]
src/core/SQL/SQLite/19/setup_020_network.sql [moved from src/core/SQL/SQLite/18/setup_020_network.sql with 100% similarity]
src/core/SQL/SQLite/19/setup_030_buffer.sql [moved from src/core/SQL/SQLite/18/setup_030_buffer.sql with 100% similarity]
src/core/SQL/SQLite/19/setup_040_buffer_idx.sql [moved from src/core/SQL/SQLite/18/setup_040_buffer_idx.sql with 100% similarity]
src/core/SQL/SQLite/19/setup_050_buffer_cname_idx.sql [moved from src/core/SQL/SQLite/18/setup_050_buffer_cname_idx.sql with 100% similarity]
src/core/SQL/SQLite/19/setup_060_backlog.sql [moved from src/core/SQL/SQLite/18/setup_060_backlog.sql with 100% similarity]
src/core/SQL/SQLite/19/setup_070_coreinfo.sql [moved from src/core/SQL/SQLite/18/setup_070_coreinfo.sql with 100% similarity]
src/core/SQL/SQLite/19/setup_080_ircservers.sql [moved from src/core/SQL/SQLite/18/setup_080_ircservers.sql with 85% similarity]
src/core/SQL/SQLite/19/setup_090_backlog_idx.sql [moved from src/core/SQL/SQLite/18/setup_090_backlog_idx.sql with 100% similarity]
src/core/SQL/SQLite/19/setup_100_backlog_idx2.sql [moved from src/core/SQL/SQLite/18/setup_100_backlog_idx2.sql with 100% similarity]
src/core/SQL/SQLite/19/setup_110_buffer_user_idx.sql [moved from src/core/SQL/SQLite/18/setup_110_buffer_user_idx.sql with 100% similarity]
src/core/SQL/SQLite/19/setup_120_user_setting.sql [moved from src/core/SQL/SQLite/18/setup_120_user_setting.sql with 100% similarity]
src/core/SQL/SQLite/19/setup_130_identity.sql [moved from src/core/SQL/SQLite/18/setup_130_identity.sql with 100% similarity]
src/core/SQL/SQLite/19/setup_140_identity_nick.sql [moved from src/core/SQL/SQLite/18/setup_140_identity_nick.sql with 100% similarity]
src/core/SQL/SQLite/19/update_backlog_bufferid.sql [moved from src/core/SQL/SQLite/18/update_backlog_bufferid.sql with 100% similarity]
src/core/SQL/SQLite/19/update_buffer_lastseen.sql [moved from src/core/SQL/SQLite/18/update_buffer_lastseen.sql with 100% similarity]
src/core/SQL/SQLite/19/update_buffer_markerlinemsgid.sql [moved from src/core/SQL/SQLite/18/update_buffer_markerlinemsgid.sql with 100% similarity]
src/core/SQL/SQLite/19/update_buffer_name.sql [moved from src/core/SQL/SQLite/18/update_buffer_name.sql with 100% similarity]
src/core/SQL/SQLite/19/update_buffer_persistent_channel.sql [moved from src/core/SQL/SQLite/18/update_buffer_persistent_channel.sql with 100% similarity]
src/core/SQL/SQLite/19/update_buffer_set_channel_key.sql [moved from src/core/SQL/SQLite/18/update_buffer_set_channel_key.sql with 100% similarity]
src/core/SQL/SQLite/19/update_identity.sql [moved from src/core/SQL/SQLite/18/update_identity.sql with 100% similarity]
src/core/SQL/SQLite/19/update_network.sql [moved from src/core/SQL/SQLite/18/update_network.sql with 100% similarity]
src/core/SQL/SQLite/19/update_network_connected.sql [moved from src/core/SQL/SQLite/18/update_network_connected.sql with 100% similarity]
src/core/SQL/SQLite/19/update_network_set_awaymsg.sql [moved from src/core/SQL/SQLite/18/update_network_set_awaymsg.sql with 100% similarity]
src/core/SQL/SQLite/19/update_network_set_usermode.sql [moved from src/core/SQL/SQLite/18/update_network_set_usermode.sql with 100% similarity]
src/core/SQL/SQLite/19/update_user_setting.sql [moved from src/core/SQL/SQLite/18/update_user_setting.sql with 100% similarity]
src/core/SQL/SQLite/19/update_username.sql [moved from src/core/SQL/SQLite/18/update_username.sql with 100% similarity]
src/core/SQL/SQLite/19/update_userpassword.sql [moved from src/core/SQL/SQLite/18/update_userpassword.sql with 100% similarity]
src/core/SQL/SQLite/19/upgrade_000_alter_ircserver_add_sslverify.sql [new file with mode: 0644]
src/core/abstractsqlstorage.h
src/core/corenetwork.cpp
src/core/postgresqlstorage.cpp
src/core/sql.qrc
src/core/sqlitestorage.cpp
src/qtui/settingspages/networkadddlg.ui
src/qtui/settingspages/networkssettingspage.cpp
src/qtui/settingspages/servereditdlg.ui