Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Projets publics
Sympa
Commits
29c66ae8
Commit
29c66ae8
authored
Mar 04, 2020
by
IKEDA Soji
Browse files
Suppress unuseful logs skipping urlization
parent
a013916f
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/lib/Sympa/Message.pm
View file @
29c66ae8
...
...
@@ -1443,10 +1443,8 @@ sub _merge_msg {
}
# Check for attchment-part, which should not be changed
my
$cdisposition
=
$entity
->
head
->
mime_attr
('
Content-Disposition
');
if
(
$cdisposition
and
lc
(
$cdisposition
)
eq
'
attachment
')
{
$log
->
syslog
('
notice
',
'
Detected part with Content-Disposition. Not changing it!
');
if
('
attachment
'
eq
lc
(
$entity
->
head
->
mime_attr
('
Content-Disposition
')
//
''))
{
return
$entity
;
}
...
...
Write
Preview
Supports
Markdown
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