File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -53,6 +53,8 @@ sub vcl_recv {
5353 set req.http.cookie = regsuball (req.http.cookie , "; +" , ";" );
5454 set req.http.cookie = regsuball (req.http.cookie , ";(IBX_SESSION_ID[^=]*)=" , "; \1 =" );
5555 set req.http.cookie = regsuball (req.http.cookie , ";(ibexa[-_][^=]*)=" , "; \1 =" );
56+ // Keep the Raptor anonymous visitor identifier cookie so CDP segmentation can resolve visitor segments.
57+ set req.http.cookie = regsuball (req.http.cookie , ";(rsa)=" , "; \1 =" );
5658 set req.http.cookie = regsuball (req.http.cookie , ";[^ ][^;]*" , "" );
5759 set req.http.cookie = regsuball (req.http.cookie , "^[; ]+|[; ]+$" , "" );
5860
Original file line number Diff line number Diff line change @@ -53,6 +53,8 @@ sub vcl_recv {
5353 set req.http.cookie = regsuball (req.http.cookie , "; +" , ";" );
5454 set req.http.cookie = regsuball (req.http.cookie , ";(IBX_SESSION_ID[^=]*)=" , "; \1 =" );
5555 set req.http.cookie = regsuball (req.http.cookie , ";(ibexa[-_][^=]*)=" , "; \1 =" );
56+ // Keep the Raptor anonymous visitor identifier cookie so CDP segmentation can resolve visitor segments.
57+ set req.http.cookie = regsuball (req.http.cookie , ";(rsa)=" , "; \1 =" );
5658 set req.http.cookie = regsuball (req.http.cookie , ";[^ ][^;]*" , "" );
5759 set req.http.cookie = regsuball (req.http.cookie , "^[; ]+|[; ]+$" , "" );
5860
Original file line number Diff line number Diff line change @@ -51,6 +51,8 @@ sub vcl_recv {
5151 set req.http.cookie = regsuball (req.http.cookie , "; +" , ";" );
5252 set req.http.cookie = regsuball (req.http.cookie , ";(IBX_SESSION_ID[^=]*)=" , "; \1 =" );
5353 set req.http.cookie = regsuball (req.http.cookie , ";(ibexa[-_][^=]*)=" , "; \1 =" );
54+ // Keep the Raptor anonymous visitor identifier cookie so CDP segmentation can resolve visitor segments.
55+ set req.http.cookie = regsuball (req.http.cookie , ";(rsa)=" , "; \1 =" );
5456 set req.http.cookie = regsuball (req.http.cookie , ";[^ ][^;]*" , "" );
5557 set req.http.cookie = regsuball (req.http.cookie , "^[; ]+|[; ]+$" , "" );
5658
You can’t perform that action at this time.
0 commit comments