Changeset 5450:6244eefaea64 for headers.c
Legend:
- Unmodified
- Added
- Removed
-
headers.c
r5443 r5450 123 123 mutt_expand_aliases_env (msg->env); 124 124 125 /* search through the user defined headers added to see if either a126 * fcc: or attach -file: field was specified.125 /* search through the user defined headers added to see if 126 * fcc: or attach: or pgp: was specified 127 127 */ 128 128 … … 133 133 keep = 1; 134 134 135 /* keep track of whether or not we see the in-reply-to field. if we did136 * not, remove the references: field later so that we can generate a new137 * message based upon this one.138 */139 135 if (fcc && ascii_strncasecmp ("fcc:", cur->data, 4) == 0) 140 136 { … … 180 176 keep = 0; 181 177 } 182 183 184 178 else if ((WithCrypto & APPLICATION_PGP) 185 && ascii_strncasecmp ("pgp:", cur->data, 4) == 0)179 && ascii_strncasecmp ("pgp:", cur->data, 4) == 0) 186 180 { 187 181 msg->security = mutt_parse_crypt_hdr (cur->data + 4, 0, APPLICATION_PGP);
