Add support for tab-completion when selecting by rule
[alpine.git] / alpine / imap.h
blobe11c7abc9cba3b24024613f4be6c2e63109c75d8
1 /*
2 * $Id: imap.h 1074 2008-06-04 00:08:43Z hubert@u.washington.edu $
4 * ========================================================================
5 * Copyright 2006-2007 University of Washington
6 * Copyright 2013-2022 Eduardo Chappa
8 * Licensed under the Apache License, Version 2.0 (the "License");
9 * you may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
12 * http://www.apache.org/licenses/LICENSE-2.0
14 * ========================================================================
17 #ifndef PINE_IMAP_INCLUDED
18 #define PINE_IMAP_INCLUDED
21 #include "../pith/imap.h"
24 /* exported prototypes */
25 void pine_parse_quota (MAILSTREAM *, unsigned char *, QUOTALIST *);
26 QUOTALIST *pine_quotalist_copy (QUOTALIST *);
27 void *pine_block_notify(int, void *);
28 long pine_tcptimeout(long, long, char *);
29 long pine_sslcertquery(char *, char *, char *);
30 char *pine_newsrcquery(MAILSTREAM *, char *, char *);
31 int url_local_certdetails(char *);
32 void pine_sslfailure(char *, char *, unsigned long);
33 void mm_expunged_current(long unsigned int);
34 IDLIST *set_alpine_id(char *, char *);
35 void pine_delete_pwd(NETMBX *mb, char *user);
36 char *oauth2_get_access_code(unsigned char *, char *, OAUTH2_S *, int *);
37 void oauth2_set_device_info(OAUTH2_S *, char *);
38 int oauth2_elapsed_done(void *);
39 UCS oauth2device_decode_reply(void *, void *);
42 #ifdef LOCAL_PASSWD_CACHE
43 int get_passfile_passwd(char *, char **, char *, STRLIST_S *, int);
44 int get_passfile_passwd_auth(char *, char **, char *, STRLIST_S *, int, char *);
45 int is_using_passfile(void);
46 void set_passfile_passwd(char *, char *, char *, STRLIST_S *, int, int);
47 void set_passfile_passwd_auth(char *, char *, char *, STRLIST_S *, int, int, char *);
48 char *get_passfile_user(char *, STRLIST_S *);
49 #endif /* LOCAL_PASSWD_CACHE */
51 #if (WINCRED > 0)
52 void erase_windows_credentials(void);
53 #endif
55 #ifdef APPLEKEYCHAIN
56 void macos_erase_keychain(void);
57 #endif
60 #endif /* PINE_IMAP_INCLUDED */