~ubuntu-branches/debian/stretch/alpine/stretch

« back to all changes in this revision

Viewing changes to alpine/imap.h

  • Committer: Bazaar Package Importer
  • Author(s): Asheesh Laroia
  • Date: 2007-02-17 13:17:42 UTC
  • Revision ID: james.westby@ubuntu.com-20070217131742-99x5c6cpg1pbkdhw
Tags: upstream-0.82+dfsg
ImportĀ upstreamĀ versionĀ 0.82+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * $Id: imap.h 380 2007-01-23 00:09:18Z hubert@u.washington.edu $
 
3
 *
 
4
 * ========================================================================
 
5
 * Copyright 2006-2007 University of Washington
 
6
 *
 
7
 * Licensed under the Apache License, Version 2.0 (the "License");
 
8
 * you may not use this file except in compliance with the License.
 
9
 * You may obtain a copy of the License at
 
10
 *
 
11
 *     http://www.apache.org/licenses/LICENSE-2.0
 
12
 *
 
13
 * ========================================================================
 
14
 */
 
15
 
 
16
#ifndef PINE_IMAP_INCLUDED
 
17
#define PINE_IMAP_INCLUDED
 
18
 
 
19
 
 
20
#include "../pith/imap.h"
 
21
 
 
22
 
 
23
/* exported protoypes */
 
24
void   *pine_block_notify(int, void *);
 
25
long    pine_tcptimeout(long, long);
 
26
long    pine_sslcertquery(char *, char *, char *);
 
27
char   *pine_newsrcquery(MAILSTREAM *, char *, char *);
 
28
int     url_local_certdetails(char *);
 
29
void    pine_sslfailure(char *, char *, unsigned long);
 
30
#ifdef  PASSFILE
 
31
int     get_passfile_passwd(char *, char *, char *, STRLIST_S *, int);
 
32
int     is_using_passfile();
 
33
void    set_passfile_passwd(char *, char *, char *, STRLIST_S *, int, int);
 
34
char   *get_passfile_user(char *, STRLIST_S *);
 
35
void    update_passfile_hostlist(char *, char *, STRLIST_S *, int);
 
36
#ifdef  _WINDOWS
 
37
void    erase_windows_credentials(void);
 
38
#elif   OSX_TARGET
 
39
void    macos_erase_keychain(void);
 
40
#endif
 
41
#endif
 
42
 
 
43
 
 
44
#endif /* PINE_IMAP_INCLUDED */