1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
/*
* $Id: save.h 942 2008-03-04 18:21:33Z hubert@u.washington.edu $
*
* ========================================================================
* Copyright 2006-2008 University of Washington
* Copyright 2013-2020 Eduardo Chappa
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* ========================================================================
*/
#ifndef PITH_SAVE_INCLUDED
#define PITH_SAVE_INCLUDED
#include "../pith/savetype.h"
#include "../pith/context.h"
#include "../pith/msgno.h"
#include "../pith/state.h"
#include "../pith/store.h"
#define SV_DELETE 0x1 /* delete source msg after save */
#define SV_FOR_FILT 0x2 /* save called from filtering routine, */
/* just different status messages */
#define SV_FIX_DELS 0x4 /* remove Del mark before saving */
#define SV_INBOXWOCNTXT 0x8 /* interpret "inbox" as one true inbox */
#define SV_PRESERVE 0x10 /* preserve order */
#define SSCP_NONE 0x0
#define SSCP_INIT 0x1
#define SSCP_END 0x2
#define SSCP_ANSWER_IS_YES 0x4
/* exported prototypes */
char *save_get_default(struct pine *, ENVELOPE *, long, char *, CONTEXT_S **);
void save_get_fldr_from_env(char *, int, ENVELOPE *, struct pine *, long, char *);
long save(struct pine *, MAILSTREAM *, CONTEXT_S *, char *, MSGNO_S *, int);
long save_fetch_append_cb(MAILSTREAM *, void *, char **, char **, STRING **);
int save_fetch_append(MAILSTREAM *, long, char *, MAILSTREAM *, char *, CONTEXT_S *,
unsigned long, char *, char *, STORE_S *);
void saved_date(char *, char *);
MAILSTREAM *save_msg_stream(CONTEXT_S *, char *, int *);
int create_for_save(CONTEXT_S *, char *);
#endif /* PITH_SAVE_INCLUDED */
|