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
ddfa7207
...
ddfa7207dee35437e68a836e3ab0e63c88cda695
authored
2005-03-13 00:45:57 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Use gettext markers in verbose diagnostics
1 parent
7bf46a83
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
mh/send.c
mh/send.c
View file @
ddfa720
...
...
@@ -298,7 +298,7 @@ open_mailer ()
mailer_t
mailer
;
int
status
;
WATCH
((
"creating mailer %s"
,
url
));
WATCH
((
_
(
"Creating mailer %s"
)
,
url
));
status
=
mailer_create
(
&
mailer
,
url
);
if
(
status
)
{
...
...
@@ -313,7 +313,7 @@ open_mailer ()
mu_debug_set_level
(
debug
,
MU_DEBUG_TRACE
|
MU_DEBUG_PROT
);
}
WATCH
((
"opening mailer %s"
,
url
));
WATCH
((
_
(
"Opening mailer %s"
)
,
url
));
status
=
mailer_open
(
mailer
,
MU_STREAM_RDWR
);
if
(
status
)
{
...
...
@@ -444,7 +444,7 @@ _action_send (void *item, void *data)
header_t
hdr
;
size_t
n
;
WATCH
((
"Getting message"
));
WATCH
((
_
(
"Getting message"
)
));
if
(
message_get_header
(
msg
,
&
hdr
)
==
0
)
{
...
...
@@ -484,7 +484,7 @@ _action_send (void *item, void *data)
if
(
!
mailer
)
return
1
;
WATCH
((
"Sending message"
));
WATCH
((
_
(
"Sending message"
)
));
rc
=
mailer_send_message
(
mailer
,
msg
,
NULL
,
NULL
);
if
(
rc
)
{
...
...
@@ -492,7 +492,7 @@ _action_send (void *item, void *data)
return
1
;
}
WATCH
((
"Destroying the mailer"
));
WATCH
((
_
(
"Destroying the mailer"
)
));
mailer_close
(
mailer
);
mailer_destroy
(
&
mailer
);
...
...
Please
register
or
sign in
to post a comment