NeoMutt  2024-04-16-36-g75b6fb
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
private.h File Reference

Private Envelope Data. More...

#include "config.h"
+ Include dependency graph for private.h:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Enumerations

enum  HeaderField {
  HDR_FROM , HDR_TO , HDR_CC , HDR_BCC ,
  HDR_SUBJECT , HDR_REPLYTO , HDR_FCC , HDR_MIX ,
  HDR_CRYPT , HDR_CRYPTINFO , HDR_AUTOCRYPT , HDR_NEWSGROUPS ,
  HDR_FOLLOWUPTO , HDR_XCOMMENTTO , HDR_CUSTOM_HEADERS , HDR_ATTACH_TITLE
}
 Ordered list of headers for the compose screen. More...
 

Variables

const char *const Prompts []
 Names of header fields used in the envelope, e.g. From:, To:
 

Detailed Description

Private Envelope Data.

Authors
  • Richard Russon

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/.

Definition in file private.h.

Enumeration Type Documentation

◆ HeaderField

Ordered list of headers for the compose screen.

The position of various fields on the compose screen.

Enumerator
HDR_FROM 

"From:" field

HDR_TO 

"To:" field

HDR_CC 

"Cc:" field

HDR_BCC 

"Bcc:" field

HDR_SUBJECT 

"Subject:" field

HDR_REPLYTO 

"Reply-To:" field

HDR_FCC 

"Fcc:" (save folder) field

HDR_MIX 

"Mix:" field (Mixmaster chain)

HDR_CRYPT 

"Security:" field (encryption/signing info)

HDR_CRYPTINFO 

"Sign as:" field (encryption/signing info)

HDR_AUTOCRYPT 

"Autocrypt:" and "Recommendation:" fields

HDR_NEWSGROUPS 

"Newsgroups:" field

HDR_FOLLOWUPTO 

"Followup-To:" field

HDR_XCOMMENTTO 

"X-Comment-To:" field

HDR_CUSTOM_HEADERS 

"Headers:" field

HDR_ATTACH_TITLE 

The "-- Attachments" line.

Definition at line 33 of file private.h.

34{
35 HDR_FROM,
36 HDR_TO,
37 HDR_CC,
38 HDR_BCC,
41 HDR_FCC,
42#ifdef MIXMASTER
43 HDR_MIX,
44#endif
45 HDR_CRYPT,
47#ifdef USE_AUTOCRYPT
49#endif
55};
@ HDR_SUBJECT
"Subject:" field
Definition: private.h:39
@ HDR_REPLYTO
"Reply-To:" field
Definition: private.h:40
@ HDR_AUTOCRYPT
"Autocrypt:" and "Recommendation:" fields
Definition: private.h:48
@ HDR_FCC
"Fcc:" (save folder) field
Definition: private.h:41
@ HDR_ATTACH_TITLE
The "-- Attachments" line.
Definition: private.h:54
@ HDR_CRYPT
"Security:" field (encryption/signing info)
Definition: private.h:45
@ HDR_CC
"Cc:" field
Definition: private.h:37
@ HDR_MIX
"Mix:" field (Mixmaster chain)
Definition: private.h:43
@ HDR_TO
"To:" field
Definition: private.h:36
@ HDR_BCC
"Bcc:" field
Definition: private.h:38
@ HDR_CUSTOM_HEADERS
"Headers:" field
Definition: private.h:53
@ HDR_FOLLOWUPTO
"Followup-To:" field
Definition: private.h:51
@ HDR_XCOMMENTTO
"X-Comment-To:" field
Definition: private.h:52
@ HDR_NEWSGROUPS
"Newsgroups:" field
Definition: private.h:50
@ HDR_CRYPTINFO
"Sign as:" field (encryption/signing info)
Definition: private.h:46
@ HDR_FROM
"From:" field
Definition: private.h:35

Variable Documentation

◆ Prompts

const char* const Prompts[]
extern

Names of header fields used in the envelope, e.g. From:, To:

Definition at line 93 of file window.c.