/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* ***** BEGIN LICENSE BLOCK ***** * Version: MPL 1.1/GPL 2.0/LGPL 2.1 * * The contents of this file are subject to the Mozilla Public License Version * 1.1 (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.mozilla.org/MPL/ * * Software distributed under the License is distributed on an "AS IS" basis, * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License * for the specific language governing rights and limitations under the * License. * * The Original Code is mozilla.org code. * * The Initial Developer of the Original Code is * Netscape Communications Corporation. * Portions created by the Initial Developer are Copyright (C) 1998 * the Initial Developer. All Rights Reserved. * * Contributor(s): * * Alternatively, the contents of this file may be used under the terms of * either of the GNU General Public License Version 2 or later (the "GPL"), * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), * in which case the provisions of the GPL or the LGPL are applicable instead * of those above. If you wish to allow use of your version of this file only * under the terms of either the GPL or the LGPL, and not to allow others to * use your version of this file under the terms of the MPL, indicate your * decision by deleting the provisions above and replace them with the notice * and other provisions required by the GPL or the LGPL. If you do not delete * the provisions above, a recipient may use your version of this file under * the terms of any one of the MPL, the GPL or the LGPL. * * ***** END LICENSE BLOCK ***** */ /* * 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_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_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_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_ */