161 lines
3.5 KiB
C++
161 lines
3.5 KiB
C++
/*
|
|
* CDE - Common Desktop Environment
|
|
*
|
|
* Copyright (c) 1993-2012, The Open Group. All rights reserved.
|
|
*
|
|
* These libraries and programs are free software; you can
|
|
* redistribute them and/or modify them under the terms of the GNU
|
|
* Lesser General Public License as published by the Free Software
|
|
* Foundation; either version 2 of the License, or (at your option)
|
|
* any later version.
|
|
*
|
|
* These libraries and programs are distributed in the hope that
|
|
* they will be useful, but WITHOUT ANY WARRANTY; without even the
|
|
* implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
* PURPOSE. See the GNU Lesser General Public License for more
|
|
* details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with these libraries and programs; if not, write
|
|
* to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
|
|
* Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
/* $XConsortium: dmx.hh /main/5 1996/04/21 19:43:59 drk $ */
|
|
|
|
#ifndef _DMX_HH
|
|
#define _DMX_HH
|
|
|
|
/*
|
|
*+SNOTICE
|
|
*
|
|
* $:$
|
|
*
|
|
* RESTRICTED CONFIDENTIAL INFORMATION:
|
|
*
|
|
* The information in this document is subject to special
|
|
* restrictions in a confidential disclosure agreement between
|
|
* HP, IBM, Sun, USL, SCO and Univel. Do not distribute this
|
|
* document outside HP, IBM, Sun, USL, SCO, or Univel without
|
|
* Sun's specific written approval. This document and all copies
|
|
* and derivative works thereof must be returned or destroyed at
|
|
* Sun's request.
|
|
*
|
|
* Copyright 1994 Sun Microsystems, Inc. All rights reserved.
|
|
*
|
|
*+ENOTICE
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/types.h>
|
|
#include <ctype.h>
|
|
|
|
#if defined(sun) && defined(_XOPEN_SOURCE)
|
|
#ifndef B_TRUE
|
|
#define B_TRUE _B_TRUE
|
|
#endif
|
|
#ifndef B_FALSE
|
|
#define B_FALSE _B_FALSE
|
|
#endif
|
|
#endif /* sun && _XOPEN_SOURCE */
|
|
|
|
#if defined(_AIX)
|
|
#ifndef B_FALSE
|
|
#define B_FALSE 0
|
|
#endif
|
|
#ifndef B_TRUE
|
|
#define B_TRUE 1
|
|
#endif
|
|
#endif /* _AIX */
|
|
|
|
|
|
|
|
#include <DtMail/DtMail.hh>
|
|
#include <DtMail/DtMailError.hh>
|
|
#include <DtMail/DtMailValues.hh>
|
|
#include <Dt/Dts.h>
|
|
|
|
extern const char *const dmxversion;
|
|
|
|
enum DmxHeaderType { MSGLIST, MSGHEADER, NUMHDRTYPES };
|
|
enum DmxHeaders
|
|
{
|
|
DMXFROM,
|
|
DMXSUBJ,
|
|
DMXCLENGTH,
|
|
DMXSTATUS,
|
|
DMXDATE,
|
|
DMXTO,
|
|
DMXV3CHARSET,
|
|
DMXCONTENTTYPE,
|
|
DMXNUMHDRS
|
|
};
|
|
|
|
// This is undoubtedly illegal, unethical, and immoral. So sue me.
|
|
#if !defined(SunOS) && !defined(_AIX)
|
|
#undef boolean_t
|
|
typedef enum { B_FALSE, B_TRUE } boolean_t;
|
|
#endif // SunOS
|
|
|
|
// utils
|
|
char *convertValueToString (DtMailValueSeq *value, int s);
|
|
boolean_t handleError (DtMailEnv &, char *);
|
|
char *formatHeader (DtMailHeaderLine &, enum DmxHeaderType);
|
|
|
|
class DmxMsg
|
|
{
|
|
public:
|
|
DmxMsg (void);
|
|
|
|
char *printHeader (enum DmxHeaderType);
|
|
void display (void);
|
|
void setHandle (DtMailMessageHandle &);
|
|
void setHeader (DtMailHeaderLine &);
|
|
void setMessage (DtMail::Message *);
|
|
void setInfo (char *);
|
|
void parse (void);
|
|
void getFlags (void);
|
|
|
|
|
|
DtMailMessageHandle msgHandle;
|
|
DtMailHeaderLine msgHeader;
|
|
DtMail::Message *message;
|
|
|
|
DtMail::BodyPart **bodyParts;
|
|
int numBPs;
|
|
|
|
char *addlInfo;
|
|
boolean_t cachedValues;
|
|
boolean_t isCurrent;
|
|
boolean_t hasAttachments;
|
|
boolean_t isNew;
|
|
// other flags for status (read, unopened, etc.)
|
|
};
|
|
|
|
|
|
class DmxMailbox
|
|
{
|
|
public:
|
|
DmxMailbox (void);
|
|
|
|
DtMail::MailBox *mbox;
|
|
int messageCount;
|
|
int newMessages;
|
|
int firstNew;
|
|
char *name;
|
|
|
|
void loadMessages (void);
|
|
void createHeaderRequest (DtMailHeaderRequest &);
|
|
void printMailboxInfo (void);
|
|
|
|
DmxMsg msg [1024];
|
|
};
|
|
|
|
|
|
|
|
#endif // _DMX_HH
|