mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-28 03:17:31 +09:00
90 lines
4.7 KiB
C
90 lines
4.7 KiB
C
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
/*
|
|
* This interface allows any module to access the encoder/decoder
|
|
* routines for RFC822 headers. This will allow any mail/news module
|
|
* to call on these routines.
|
|
*/
|
|
#ifndef nsMailHeaders_h_
|
|
#define nsMailHeaders_h_
|
|
|
|
/*
|
|
* These are the defines for standard header field names.
|
|
*/
|
|
#define HEADER_BCC "BCC"
|
|
#define HEADER_CC "CC"
|
|
#define HEADER_CONTENT_BASE "Content-Base"
|
|
#define HEADER_CONTENT_LOCATION "Content-Location"
|
|
#define HEADER_CONTENT_ID "Content-ID"
|
|
#define HEADER_CONTENT_DESCRIPTION "Content-Description"
|
|
#define HEADER_CONTENT_DISPOSITION "Content-Disposition"
|
|
#define HEADER_CONTENT_ENCODING "Content-Encoding"
|
|
#define HEADER_CONTENT_LANGUAGE "Content-Language"
|
|
#define HEADER_CONTENT_LENGTH "Content-Length"
|
|
#define HEADER_CONTENT_NAME "Content-Name"
|
|
#define HEADER_CONTENT_TRANSFER_ENCODING "Content-Transfer-Encoding"
|
|
#define HEADER_CONTENT_TYPE "Content-Type"
|
|
#define HEADER_DATE "Date"
|
|
#define HEADER_DISTRIBUTION "Distribution"
|
|
#define HEADER_FCC "FCC"
|
|
#define HEADER_FOLLOWUP_TO "Followup-To"
|
|
#define HEADER_FROM "From"
|
|
#define HEADER_STATUS "Status"
|
|
#define HEADER_LINES "Lines"
|
|
#define HEADER_LIST_POST "List-Post"
|
|
#define HEADER_MAIL_FOLLOWUP_TO "Mail-Followup-To"
|
|
#define HEADER_MAIL_REPLY_TO "Mail-Reply-To"
|
|
#define HEADER_MESSAGE_ID "Message-ID"
|
|
#define HEADER_MIME_VERSION "MIME-Version"
|
|
#define HEADER_NEWSGROUPS "Newsgroups"
|
|
#define HEADER_ORGANIZATION "Organization"
|
|
#define HEADER_REFERENCES "References"
|
|
#define HEADER_REPLY_TO "Reply-To"
|
|
#define HEADER_RESENT_COMMENTS "Resent-Comments"
|
|
#define HEADER_RESENT_DATE "Resent-Date"
|
|
#define HEADER_RESENT_FROM "Resent-From"
|
|
#define HEADER_RESENT_MESSAGE_ID "Resent-Message-ID"
|
|
#define HEADER_RESENT_SENDER "Resent-Sender"
|
|
#define HEADER_RESENT_TO "Resent-To"
|
|
#define HEADER_RESENT_CC "Resent-CC"
|
|
#define HEADER_SENDER "Sender"
|
|
#define HEADER_SUBJECT "Subject"
|
|
#define HEADER_TO "To"
|
|
#define HEADER_APPROVED_BY "Approved-By"
|
|
#define HEADER_X_MAILER "X-Mailer"
|
|
#define HEADER_USER_AGENT "User-Agent"
|
|
#define HEADER_X_NEWSREADER "X-Newsreader"
|
|
#define HEADER_X_POSTING_SOFTWARE "X-Posting-Software"
|
|
#define HEADER_X_MOZILLA_STATUS "X-Mozilla-Status"
|
|
#define HEADER_X_MOZILLA_STATUS2 "X-Mozilla-Status2"
|
|
#define HEADER_X_MOZILLA_NEWSHOST "X-Mozilla-News-Host"
|
|
#define HEADER_X_MOZILLA_DRAFT_INFO "X-Mozilla-Draft-Info"
|
|
#define HEADER_X_UIDL "X-UIDL"
|
|
#define HEADER_XREF "XREF"
|
|
#define HEADER_X_SUN_CHARSET "X-Sun-Charset"
|
|
#define HEADER_X_SUN_CONTENT_LENGTH "X-Sun-Content-Length"
|
|
#define HEADER_X_SUN_CONTENT_LINES "X-Sun-Content-Lines"
|
|
#define HEADER_X_SUN_DATA_DESCRIPTION "X-Sun-Data-Description"
|
|
#define HEADER_X_SUN_DATA_NAME "X-Sun-Data-Name"
|
|
#define HEADER_X_SUN_DATA_TYPE "X-Sun-Data-Type"
|
|
#define HEADER_X_SUN_ENCODING_INFO "X-Sun-Encoding-Info"
|
|
#define HEADER_X_PRIORITY "X-Priority"
|
|
|
|
#define HEADER_PARM_CHARSET "charset"
|
|
#define HEADER_PARM_START "start"
|
|
#define HEADER_PARM_BOUNDARY "BOUNDARY"
|
|
#define HEADER_PARM_FILENAME "FILENAME"
|
|
#define HEADER_PARM_NAME "NAME"
|
|
#define HEADER_PARM_TYPE "TYPE"
|
|
|
|
#define HEADER_X_MOZILLA_PART_URL "X-Mozilla-PartURL"
|
|
#define HEADER_X_MOZILLA_PART_SIZE "X-Mozilla-PartSize"
|
|
#define HEADER_X_MOZILLA_PART_DOWNLOADED "X-Mozilla-PartDownloaded"
|
|
#define HEADER_X_MOZILLA_CLOUD_PART "X-Mozilla-Cloud-Part"
|
|
#define HEADER_X_MOZILLA_IDENTITY_KEY "X-Identity-Key"
|
|
#define HEADER_X_MOZILLA_ACCOUNT_KEY "X-Account-Key"
|
|
#define HEADER_X_MOZILLA_KEYWORDS "X-Mozilla-Keys"
|
|
#endif /* nsMailHeaders_h_ */
|