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
a315776c
...
a315776cd755cb4ed0da9c8a9ff803bddf09a618
authored
2004-01-21 12:41:47 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Reverted to 1.13
1 parent
deae8dbd
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
5 deletions
examples/addr.c
examples/addr.c
View file @
a315776
/* GNU Mailutils -- a suite of utilities for electronic mail
Copyright (C) 1999, 2000, 2001
, 2004
Free Software Foundation, Inc.
Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc.
GNU Mailutils is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
...
...
@@ -16,8 +16,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <string.h>
#include <mailutils/address.h>
#include <mailutils/errno.h>
...
...
@@ -35,17 +35,19 @@ parse (const char *str)
address_t
address
=
NULL
;
mu_set_user_email_domain
(
"localhost"
);
status
=
address_create
(
&
address
,
str
);
address_get_count
(
address
,
&
pcount
);
if
(
status
)
{
mu_error
(
"%s => error: %s"
,
str
,
mu_strerror
(
status
));
printf
(
"%s=> error %s
\n\n
"
,
str
,
mu_errname
(
status
));
return
0
;
}
else
{
printf
(
"%s
=> pcount %lu
\n
"
,
str
,
(
unsigned
long
)
pcount
);
printf
(
"%s=> pcount %lu
\n
"
,
str
,
(
unsigned
long
)
pcount
);
}
for
(
no
=
1
;
no
<=
pcount
;
no
++
)
...
...
@@ -54,24 +56,29 @@ parse (const char *str)
int
isgroup
;
address_is_group
(
address
,
no
,
&
isgroup
);
printf
(
"%lu "
,
(
unsigned
long
)
no
);
if
(
isgroup
)
{
address_get_personal
(
address
,
no
,
buf
,
sizeof
(
buf
),
&
got
);
printf
(
"group <%s>
\n
"
,
buf
);
}
else
{
address_get_email
(
address
,
no
,
buf
,
sizeof
(
buf
),
0
);
printf
(
"email <%s>
\n
"
,
buf
);
}
address_get_personal
(
address
,
no
,
buf
,
sizeof
(
buf
),
&
got
);
if
(
got
&&
!
isgroup
)
printf
(
" personal <%s>
\n
"
,
buf
);
address_get_comments
(
address
,
no
,
buf
,
sizeof
(
buf
),
&
got
);
if
(
got
)
printf
(
" comments <%s>
\n
"
,
buf
);
...
...
@@ -82,6 +89,7 @@ parse (const char *str)
printf
(
" local-part <%s>"
,
buf
);
address_get_domain
(
address
,
no
,
buf
,
sizeof
(
buf
),
&
got
);
if
(
got
)
printf
(
" domain <%s>"
,
buf
);
...
...
@@ -89,12 +97,14 @@ parse (const char *str)
}
address_get_route
(
address
,
no
,
buf
,
sizeof
(
buf
),
&
got
);
if
(
got
)
printf
(
" route <%s>
\n
"
,
buf
);
}
address_destroy
(
&
address
);
printf
(
"
\n
"
);
return
0
;
}
...
...
@@ -118,15 +128,20 @@ main (int argc, const char *argv[])
argc
=
1
;
if
(
!
argv
[
argc
])
{
return
parseinput
();
}
for
(;
argv
[
argc
];
argc
++
)
{
if
(
strcmp
(
argv
[
argc
],
"-"
)
==
0
)
{
parseinput
();
}
else
{
parse
(
argv
[
argc
]);
}
}
return
0
;
}
...
...
Please
register
or
sign in
to post a comment