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
dc63794a
...
dc63794ae4cc1ae2c99fbc61f5f369da963fc7cf
authored
2002-12-27 19:29:24 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
The To: and Cc: needn't be translated
1 parent
773fe98c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
mail/reply.c
mail/reply.c
View file @
dc63794
...
...
@@ -235,12 +235,12 @@ mail_reply (int argc, char **argv)
else
compose_header_set
(
&
env
,
MU_HEADER_SUBJECT
,
""
,
COMPOSE_REPLACE
);
fprintf
(
ofile
,
_
(
"To: %s
\n
"
)
,
fprintf
(
ofile
,
"To: %s
\n
"
,
compose_header_get
(
&
env
,
MU_HEADER_TO
,
""
));
str
=
compose_header_get
(
&
env
,
MU_HEADER_CC
,
NULL
);
if
(
str
)
fprintf
(
ofile
,
_
(
"Cc: %s
\n
"
)
,
str
);
fprintf
(
ofile
,
_
(
"Subject: %s
\n\n
"
)
,
fprintf
(
ofile
,
"Cc: %s
\n
"
,
str
);
fprintf
(
ofile
,
"Subject: %s
\n\n
"
,
compose_header_get
(
&
env
,
MU_HEADER_SUBJECT
,
""
));
make_in_reply_to
(
&
env
,
msg
);
...
...
Please
register
or
sign in
to post a comment