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
dbbf165e
...
dbbf165e7f2dee3da1739a868e699c0cc8ec423a
authored
2004-11-15 16:36:08 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
New declarations.
1 parent
3eb194cd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletions
pop3d/pop3d.h
pop3d/pop3d.h
View file @
dbbf165
...
...
@@ -91,7 +91,10 @@ extern void login_delay_capa __P((void));
#endif
/* Minimum advertise retention time for messages. */
extern
int
expire
;
extern
time_t
expire
;
extern
int
expire_on_exit
;
#define EXPIRE_NEVER ((time_t)-1)
/* Size of the MD5 digest for APOP */
#define APOP_DIGEST 70
...
...
@@ -173,6 +176,7 @@ extern int expire;
#define POP3_ATTRIBUTE_DELE 0x0001
#define POP3_ATTRIBUTE_RETR 0x0010
#define INITIAL -1
#define AUTHORIZATION 0
#define TRANSACTION 1
#define UPDATE 2
...
...
@@ -200,6 +204,7 @@ extern int expire;
extern
mailbox_t
mbox
;
extern
int
state
;
extern
int
initial_state
;
extern
char
*
username
;
extern
char
*
maildir
;
extern
char
*
md5shared
;
...
...
@@ -262,4 +267,7 @@ extern void pop3d_mark_retr __P((attribute_t attr));
extern
int
pop3d_is_retr
__P
((
attribute_t
attr
));
extern
void
pop3d_unmark_retr
__P
((
attribute_t
attr
));
extern
void
expire_mark_message
__P
((
message_t
msg
,
char
**
value
));
#endif
/* _POP3D_H */
...
...
Please
register
or
sign in
to post a comment