Commit 7b5f1106 7b5f1106b09745d457f5178dc1e6c7a360fc186d by Sergey Poznyakoff

Initialize rcpt_mask with RCPT_DEFAULT.

1 parent 6d1fc77c
...@@ -24,7 +24,7 @@ size_t current_message = 0; ...@@ -24,7 +24,7 @@ size_t current_message = 0;
24 mh_context_t *context; 24 mh_context_t *context;
25 mh_context_t *profile; 25 mh_context_t *profile;
26 mh_context_t *sequences; 26 mh_context_t *sequences;
27 int rcpt_mask = RCPT_ALL; 27 int rcpt_mask = RCPT_DEFAULT;
28 28
29 /* Global profile */ 29 /* Global profile */
30 30
......