(util_setenv): Special handling for decode-fallback variable
Showing
1 changed file
with
5 additions
and
0 deletions
... | @@ -553,6 +553,11 @@ util_setenv (const char *variable, void *value, mail_env_data_t type, | ... | @@ -553,6 +553,11 @@ util_setenv (const char *variable, void *value, mail_env_data_t type, |
553 | fprintf (stderr, "\n"); | 553 | fprintf (stderr, "\n"); |
554 | } | 554 | } |
555 | } | 555 | } |
556 | else if (strcmp (variable, "decode-fallback") == 0) | ||
557 | { | ||
558 | if (mu_set_default_fallback (value)) | ||
559 | mu_error (_("Incorrect value for decode-fallback")); | ||
560 | } | ||
556 | break; | 561 | break; |
557 | 562 | ||
558 | case Mail_env_boolean: | 563 | case Mail_env_boolean: | ... | ... |
-
Please register or sign in to post a comment