Commit ab605367 ab605367003039b497c653dac666ebd651f551b8 by Sergey Poznyakoff

(mh_read_profile): Handle new profile variable "Decode-Fallback"

1 parent 366f4dd9
...@@ -71,6 +71,9 @@ mh_read_profile () ...@@ -71,6 +71,9 @@ mh_read_profile ()
71 mh_context_read (profile); 71 mh_context_read (profile);
72 72
73 mh_set_reply_regex (mh_global_profile_get ("Reply-Regex", NULL)); 73 mh_set_reply_regex (mh_global_profile_get ("Reply-Regex", NULL));
74 p = mh_global_profile_get ("Decode-Fallback", NULL);
75 if (p && mu_set_default_fallback (p))
76 mu_error (_("Incorrect value for decode-fallback"));
74 } 77 }
75 78
76 /* Global context */ 79 /* Global context */
......