Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Main
Synchronet
Commits
b3c3dbbf
Commit
b3c3dbbf
authored
May 01, 2019
by
rswindell
Browse files
Don't auto-exempt "<<address>>", just "<address>"
parent
b06125ae
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
src/sbbs3/mailsrvr.c
src/sbbs3/mailsrvr.c
+4
-1
No files found.
src/sbbs3/mailsrvr.c
View file @
b3c3dbbf
...
...
@@ -1859,7 +1859,10 @@ static void exempt_email_addr(const char* comment
char
tmp
[
128
];
FILE
*
fp
;
SAFEPRINTF(to,"<%s>",toaddr);
if
(
*
toaddr
==
'<'
)
SAFECOPY
(
to
,
toaddr
);
else
SAFEPRINTF
(
to
,
"<%s>"
,
toaddr
);
if
(
!
email_addr_is_exempt
(
to
))
{
SAFEPRINTF
(
fname
,
"%sdnsbl_exempt.cfg"
,
scfg
.
ctrl_dir
);
if
((
fp
=
fopen
(
fname
,
"a"
))
==
NULL
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment