Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
146edd66
...
146edd66afcc74ef58452cd79535edf78e8317b4
authored
2003-09-20 15:35:39 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Use munre_subject() and util_reply_prefix().
1 parent
54464564
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
mail/followup.c
mail/reply.c
mail/followup.c
View file @
146edd6
...
...
@@ -48,8 +48,8 @@ mail_followup (int argc, char **argv)
{
char
*
p
=
NULL
;
if
(
strncasecmp
(
str
,
"Re:"
,
3
))
util_strcat
(
&
p
,
"Re: "
);
if
(
munre_subject
(
str
,
NULL
))
util_strcat
(
&
p
,
util_reply_prefix
()
);
util_strcat
(
&
p
,
str
);
free
(
str
);
compose_header_set
(
&
env
,
MU_HEADER_SUBJECT
,
p
,
COMPOSE_REPLACE
);
...
...
mail/reply.c
View file @
146edd6
...
...
@@ -97,8 +97,8 @@ reply0 (msgset_t *mspec, message_t msg, void *data)
{
char
*
p
=
NULL
;
if
(
strncasecmp
(
str
,
"Re:"
,
3
))
util_strcat
(
&
p
,
"Re: "
);
if
(
munre_subject
(
str
,
NULL
))
util_strcat
(
&
p
,
util_reply_prefix
()
);
util_strcat
(
&
p
,
str
);
free
(
str
);
compose_header_set
(
&
env
,
MU_HEADER_SUBJECT
,
p
,
COMPOSE_REPLACE
);
...
...
Please
register
or
sign in
to post a comment