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
b0d22be3
...
b0d22be3b58c243d5e6a16870e3c01c67cf2b380
authored
2002-11-18 17:06:13 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(mailer_get_url): New function.
1 parent
6fcf6741
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
mailbox/mailer.c
mailbox/mailer.c
View file @
b0d22be
...
...
@@ -363,3 +363,12 @@ mailer_get_debug (mailer_t mailer, mu_debug_t *pdebug)
*
pdebug
=
mailer
->
debug
;
return
0
;
}
int
mailer_get_url
(
mailer_t
mailer
,
url_t
*
purl
)
{
if
(
!
mailer
||
!
purl
)
return
EINVAL
;
*
purl
=
mailer
->
url
;
return
0
;
}
...
...
Please
register
or
sign in
to post a comment