Hi, There is no need to put quote to an entry. regarding the spamhaus, you can use a linux web server with a crontab that generate a text file, this command can do the trick: curl -L http://www.spamhaus.org/drop/drop.txt | grep -Eo '([0-9]{1,3}\.){3}[0-9]{1,3}/[0-9]{2}' > /path/to/the/file/spamhaus.txt you can use a crontab to schedule the file update (once a day is enough with spamhaus): Edit the crontab file: crontab -e insert this command (this will update every day at 6:00am the file /path/to/the/file/spamhaus.txt) : 0 6 * * * curl -L http://www.spamhaus.org/drop/drop.txt | grep -Eo '([0-9]{1,3}\.){3}[0-9]{1,3}/[0-9]{2}' > /path/to/the/file/spamhaus.txt and close the crontab editor create a dynamic block list object pointing to the correct url to download the generated file. regards
... View more