Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Projets publics
Sympa
Commits
e20865f3
Commit
e20865f3
authored
Dec 12, 2018
by
IKEDA Soji
Browse files
Long email addresses in system messages may be folded.
Fixed by preventing folding words matching email regexp.
parent
8126e1a5
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/lib/Sympa/Tools/Text.pm
View file @
e20865f3
...
...
@@ -123,10 +123,12 @@ sub wrap_text {
$cols
=
78
unless
defined
$cols
;
return
$text
unless
$cols
;
my
$email_re
=
Sympa::Regexps::
email
();
$text
=
Text::
LineFold
->
new
(
Language
=>
Sympa::
Language
->
instance
->
get_lang
,
OutputCharset
=>
(
Encode::
is_utf8
(
$text
)
?
'
_UNICODE_
'
:
'
utf8
'),
Prep
=>
'
NONBREAKURI
',
prep
=>
[
qr{\b$email_re\b}
,
sub
{
shift
;
@
_
}],
ColumnsMax
=>
$cols
)
->
fold
(
$init
,
$subs
,
$text
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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