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
98198b1e
...
98198b1efc7aa9a47fe037cc213191d874c09ba8
authored
2003-02-22 22:27:48 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Fix up the folder dir by appending a format specifier (mh:/) to it.
1 parent
32cdeb0d
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
mh/send.c
mh/send.c
View file @
98198b1
...
...
@@ -424,10 +424,13 @@ send (int argc, char **argv)
{
int
i
,
rc
;
/* Verify all arguments */
for
(
i
=
0
;
i
<
argc
;
i
++
)
if
(
check_file
(
argv
[
i
]))
return
1
;
/* Process the mtstailor file and detach from the console if
required */
read_mts_profile
();
if
(
background
&&
daemon
(
0
,
0
)
<
0
)
...
...
@@ -436,6 +439,11 @@ send (int argc, char **argv)
return
1
;
}
/* Prepend url specifier to the folder dir. We won't need this
when the default format becomes configurable */
asprintf
(
&
mu_path_folder_dir
,
"mh:%s"
,
mu_path_folder_dir
);
/* Finally, do the work */
rc
=
list_do
(
mesg_list
,
_action_send
,
NULL
);
return
rc
;
}
...
...
Please
register
or
sign in
to post a comment