Thanks to visit codestin.com
Credit goes to code.neomutt.org

NeoMutt  2025-12-11-189-gceedb6
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
muttlib.h
Go to the documentation of this file.
1
23
24#ifndef MUTT_MUTTLIB_H
25#define MUTT_MUTTLIB_H
26
27#include <stdbool.h>
28#include <stdio.h>
29#include <sys/types.h>
30#include "attach/lib.h"
31
32struct Address;
33struct Body;
34struct Buffer;
35struct passwd;
36struct stat;
37
38void mutt_adv_mktemp(struct Buffer *buf);
39void expand_path(struct Buffer *buf, bool regex);
40void buf_pretty_mailbox(struct Buffer *s);
41void buf_sanitize_filename (struct Buffer *buf, const char *path, short slash);
42void buf_save_path(struct Buffer *dest, const struct Address *a);
43int mutt_check_overwrite(const char *attname, const char *path, struct Buffer *fname, enum SaveAttach *opt, char **directory);
44void mutt_encode_path(struct Buffer *buf, const char *src);
45char * mutt_gecos_name(char *dest, size_t destlen, struct passwd *pw);
46void mutt_get_parent_path(const char *path, char *buf, size_t buflen);
47bool mutt_is_text_part(const struct Body *b);
48bool mutt_needs_mailcap(struct Body *b);
49FILE * mutt_open_read(const char *path, pid_t *thepid);
50void mutt_pretty_mailbox(char *buf, size_t buflen);
51void mutt_safe_path(struct Buffer *dest, const struct Address *a);
52int mutt_save_confirm(const char *s, struct stat *st);
53void mutt_save_path(char *d, size_t dsize, const struct Address *a);
54void mutt_sleep(short s);
55int mutt_str_pretty_size(struct Buffer *buf, size_t num);
56
57#endif /* MUTT_MUTTLIB_H */
GUI display the mailboxes in a side panel.
SaveAttach
Options for saving attachments.
Definition mutt_attach.h:57
void mutt_get_parent_path(const char *path, char *buf, size_t buflen)
Find the parent of a path (or mailbox)
Definition muttlib.c:910
void mutt_save_path(char *d, size_t dsize, const struct Address *a)
Turn an email address into a filename (for saving)
Definition muttlib.c:615
char * mutt_gecos_name(char *dest, size_t destlen, struct passwd *pw)
Lookup a user's real name in /etc/passwd.
Definition muttlib.c:320
int mutt_str_pretty_size(struct Buffer *buf, size_t num)
Display an abbreviated size, like 3.4K.
Definition muttlib.c:978
void mutt_sleep(short s)
Sleep for a while.
Definition muttlib.c:830
bool mutt_is_text_part(const struct Body *b)
Is this part of an email in plain text?
Definition muttlib.c:395
void buf_save_path(struct Buffer *dest, const struct Address *a)
Make a safe filename from an email address.
Definition muttlib.c:640
void buf_pretty_mailbox(struct Buffer *s)
Shorten a mailbox path using '~' or '='.
Definition muttlib.c:507
bool mutt_needs_mailcap(struct Body *b)
Does this type need a mailcap entry do display.
Definition muttlib.c:367
void expand_path(struct Buffer *buf, bool regex)
Create the canonical path.
Definition muttlib.c:121
void mutt_pretty_mailbox(char *buf, size_t buflen)
Shorten a mailbox path using '~' or '='.
Definition muttlib.c:428
void buf_sanitize_filename(struct Buffer *buf, const char *path, short slash)
Replace unsafe characters in a filename.
Definition muttlib.c:956
void mutt_adv_mktemp(struct Buffer *buf)
Create a temporary file.
Definition muttlib.c:83
void mutt_safe_path(struct Buffer *dest, const struct Address *a)
Make a safe filename from an email address.
Definition muttlib.c:670
int mutt_check_overwrite(const char *attname, const char *path, struct Buffer *fname, enum SaveAttach *opt, char **directory)
Ask the user if overwriting is necessary.
Definition muttlib.c:529
void mutt_encode_path(struct Buffer *buf, const char *src)
Convert a path to 'us-ascii'.
Definition muttlib.c:846
int mutt_save_confirm(const char *s, struct stat *st)
Ask the user to save.
Definition muttlib.c:733
FILE * mutt_open_read(const char *path, pid_t *thepid)
Run a command to read from.
Definition muttlib.c:688
An email address.
Definition address.h:35
The body of an email.
Definition body.h:36
String manipulation buffer.
Definition buffer.h:36