You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The managesieve plugin (incorrectly) strips angle brackets from the message body (reason).
To reproduce:
Enable the managesieve plugin by adding $config['plugins'] = array( 'managesieve' ); to Roundcube's config and configure it to connect to a ManageSieve server.
Add $config['managesieve_vacation'] = 1; to the plugin's config to enable the interface for out-of-office responses.
Log into Roundcube and go to Settings > Out of Office.
Input a Body containing angle brackets (i.e. foo <bar> baz).
Hit Save.
Reload the page.
The angle brackets and anything between them are now gone. (i.e. foo baz).
That it's actually Roundcube that butchers the message body can be verified by turning on managesieve_debug. Logs show that the message sent to the server was already stripped of the angle brackets.
The
managesieve
plugin (incorrectly) strips angle brackets from the message body (reason
).To reproduce:
managesieve
plugin by adding$config['plugins'] = array( 'managesieve' );
to Roundcube's config and configure it to connect to a ManageSieve server.$config['managesieve_vacation'] = 1;
to the plugin's config to enable the interface for out-of-office responses.foo <bar> baz
).foo baz
).That it's actually Roundcube that butchers the message body can be verified by turning on
managesieve_debug
. Logs show that the message sent to the server was already stripped of the angle brackets.The text was updated successfully, but these errors were encountered: