X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=globals.h;h=96c439af44671bdd2558dce95c3d704a79211f77;hp=6c079bedfd13b9ec6129ec737645a5947f40bdaf;hb=3e9a92ab72e04aecb0fc4098098a1b57c5101d84;hpb=69411872c23f91f24f76cf3a4a4b3be67640e44d diff --git a/globals.h b/globals.h index 6c079be..96c439a 100644 --- a/globals.h +++ b/globals.h @@ -11,9 +11,11 @@ #include "alias.h" -#include "lib/str.h" +#include +#include +#include + #include "lib/list.h" -#include "lib/rx.h" WHERE void (*mutt_error) (const char *, ...); WHERE void (*mutt_message) (const char *, ...); @@ -25,11 +27,10 @@ WHERE char AttachmentMarker[STRING]; WHERE char Quotebuf[SHORT_STRING]; -#if defined(DL_STANDALONE) && defined(USE_DOTLOCK) WHERE char *MuttDotlock; -#endif -WHERE ADDRESS *From; +WHERE address_t *EnvFrom; +WHERE address_t *From; WHERE char *AliasFile; WHERE char *AliasFmt; @@ -47,7 +48,7 @@ WHERE char *DisplayFilter; WHERE char *DsnNotify; WHERE char *DsnReturn; WHERE char *Editor; -WHERE char *EscChar; +WHERE char *EditorHeaders; WHERE char *FileCharset; WHERE char *FolderFormat; WHERE char *ForwFmt; @@ -56,7 +57,6 @@ WHERE char *HdrFmt; WHERE char *Homedir; WHERE char *Hostname; -#ifdef USE_IMAP WHERE char *ImapAuthenticators INITVAL (NULL); WHERE char *ImapDelimChars INITVAL (NULL); WHERE char *ImapHeaders; @@ -64,16 +64,15 @@ WHERE char *ImapHomeNamespace INITVAL (NULL); WHERE char *ImapLogin INITVAL (NULL); WHERE char *ImapPass INITVAL (NULL); WHERE char *ImapUser INITVAL (NULL); -#endif WHERE char *Inbox; WHERE char *Ispell; WHERE char *Locale; WHERE char *MailcapPath; WHERE char *Maildir; -#if USE_HCACHE +#ifdef USE_HCACHE WHERE char *HeaderCache; -#if HAVE_GDBM || HAVE_DB4 +#if defined(HAVE_GDBM) || defined(HAVE_DB4) WHERE char *HeaderCachePageSize; #endif /* HAVE_GDBM || HAVE_DB4 */ #endif /* USE_HCACHE */ @@ -83,6 +82,7 @@ WHERE char *MhUnseen; WHERE char *MsgFmt; WHERE char *MsgIdFormat; +WHERE rx_t AttachRemindRegexp; WHERE rx_t Mask; WHERE rx_t QuoteRegexp; WHERE rx_t ReplyRegexp; @@ -90,10 +90,9 @@ WHERE rx_t Smileys; WHERE rx_t GecosMask; WHERE rx_t StripWasRegexp; -#ifdef USE_SOCKET WHERE char *Preconnect INITVAL (NULL); WHERE char *Tunnel INITVAL (NULL); -#endif /* USE_SOCKET */ +WHERE short NetInc; #ifdef MIXMASTER WHERE char *Mixmaster; @@ -118,13 +117,12 @@ WHERE char *Pager; WHERE char *PagerFmt; WHERE char *PipeSep; -#ifdef USE_POP WHERE char *PopAuthenticators INITVAL (NULL); WHERE short PopCheckTimeout; WHERE char *PopHost; WHERE char *PopPass INITVAL (NULL); WHERE char *PopUser INITVAL (NULL); -#endif + WHERE char *PostIndentString; WHERE char *Postponed; WHERE char *Prefix; @@ -144,7 +142,6 @@ WHERE char *SimpleSearch; #if defined(USE_LIBESMTP) WHERE char *SmtpAuthUser; WHERE char *SmtpAuthPass; -WHERE char *SmtpEnvFrom; WHERE char *SmtpHost; WHERE unsigned short SmtpPort; WHERE char *SmtpUseTLS; @@ -172,7 +169,6 @@ WHERE char *Tempdir; WHERE char *Tochars; WHERE char *TrashPath; WHERE char *Username; -WHERE char *Visual; WHERE char *XtermTitle; WHERE char *XtermLeave; WHERE char *XtermIcon; @@ -182,6 +178,10 @@ WHERE char *LastFolder; WHERE LIST *AutoViewList INITVAL (0); WHERE LIST *AlternativeOrderList INITVAL (0); +WHERE LIST *AttachAllow INITVAL(0); +WHERE LIST *AttachExclude INITVAL(0); +WHERE LIST *InlineAllow INITVAL(0); +WHERE LIST *InlineExclude INITVAL(0); WHERE LIST *HeaderOrderList INITVAL (0); WHERE LIST *Ignore INITVAL (0); WHERE LIST *MimeLookupList INITVAL (0); @@ -229,6 +229,7 @@ WHERE short Timeout; WHERE short Umask INITVAL (0077); WHERE short WrapMargin; WHERE short WriteInc; +WHERE short MaxDispRecips; WHERE short MaxLineLength; WHERE short ScoreThresholdDelete; @@ -238,10 +239,8 @@ WHERE short ScoreThresholdFlag; WHERE short DrawFullLine INITVAL (0); WHERE short SidebarWidth; -#ifdef USE_IMAP WHERE short ImapKeepalive; WHERE short ImapBuffyTimeout; -#endif /* flags for received signals */ WHERE SIG_ATOMIC_VOLATILE_T SigAlrm INITVAL (0); @@ -278,7 +277,6 @@ WHERE char *SmimeCryptAlg; WHERE short SmimeTimeout; WHERE char *SmimeCertificates; WHERE char *SmimeKeys; -WHERE char *SmimeCryptAlg; WHERE char *SmimeCALocation; WHERE char *SmimeVerifyCommand; WHERE char *SmimeVerifyOpaqueCommand; @@ -297,26 +295,9 @@ const char *Weekdays[] = { "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" }; const char *Months[] = { "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec", "ERR" }; - -const char *BodyTypes[] = - { "x-unknown", "audio", "application", "image", "message", "model", -"multipart", "text", "video" }; -const char *BodyEncodings[] = - { "x-unknown", "7bit", "8bit", "quoted-printable", "base64", "binary", -"x-uuencoded" }; #else extern const char *Weekdays[]; extern const char *Months[]; #endif -#ifdef MAIN_C -/* so that global vars get included - * FIXME WTF IS THIS?!?!???!?!??!?!?? - */ -#include "mx.h" -#include "buffy.h" -#include "sort.h" -#include "mutt_crypt.h" -#endif /* MAIN_C */ - #endif /* !_GLOBALS_H */