hi.
i write this script for any body that want to log dst-address from user's in mangle and send this with email.
:global list "";
:foreach i in=[/ip firewall address-list find] do={:if ([:find [/ip firewall address-list get $i list] "user"]=0) do={:set list ($list . "," . $i);}};
ip firewall address-list print detail file=user from=$list;
/tool e-mail send server=98.139.212.139 port=25 user=........... @yahoo.com password=......... to=.........@yahoo.com cc=......@yahoo.com from=........@yahoo.com subject="user" body="user WebSite" file=user
:log info message="File's is Email";
:delay 15s;
:foreach j in=[/ip firewall address-list find] do={:if ([:find [/ip firewall address-list get $j list] "user"]=0) do={/ip firewall address-list remove numbers=$j}}
:foreach k in=[/file find] do={:if ([:typeof [:find [/file get $k name] "user"]]!="nil") do={/file remove $k}}
with this code you can mark dst-address of visited web-site of your user's to address list and send this with email to any email address.