Skip to content
Snippets Groups Projects
Commit ffbcd3bf authored by Stephan Bosch's avatar Stephan Bosch
Browse files

lib-sieve: vacation extension: Make codepoint limit for subject header configurable.

parent e4b03a69
No related branches found
No related tags found
No related merge requests found
...@@ -53,6 +53,13 @@ sieve_vacation_default_period = 7d ...@@ -53,6 +53,13 @@ sieve_vacation_default_period = 7d
is specified. The configured value must lie between the is specified. The configured value must lie between the
sieve_vacation_min_period and sieve_vacation_max_period. sieve_vacation_min_period and sieve_vacation_max_period.
sieve_vacation_max_subject_codepoints = 256
The maximum number of Unicode codepoints used in the Subject header generated
for the outgoing vacation message. When composite characters are involved,
the number of actual charactes in the Subject text can be less than this
number, otherwise it is equal. When the subject text exceeds the limit, it is
truncated and the removed part is replaced with an ellipsis character ('...').
sieve_vacation_use_original_recipient = no sieve_vacation_use_original_recipient = no
This specifies whether the original envelope recipient should be used in the This specifies whether the original envelope recipient should be used in the
check for implicit delivery. The vacation command checks headers of the check for implicit delivery. The vacation command checks headers of the
......
...@@ -990,7 +990,7 @@ static int act_vacation_send ...@@ -990,7 +990,7 @@ static int act_vacation_send
subject = ctx->subject; subject = ctx->subject;
} }
subject = str_sanitize_utf8(subject, 256); subject = str_sanitize_utf8(subject, config->max_subject_codepoints);
/* Obtain full To address for reply */ /* Obtain full To address for reply */
......
...@@ -18,6 +18,7 @@ bool ext_vacation_load ...@@ -18,6 +18,7 @@ bool ext_vacation_load
sieve_number_t min_period, max_period, default_period; sieve_number_t min_period, max_period, default_period;
bool use_original_recipient, dont_check_recipient, send_from_recipient, bool use_original_recipient, dont_check_recipient, send_from_recipient,
to_header_ignore_envelope; to_header_ignore_envelope;
unsigned long long max_subject_codepoints;
if ( *context != NULL ) { if ( *context != NULL ) {
ext_vacation_unload(ext); ext_vacation_unload(ext);
...@@ -51,6 +52,11 @@ bool ext_vacation_load ...@@ -51,6 +52,11 @@ bool ext_vacation_load
"sieve_vacation_max_period"); "sieve_vacation_max_period");
} }
if ( !sieve_setting_get_uint_value
(svinst, "sieve_vacation_max_subject_codepoints", &max_subject_codepoints) ) {
max_subject_codepoints = EXT_VACATION_DEFAULT_MAX_SUBJECT_CODEPOINTS;
}
if ( !sieve_setting_get_bool_value if ( !sieve_setting_get_bool_value
(svinst, "sieve_vacation_use_original_recipient", &use_original_recipient) ) { (svinst, "sieve_vacation_use_original_recipient", &use_original_recipient) ) {
use_original_recipient = FALSE; use_original_recipient = FALSE;
...@@ -76,6 +82,7 @@ bool ext_vacation_load ...@@ -76,6 +82,7 @@ bool ext_vacation_load
config->min_period = min_period; config->min_period = min_period;
config->max_period = max_period; config->max_period = max_period;
config->default_period = default_period; config->default_period = default_period;
config->max_subject_codepoints = max_subject_codepoints;
config->use_original_recipient = use_original_recipient; config->use_original_recipient = use_original_recipient;
config->dont_check_recipient = dont_check_recipient; config->dont_check_recipient = dont_check_recipient;
config->send_from_recipient = send_from_recipient; config->send_from_recipient = send_from_recipient;
......
...@@ -10,11 +10,13 @@ ...@@ -10,11 +10,13 @@
#define EXT_VACATION_DEFAULT_PERIOD (7*24*60*60) #define EXT_VACATION_DEFAULT_PERIOD (7*24*60*60)
#define EXT_VACATION_DEFAULT_MIN_PERIOD (24*60*60) #define EXT_VACATION_DEFAULT_MIN_PERIOD (24*60*60)
#define EXT_VACATION_DEFAULT_MAX_PERIOD 0 #define EXT_VACATION_DEFAULT_MAX_PERIOD 0
#define EXT_VACATION_DEFAULT_MAX_SUBJECT_CODEPOINTS 256
struct ext_vacation_config { struct ext_vacation_config {
unsigned int min_period; unsigned int min_period;
unsigned int max_period; unsigned int max_period;
unsigned int default_period; unsigned int default_period;
unsigned long long max_subject_codepoints;
bool use_original_recipient; bool use_original_recipient;
bool dont_check_recipient; bool dont_check_recipient;
bool send_from_recipient; bool send_from_recipient;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment

Consent

On this website, we use the web analytics service Matomo to analyze and review the use of our website. Through the collected statistics, we can improve our offerings and make them more appealing for you. Here, you can decide whether to allow us to process your data and set corresponding cookies for these purposes, in addition to technically necessary cookies. Further information on data protection—especially regarding "cookies" and "Matomo"—can be found in our privacy policy. You can withdraw your consent at any time.