eudora-mac/mailbox.c

1 line
93 KiB
C
Raw Normal View History

2018-05-23 09:59:15 +00:00
/* Copyright (c) 2017, Computer History Museum All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted (subject to the limitations in the disclaimer below) provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Computer History Museum nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. NO EXPRESS OR IMPLIED LICENSES TO ANY PARTY'S PATENT RIGHTS ARE GRANTED BY THIS LICENSE. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "mailbox.h" #define FILE_NUM 21 #pragma segment Mailbox typedef enum { kDoAdd,kDoDelete,kDoUpdate,kDoDeleteAttachments,kDoCopy } IMAPUpdateType; typedef struct { short menu; short item; short score; } MenuAndScore, *MenuAndScorePtr, **MenuAndScoreHandle; void ZeroMailbox(TOCHandle tocH); OSErr AddBoxMap(short vRef,long dirId); Boolean WantRebuildTOC(UPtr boxName,OSErr why); void AddBox(short function,UPtr name,short level,Boolean unread); void RemoveBox(short function,UPtr name,short level); OSErr BoxSpecByNameInMenu(MenuHandle mh,FSSpecPtr spec,PStr name); long TOCDelEmpty(TOCHandle tocH); short FindBoxByNameIn1Menu(MenuHandle mh, PStr name); OSErr RedoWho(TOCHandle tocH,short sumNum); OSErr ChainTrash(FSSpecPtr spec); void SetSumColorLo(TOCHandle tocH,short sumNum,short color); void SetStateLo(TOCHandle tocH,int sumNum,int state); OSErr BoxMatchMenuItems(PStr s,MenuAndScoreHandle *mashPtr,int score()); OSErr BoxMatchMenuItemsInMenu(MenuHandle mh, AccuPtr a,PStr name,int score()); OSErr BoxMatchMenuItemsIn1Menu(MenuHandle mh, AccuPtr a,PStr name,int score()); int BoxMatchScore(PStr name,PStr candidate); int CompareMAS(MenuAndScorePtr mas1,MenuAndScorePtr mas2); void SwapMAS(MenuAndScorePtr mas1,MenuAndScorePtr mas2); static void ProcessIMAPChanges(Handle sumList,TOCHandle toc,IMAPUpdateType message); static OSErr IMAPRecvLine(TransStream stream, UPtr buffer, long *size); void DecodeIMAPMessages(TOCHandle tocH, FSSpecPtr spec); static LineIOP Lip; static long gIMAPMsgEnd; /************************************************************************ * TOCSetDirty - set the dirty bit ************************************************************************/ void TOCSetDirty(TOCHandle tocH,Boolean dirty) { (*tocH)->durty = dirty; AnyTOCDirty++; } /************************************************************************ * AddOutgoingMesgError ************************************************************************/ OSErr AddOutgoingMesgError (short sumNum, uLong uidHash, int errorCode, short template,...) { TOCHandle tocH = nil; short outSumNum = sumNum; Str255 fmtdError, error; va_list args; #ifdef THREADING_ON TOCHandle tempTocH = nil; if (InAThread()) { tocH = GetRealOutTOC(); tempTocH = GetTempOutTOC(); outSumNum = FindSumByHash(tocH,uidHash); } else tempTocH = tocH = GetRealOutTOC(); #else tempTocH = tocH = GetOutTOC(); #endif if