forked from neomutt/neomutt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lib.h
78 lines (66 loc) · 2.78 KB
/
lib.h
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/**
* @file
* Email Aliases
*
* @authors
* Copyright (C) 2020 Richard Russon <[email protected]>
*
* @copyright
* This program is free software: you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free Software
* Foundation, either version 2 of the License, or (at your option) any later
* version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along with
* this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* @page lib_alias Alias
*
* Email Aliases (Address Book)
*
* | File | Description |
* | :------------------ | :------------------------- |
* | alias/alias.c | @subpage alias_alias |
* | alias/array.c | @subpage alias_array |
* | alias/commands.c | @subpage alias_commands |
* | alias/config.c | @subpage alias_config |
* | alias/dlg_alias.c | @subpage alias_dlg_alias |
* | alias/dlg_query.c | @subpage alias_dlg_query |
* | alias/functions.c | @subpage alias_functions |
* | alias/gui.c | @subpage alias_gui |
* | alias/reverse.c | @subpage alias_reverse |
* | alias/sort.c | @subpage alias_sort |
*/
#ifndef MUTT_ALIAS_LIB_H
#define MUTT_ALIAS_LIB_H
#include <stddef.h>
#include "core/lib.h"
#include <stdbool.h>
#include <stdint.h>
struct Address;
struct AddressList;
struct Buffer;
struct ConfigSubset;
struct Envelope;
void alias_init (void);
void alias_shutdown(void);
void alias_create (struct AddressList *al, const struct ConfigSubset *sub);
struct AddressList *alias_lookup (const char *name);
bool mutt_addr_is_user (const struct Address *addr);
void mutt_expand_aliases_env(struct Envelope *env);
void mutt_expand_aliases (struct AddressList *al);
struct AddressList *mutt_get_address (struct Envelope *env, const char **prefix);
enum CommandResult parse_alias (struct Buffer *buf, struct Buffer *s, intptr_t data, struct Buffer *err);
enum CommandResult parse_unalias(struct Buffer *buf, struct Buffer *s, intptr_t data, struct Buffer *err);
int alias_complete(char *buf, size_t buflen, struct ConfigSubset *sub);
void alias_dialog (struct Mailbox *m, struct ConfigSubset *sub);
int query_complete(struct Buffer *buf, struct ConfigSubset *sub);
void query_index (struct Mailbox *m, struct ConfigSubset *sub);
struct Address *alias_reverse_lookup(const struct Address *addr);
#endif /* MUTT_ALIAS_LIB_H */