Skip to content
Snippets Groups Projects
Commit a397f493 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Support TLSErrorLevel in [mail] and [global] sections of sbbs.ini

Allow a configured maximum-severity (minimum value) for TLS-related log messages. Default is 0 (LOG_EMERG, maximum severity).

Getting tired of SMTP/TLS (SMTPS) related errors clogging up my inbox. I'm setting this to "Warning", like I did for [web].
parent f3e1a080
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
Pipeline #2676 failed
......@@ -147,6 +147,8 @@ typedef struct {
int GCES_level; \
get_crypt_error_string(status, sess, &GCES_estr, action, &GCES_level); \
if (GCES_estr) { \
if(GCES_level < startup->tls_error_level) \
GCES_level = startup->tls_error_level; \
lprintf(GCES_level, "%04d %s %s", sock, server, GCES_estr); \
free_crypt_attrstr(GCES_estr); \
} \
......@@ -157,6 +159,8 @@ typedef struct {
int GCES_level; \
get_crypt_error_string(status, sess, &GCES_estr, action, &GCES_level); \
if (GCES_estr) { \
if(GCES_level < startup->tls_error_level) \
GCES_level = startup->tls_error_level; \
lprintf(GCES_level, "%04d %s [%s] %s", sock, server, host, GCES_estr); \
free_crypt_attrstr(GCES_estr); \
} \
......@@ -167,6 +171,8 @@ typedef struct {
int GCES_level; \
get_crypt_error_string(status, sess, &GCES_estr, action, &GCES_level); \
if (GCES_estr) { \
if(log_level < startup->tls_error_level) \
log_level = startup->tls_error_level; \
lprintf(log_level, "%04d %s [%s] %s", sock, server, host, GCES_estr); \
free_crypt_attrstr(GCES_estr); \
} \
......
......@@ -95,6 +95,7 @@ typedef struct {
BOOL recycle_now;
BOOL shutdown_now;
int log_level;
int tls_error_level; /* Cap the severity of TLS error log messages */
uint bind_retry_count; /* Number of times to retry bind() calls */
uint bind_retry_delay; /* Time to wait between each bind() retry */
......
......@@ -42,6 +42,7 @@ static const char* strMaxInactivity="MaxInactivity";
static const char* strMaxConConn="MaxConcurrentConnections";
static const char* strHostName="HostName";
static const char* strLogLevel="LogLevel";
static const char* strTLSErrorLevel="TLSErrorLevel";
static const char* strBindRetryCount="BindRetryCount";
static const char* strBindRetryDelay="BindRetryDelay";
static const char* strAnswerSound="AnswerSound";
......@@ -277,6 +278,7 @@ static void get_ini_globals(str_list_t list, global_startup_t* global)
global->outgoing4.s_addr=iniGetIpAddress(list,section,strOutgoing4,0);
global->outgoing6=iniGetIp6Address(list,section,strOutgoing6,wildcard6);
global->log_level=iniGetLogLevel(list,section,strLogLevel,DEFAULT_LOG_LEVEL);
global->tls_error_level=iniGetLogLevel(list,section, strTLSErrorLevel, 0);
global->bind_retry_count=iniGetInteger(list,section,strBindRetryCount,DEFAULT_BIND_RETRY_COUNT);
global->bind_retry_delay=iniGetInteger(list,section,strBindRetryDelay,DEFAULT_BIND_RETRY_DELAY);
global->login_attempt = get_login_attempt_settings(list, section, NULL);
......@@ -617,6 +619,8 @@ void sbbs_read_ini(
mail->log_level
=iniGetLogLevel(list,section,strLogLevel,global->log_level);
mail->tls_error_level
=iniGetLogLevel(list,section, strTLSErrorLevel, global->tls_error_level);
mail->options
=iniGetBitField(list,section,strOptions,mail_options
,MAIL_OPT_ALLOW_POP3);
......@@ -739,7 +743,7 @@ void sbbs_read_ini(
web->log_level
=iniGetLogLevel(list,section,strLogLevel,global->log_level);
web->tls_error_level
=iniGetLogLevel(list,section, "TLSErrorLevel", web->tls_error_level);
=iniGetLogLevel(list,section, strTLSErrorLevel, global->tls_error_level);
web->options
=iniGetBitField(list,section,strOptions,web_options
,BBS_OPT_NO_HOST_LOOKUP | WEB_OPT_HTTP_LOGGING);
......@@ -809,6 +813,7 @@ BOOL sbbs_write_ini(
iniSetIp6Address(lp,section,strOutgoing6,global->outgoing6,&style);
iniSetStringList(lp, section, strInterfaces, ",", global->interfaces, &style);
iniSetLogLevel(lp,section,strLogLevel,global->log_level,&style);
iniSetLogLevel(lp,section,strTLSErrorLevel,global->tls_error_level,&style);
iniSetInteger(lp,section,strBindRetryCount,global->bind_retry_count,&style);
iniSetInteger(lp,section,strBindRetryDelay,global->bind_retry_delay,&style);
set_login_attempt_settings(lp, section, global->login_attempt, style);
......@@ -1045,7 +1050,10 @@ BOOL sbbs_write_ini(
iniRemoveValue(lp,section,strLogLevel);
else if(!iniSetLogLevel(lp,section,strLogLevel,mail->log_level,&style))
break;
if(mail->tls_error_level==global->tls_error_level)
iniRemoveValue(lp,section,strTLSErrorLevel);
else if(!iniSetLogLevel(lp,section,strTLSErrorLevel,mail->tls_error_level,&style))
break;
if(!iniSetShortInt(lp,section,"SMTPPort",mail->smtp_port,&style))
break;
if(!iniSetShortInt(lp,section,"SubmissionPort",mail->submission_port,&style))
......@@ -1244,6 +1252,10 @@ BOOL sbbs_write_ini(
iniRemoveValue(lp,section,strLogLevel);
else if(!iniSetLogLevel(lp,section,strLogLevel,web->log_level,&style))
break;
if(web->tls_error_level==global->tls_error_level)
iniRemoveValue(lp,section,strTLSErrorLevel);
else if(!iniSetLogLevel(lp,section,strTLSErrorLevel,web->tls_error_level,&style))
break;
/* JavaScript Operating Parameters */
if(!sbbs_set_js_settings(lp,section,&web->js,&global->js,&style))
......
......@@ -70,6 +70,7 @@ typedef struct {
struct in6_addr outgoing6;
str_list_t interfaces;
int log_level;
int tls_error_level; /* Cap the severity of TLS error log messages */
js_startup_t js;
uint bind_retry_count; /* Number of times to retry bind() calls */
uint bind_retry_delay; /* Time to wait between each bind() retry */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment