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
8caa1bc1
...
8caa1bc1a5af042cf173f00a1c37e5826db767d6
authored
2001-07-03 11:47:37 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
insert ',' between recepients' addresses.
1 parent
b6bef8d7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
mail/followup.c
mail/followup.c
View file @
8caa1bc
...
...
@@ -55,8 +55,11 @@ mail_followup (int argc, char **argv)
/* Add authors of the subsequent messages to the to list
(or should it be cc?)*/
for
(
i
=
1
;
i
<
num
;
i
++
)
util_strcat
(
&
env
.
to
,
util_get_sender
(
msglist
[
i
],
0
));
{
util_strcat
(
&
env
.
to
,
","
);
util_strcat
(
&
env
.
to
,
util_get_sender
(
msglist
[
i
],
0
));
}
free
(
msglist
);
fprintf
(
ofile
,
"To: %s
\n
"
,
env
.
to
);
...
...
Please
register
or
sign in
to post a comment