X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcore%2Fsslserver.cpp;h=cf98bc2f6c790b6d9dfa3be0ab215c02e741cf04;hb=24c7de34254b5de4cf28045a6923a527e06f7290;hp=c93f4861bae3064799bd7c3e23e43568ab6e9665;hpb=f20d380a36e11a7591dacbf0a62d7c11d997f9db;p=quassel.git diff --git a/src/core/sslserver.cpp b/src/core/sslserver.cpp index c93f4861..cf98bc2f 100644 --- a/src/core/sslserver.cpp +++ b/src/core/sslserver.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2020 by the Quassel Project * + * Copyright (C) 2005-2022 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -53,7 +53,8 @@ SslServer::SslServer(QObject* parent) // do not proceed, throw an exception and quit. This prevents the core from falling // back to a plaintext-only core when they should be expecting SSL/TLS only. if (Quassel::isOptionSet("require-ssl")) { - throw ExitException{EXIT_FAILURE, tr("--require-ssl is set, but no SSL certificate is available. Exiting.")}; + throw ExitException{EXIT_FAILURE, tr("--require-ssl is set, but no SSL certificate is available. Exiting.\n" + "Please see https://quassel-irc.org/faq/cert to learn how to enable SSL support.")}; } if (!sslWarningShown) { qWarning() << "SslServer: Unable to set certificate file\n"