diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/config.py.erb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/templates/config.py.erb b/templates/config.py.erb index eec708b..b960f37 100644 --- a/templates/config.py.erb +++ b/templates/config.py.erb @@ -26,6 +26,13 @@ IRCSERVER, IRCPORT = "<%= ircserver %>", <%= ircport %> # If this option is uncommented it will override IRCPORT. SSLPORT = <%= sslport %> <% end %> + +<% if sslfingerprint != false %> +# OPTION: SSLFINGERPRINT +# SHA1 Fingerprint of the IRC Server SSL key. Connections +# will fail if this fingerprint doesn't match. +SSLFINGERPRINT = <%= sslfingerprint %> +<% end %> # OPTION: REALNAME # The realname field of IRC clients will be set to this value. REALNAME = "<%= realname %>" |