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
0412541c
...
0412541c7e8945ae9b800841836bd17dc69609f5
authored
2001-02-05 05:24:52 +0000
by
Alain Magloire
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
* mailbox/pop3d/uidl.c : API change the call is message_get_uidl()
to have UIDL POP3.
1 parent
6b6bd9cc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
pop3d/uidl.c
pop3d/uidl.c
View file @
0412541
...
...
@@ -42,7 +42,7 @@ pop3_uidl (const char *arg)
message_get_attribute
(
msg
,
&
attr
);
if
(
!
attribute_is_deleted
(
attr
))
{
message_get_uid
(
msg
,
uidl
,
sizeof
(
uidl
),
NULL
);
message_get_uid
l
(
msg
,
uidl
,
sizeof
(
uidl
),
NULL
);
fprintf
(
ofile
,
"%d %s
\r\n
"
,
mesgno
,
uidl
);
}
}
...
...
@@ -56,7 +56,7 @@ pop3_uidl (const char *arg)
message_get_attribute
(
msg
,
&
attr
);
if
(
attribute_is_deleted
(
attr
))
return
ERR_MESG_DELE
;
message_get_uid
(
msg
,
uidl
,
sizeof
(
uidl
),
NULL
);
message_get_uid
l
(
msg
,
uidl
,
sizeof
(
uidl
),
NULL
);
fprintf
(
ofile
,
"+OK %d %s
\r\n
"
,
mesgno
,
uidl
);
}
...
...
Please
register
or
sign in
to post a comment