X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/79f7ee461078bd837632b2ca9fdf94ab4a080a36..94187a80bd60baab4b9c4b949ad820d730578123:/h/mime.h diff --git a/h/mime.h b/h/mime.h index 92d6462a..e389b284 100644 --- a/h/mime.h +++ b/h/mime.h @@ -1,6 +1,4 @@ - -/* - * mime.h -- definitions for MIME +/* mime.h -- definitions for MIME */ #define VRSN_FIELD "MIME-Version" @@ -12,15 +10,11 @@ #define DESCR_FIELD "Content-Description" #define DISPO_FIELD "Content-Disposition" #define MD5_FIELD "Content-MD5" -#define ATTACH_FIELD "Attach" - -#define isatom(c) (isascii((unsigned char) c) \ - && !isspace ((unsigned char) c) \ - && !iscntrl ((unsigned char) c) && (c) != '(' \ - && (c) != ')' && (c) != '<' && (c) != '>' \ - && (c) != '@' && (c) != ',' && (c) != ';' \ - && (c) != ':' && (c) != '\\' && (c) != '"' \ - && (c) != '.' && (c) != '[' && (c) != ']') +#define PSEUDOHEADER_PREFIX "Nmh-" +#define ATTACH_FIELD PSEUDOHEADER_PREFIX "Attach" +#define ATTACH_FIELD_ALT "Attach" +#define MHBUILD_FILE_PSEUDOHEADER PSEUDOHEADER_PREFIX "mhbuild-file-" +#define MHBUILD_ARGS_PSEUDOHEADER PSEUDOHEADER_PREFIX "mhbuild-args-" /* * Test for valid characters used in "token" @@ -55,4 +49,3 @@ #define BPERLIN (CPERLIN / 4) #define LPERMSG 632 #define CPERMSG (LPERMSG * CPERLIN) -